Skip to content

Commit 313cce2

Browse files
committed
v7.5.4
1 parent f792230 commit 313cce2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+2706
-1819
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Send personalized emails to users after they submit a form. These emails can inc
9595
5. Extended HTML documentation
9696
6. Priority support and upgrades
9797

98-
**Try out [Zigaform Form Builder Premium](https://codecanyon.net/item/zigaform-php-form-builder-contact-survey/14889427?ref=softdiscover)**
98+
**Try out [Zigaform Form Builder Premium](https://shop.softdiscover.com/downloads/zigaform-php-form-builder-contact-survey/?utm_source=github&utm_medium=referral)**
9999

100100
For more information, visit [Softdiscover Zigaform](https://softdiscover.com/zigaform).
101101

application/config/constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php if ( ! defined( 'BASEPATH' ) ) {
22
exit( 'No direct script access allowed' );}
33

4-
define( 'UIFORM_VERSION', '7.5.0' );
4+
define( 'UIFORM_VERSION', '7.5.4' );
55
define( 'ZIGAFORM_F_LITE', 1 );
66
define( 'UIFORM_DEBUG', 0 );
77
define( 'UIFORM_DEMO', 0 );

application/helpers/zigaform-notice.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public function notice_footer( $text ) {
134134
$text = sprintf( __( 'Please rate <strong>Zigaform</strong> <a href="%1$s" target="_blank" rel="noopener" >&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href="%2$s" target="_blank">WordPress.org</a> to help us spread the word. Thank you from the Zigaform team!', 'FRocket_admin' ), $url, $url );
135135
} else {
136136
$url = 'https://shop.softdiscover.com/downloads/zigaform-php-form-builder-contact-survey/';
137-
$text = sprintf( __( 'Please rate <strong>Zigaform</strong> <a href="%1$s" target="_blank" rel="noopener" >&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href="%2$s" target="_blank">Codecanyon.net</a> to help us spread the word. Thank you from the Zigaform team!', 'FRocket_admin' ), $url, $url );
137+
$text = sprintf( __( 'Please rate <strong>Zigaform</strong> <a href="%1$s" target="_blank" rel="noopener" >&#9733;&#9733;&#9733;&#9733;&#9733;</a> to help us spread the word. Thank you from the Zigaform team!', 'FRocket_admin' ), $url, $url );
138138
}
139139
}
140140
return $text;

application/modules/default/views/intranet/about.php

Lines changed: 166 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -12,99 +12,180 @@
1212
* @version CVS: $Id: settings.php, v2.00 2013-11-30 02:52:40 Softdiscover $
1313
* @link https://php-form-builder.zigaform.com/
1414
*/
15-
if ( ! defined('BASEPATH')) {
15+
if (!defined('BASEPATH')) {
1616
exit('No direct script access allowed');
1717
}
1818
?>
19+
<style>
20+
#zgfm-page-about-main {
21+
max-width: 1000px;
22+
margin: 0 auto;
23+
padding: 40px 20px;
24+
background-color: #fff;
25+
border-radius: 8px;
26+
font-family: "Segoe UI", Roboto, sans-serif;
27+
box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
28+
}
29+
30+
#zgfm-page-about-main > div:first-child img {
31+
display: block;
32+
margin: 0 auto 20px auto;
33+
max-width: 200px;
34+
}
35+
36+
#zgfm-page-about-main h1 {
37+
text-align: center;
38+
font-size: 32px;
39+
font-weight: 600;
40+
color: #333;
41+
margin-bottom: 30px;
42+
}
43+
44+
.zgfm-page-about-title {
45+
font-size: 16px;
46+
text-align: center;
47+
margin-bottom: 40px;
48+
padding: 20px;
49+
background-color: #f1f9ff;
50+
border-left: 6px solid #17a2b8;
51+
border-radius: 6px;
52+
color: #444;
53+
}
54+
55+
.zgfm-page-about-panel-wrap .panel {
56+
border-radius: 6px;
57+
border: 1px solid #e3e3e3;
58+
box-shadow: 0 2px 15px rgba(0,0,0,0.03);
59+
margin-bottom: 30px;
60+
transition: all 0.2s ease;
61+
}
62+
63+
.zgfm-page-about-panel-wrap .panel:hover {
64+
transform: translateY(-3px);
65+
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
66+
}
67+
68+
.zgfm-page-about-panel-wrap .panel-heading {
69+
background-color: #f7f7f7;
70+
padding: 20px;
71+
border-bottom: 1px solid #ddd;
72+
font-size: 20px;
73+
font-weight: 600;
74+
color: #333;
75+
}
76+
77+
.zgfm-page-about-panel-wrap .panel-body {
78+
padding: 25px;
79+
}
80+
81+
#zgfm-page-about-rate-icon {
82+
max-width: 160px;
83+
display: block;
84+
margin: 10px auto;
85+
}
86+
87+
#zgfm-page-about-leavestars {
88+
text-align: center;
89+
margin-top: 10px;
90+
font-weight: 600;
91+
font-size: 16px;
92+
}
93+
94+
.zgfm-page-about-helpnote {
95+
font-size: 14px;
96+
margin-top: 15px;
97+
color: #666;
98+
text-align: center;
99+
}
100+
101+
#zgfm-page-about-shbuttons span {
102+
margin: 5px;
103+
display: inline-block;
104+
}
105+
106+
@media (max-width: 768px) {
107+
.zgfm-page-about-panel-wrap .col-md-6 {
108+
margin-bottom: 20px;
109+
}
110+
}
111+
</style>
112+
19113
<script>var switchTo5x = true;</script>
20114
<script type="text/javascript" src="https://ws.sharethis.com/button/buttons.js"></script>
21-
<script>stLight.options({publisher: "595f29e833add90011bd1dc7"});</script>
115+
<script>stLight.options({publisher: "595f29e833add90011bd1dc7"});</script>
116+
22117
<div id="zgfm-page-about-main">
23-
24-
<div>
25-
<img src="<?php echo base_url(); ?>assets/backend/image/about/zigaform-header-logo.png">
26-
</div>
27-
<h1><?php echo __('ABOUT', 'FRocket_admin'); ?></h1>
28-
<div class="zgfm-page-about-title">
29-
<?php echo __('Zigaform is a drag and drop form builder with live preview which makes you to build your forms on few easy steps. Also it provides an advanced grid system and skin live customizer that makes you to build amazing forms.', 'FRocket_admin'); ?>
30-
</div>
31-
<div class="zgfm-page-about-panel-wrap">
32-
<div class="row">
33-
<div class="col-md-6">
34-
<div class="login-panel panel panel-default">
35-
<div class="panel-heading">
36-
<h3 class="panel-title"><?php echo __('Rate Zigaform', 'FRocket_admin'); ?></h3>
37-
</div>
38-
<div class="panel-body">
39-
<form role="form">
40-
<fieldset>
41-
42-
<?php if ( ZIGAFORM_F_LITE == 1) { ?>
43-
<div class="form-group">
44-
<a href="https://codecanyon.net/item/zigaform-php-form-builder-contact-survey/reviews/14889427"
45-
target="_blank">
46-
<img id="zgfm-page-about-rate-icon"
47-
src="<?php echo base_url(); ?>/assets/backend/image/about/zigaform-rate-icon.png">
48-
</a>
49-
<div id="zgfm-page-about-leavestars" >
50-
<a href="https://codecanyon.net/item/zigaform-php-form-builder-contact-survey/reviews/14889427"
51-
target="_blank"><?php echo __('Leave 5 Stars', 'FRocket_admin'); ?></a>
52-
</div>
53-
54-
55-
56-
</div>
57-
<?php } else { ?>
58-
<div class="form-group">
59-
<a href="https://codecanyon.net/item/zigaform-php-form-builder-contact-survey/reviews/14889427"
60-
target="_blank">
61-
<img id="zgfm-page-about-rate-icon"
62-
src="<?php echo base_url(); ?>/assets/backend/image/about/zigaform-rate-icon.png">
63-
</a>
64-
<div id="zgfm-page-about-leavestars" >
65-
<a href="https://codecanyon.net/item/zigaform-php-form-builder-contact-survey/reviews/14889427"
66-
target="_blank"><?php echo __('Leave 5 Stars', 'FRocket_admin'); ?></a>
67-
</div>
68-
</div>
69-
<?php } ?>
70-
71-
<div class="zgfm-page-about-helpnote">
72-
<?php echo __('Please leave 5 stars if you like the software and I’ll keep rolling new updates and cool features.', 'FRocket_admin'); ?>
73-
</div>
74-
</fieldset>
75-
</form>
76-
</div>
118+
<div>
119+
<img src="<?php echo base_url(); ?>assets/backend/image/about/zigaform-header-logo.png">
120+
</div>
121+
122+
<h1><?php echo __('ABOUT', 'FRocket_admin'); ?></h1>
123+
124+
<div class="zgfm-page-about-title">
125+
<?php echo __('Zigaform is a drag and drop form builder with live preview which makes you to build your forms on few easy steps. Also it provides an advanced grid system and skin live customizer that makes you to build amazing forms.', 'FRocket_admin'); ?>
126+
</div>
127+
128+
<div class="zgfm-page-about-panel-wrap">
129+
<div class="row">
130+
<div class="col-md-6">
131+
<div class="login-panel panel panel-default">
132+
<div class="panel-heading"><?php echo __('Rate Zigaform', 'FRocket_admin'); ?></div>
133+
<div class="panel-body">
134+
<form role="form">
135+
<fieldset>
136+
<?php if (ZIGAFORM_F_LITE == 1) { ?>
137+
<div class="form-group">
138+
<a href="https://shop.softdiscover.com/downloads/zigaform-php-form-builder-contact-survey/?utm_source=installed&utm_medium=referral" target="_blank">
139+
<img id="zgfm-page-about-rate-icon" src="<?php echo base_url(); ?>/assets/backend/image/about/zigaform-rate-icon.png">
140+
</a>
141+
<div id="zgfm-page-about-leavestars">
142+
<a href="https://shop.softdiscover.com/downloads/zigaform-php-form-builder-contact-survey/?utm_source=installed&utm_medium=referral" target="_blank"><?php echo __('Leave 5 Stars', 'FRocket_admin'); ?></a>
77143
</div>
78-
</div>
79-
<div class="col-md-6">
80-
<div class="login-panel panel panel-default">
81-
<div class="panel-heading">
82-
<h3 class="panel-title"><?php echo __('Spread the Word', 'FRocket_admin'); ?></h3>
83-
</div>
84-
<div class="panel-body">
85-
<form role="form">
86-
<fieldset>
87-
<div class="form-group">
88-
<?php
89-
$title = __('Create amazing forms with Zigaform', 'FRocket_admin');
90-
$summary = __('Ultimate PHP Form Builder by zigaform.com', 'FRocket_admin');
91-
$share_this_data = "st_url='https://php-form-builder.zigaform.com/' st_title='{$title}' st_summary='{$summary}'";
92-
?>
93-
<div id="zgfm-page-about-shbuttons" align="center">
94-
<span class='st_facebook_vcount' displayText='Facebook' <?php echo $share_this_data; ?> ></span>
95-
<span class='st_twitter_vcount' displayText='Tweet' <?php echo $share_this_data; ?> ></span>
96-
<span class='st_googleplus_vcount' displayText='Google +' <?php echo $share_this_data; ?> ></span>
97-
<span class='st_linkedin_vcount' displayText='LinkedIn' <?php echo $share_this_data; ?> ></span>
98-
<span class='st_email_vcount' displayText='Email' <?php echo $share_this_data; ?> ></span>
99-
</div><br/>
100-
</div>
101-
</fieldset>
102-
</form>
103-
</div>
144+
</div>
145+
<?php } else { ?>
146+
<div class="form-group">
147+
<a href="https://shop.softdiscover.com/downloads/zigaform-php-form-builder-contact-survey/?utm_source=installed&utm_medium=referral" target="_blank">
148+
<img id="zgfm-page-about-rate-icon" src="<?php echo base_url(); ?>/assets/backend/image/about/zigaform-rate-icon.png">
149+
</a>
150+
<div id="zgfm-page-about-leavestars">
151+
<a href="https://shop.softdiscover.com/downloads/zigaform-php-form-builder-contact-survey/?utm_source=installed&utm_medium=referral" target="_blank"><?php echo __('Leave 5 Stars', 'FRocket_admin'); ?></a>
104152
</div>
153+
</div>
154+
<?php } ?>
155+
<div class="zgfm-page-about-helpnote">
156+
<?php echo __('Please leave 5 stars if you like the software and I’ll keep rolling new updates and cool features.', 'FRocket_admin'); ?>
157+
</div>
158+
</fieldset>
159+
</form>
160+
</div>
161+
</div>
162+
</div>
163+
164+
<div class="col-md-6">
165+
<div class="login-panel panel panel-default">
166+
<div class="panel-heading"><?php echo __('Spread the Word', 'FRocket_admin'); ?></div>
167+
<div class="panel-body">
168+
<form role="form">
169+
<fieldset>
170+
<div class="form-group">
171+
<?php
172+
$title = __('Create amazing forms with Zigaform', 'FRocket_admin');
173+
$summary = __('Ultimate PHP Form Builder by zigaform.com', 'FRocket_admin');
174+
$share_this_data = "st_url='https://php-form-builder.zigaform.com/' st_title='{$title}' st_summary='{$summary}'";
175+
?>
176+
<div id="zgfm-page-about-shbuttons" align="center">
177+
<span class='st_facebook_vcount' displayText='Facebook' <?php echo $share_this_data; ?> ></span>
178+
<span class='st_twitter_vcount' displayText='Tweet' <?php echo $share_this_data; ?> ></span>
179+
<span class='st_googleplus_vcount' displayText='Google +' <?php echo $share_this_data; ?> ></span>
180+
<span class='st_linkedin_vcount' displayText='LinkedIn' <?php echo $share_this_data; ?> ></span>
181+
<span class='st_email_vcount' displayText='Email' <?php echo $share_this_data; ?> ></span>
182+
</div>
105183
</div>
106-
184+
</fieldset>
185+
</form>
186+
</div>
107187
</div>
108-
188+
</div>
109189
</div>
110-
</div>
190+
</div>
191+
</div>

application/modules/default/views/intranet/changepassword.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575

7676
</div>
7777
<div class="space10"></div>
78-
<button type="submit" class="btn sfdc-btn-large sfdc-btn-primary"><?php echo __('Update password', 'FRocket_admin'); ?></button>
78+
<button type="submit" class="sfdc-btn sfdc-btn-large sfdc-btn-primary"><?php echo __('Update password', 'FRocket_admin'); ?></button>
7979
<?php
8080
echo form_close();
8181
?>

0 commit comments

Comments
 (0)