Version Description
- New: Limit the number of field columns in the entry listing page to a max of 11 fields
- Security Fix: Fix an SQL injection vulnerability on the Form listing page on the backend
- Pro Version Forms
- New: Add links to edit views and post entry in the top admin bar
- Tweak: Show default val/placeholder text icons for any item in an address field and confirmation fields
- Tweak: Apply the frm_csv_sep hook when importing addresses. This allows for a difference separator to be specified for values in an address field
- Fix: View pagination was being ignored when is wasn't overridden from the view shortcode
- Fix: Prevent errors with hitting server limits for a long regex when processing shortcodes in a view with a long form
- Fix: Set dependencies on the datepicker locale js. This solves the problem with the scripts getting out of order on some sites.
Download this release
Release Info
Developer | sswells |
Plugin | Formidable Forms – Form Builder for WordPress |
Version | 2.05.07 |
Comparing to | |
See all releases |
Code changes from version 2.05.06 to 2.05.07
- classes/controllers/FrmEntriesController.php +92 -60
- classes/controllers/FrmFormsController.php +41 -33
- classes/helpers/FrmAppHelper.php +16 -3
- classes/helpers/FrmEntriesListHelper.php +15 -16
- classes/helpers/FrmFieldsHelper.php +10 -4
- classes/helpers/FrmFormsHelper.php +1 -1
- classes/helpers/FrmFormsListHelper.php +8 -13
- classes/helpers/FrmListHelper.php +16 -3
- classes/models/FrmDb.php +24 -13
- formidable.php +1 -1
- js/formidable_admin.js +57 -28
- languages/{formidable-sv_SE.po → formidable-sr_RS.po} +7961 -8107
- readme.txt +12 -1
classes/controllers/FrmEntriesController.php
CHANGED
@@ -2,18 +2,27 @@
|
|
2 |
|
3 |
class FrmEntriesController {
|
4 |
|
5 |
-
|
6 |
FrmAppHelper::force_capability( 'frm_view_entries' );
|
7 |
|
8 |
-
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
if ( ! in_array( FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' ), array( 'edit', 'show' ) ) ) {
|
11 |
$menu_name = FrmAppHelper::get_menu_name();
|
12 |
-
|
13 |
-
|
14 |
-
add_filter( 'manage_' .
|
15 |
-
|
16 |
-
|
|
|
|
|
17 |
|
18 |
/* Display in Back End */
|
19 |
public static function route() {
|
@@ -138,8 +147,7 @@ class FrmEntriesController {
|
|
138 |
}
|
139 |
|
140 |
public static function check_hidden_cols( $check, $object_id, $meta_key, $meta_value, $prev_value ) {
|
141 |
-
$
|
142 |
-
$this_page_name = 'manage' . sanitize_title( $menu_name ) . '_page_formidable-entriescolumnshidden';
|
143 |
if ( $meta_key != $this_page_name || $meta_value == $prev_value ) {
|
144 |
return $check;
|
145 |
}
|
@@ -157,9 +165,7 @@ class FrmEntriesController {
|
|
157 |
|
158 |
//add hidden columns back from other forms
|
159 |
public static function update_hidden_cols( $meta_id, $object_id, $meta_key, $meta_value ) {
|
160 |
-
$
|
161 |
-
$sanitized = sanitize_title( $menu_name );
|
162 |
-
$this_page_name = 'manage' . $sanitized . '_page_formidable-entriescolumnshidden';
|
163 |
if ( $meta_key != $this_page_name ) {
|
164 |
return;
|
165 |
}
|
@@ -200,11 +206,29 @@ class FrmEntriesController {
|
|
200 |
}
|
201 |
|
202 |
if ( $save ) {
|
203 |
-
|
204 |
-
update_user_option( $
|
205 |
}
|
206 |
}
|
207 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
public static function save_per_page( $save, $option, $value ) {
|
209 |
if ( $option == 'formidable_page_formidable_entries_per_page' ) {
|
210 |
$save = (int) $value;
|
@@ -236,67 +260,75 @@ class FrmEntriesController {
|
|
236 |
}
|
237 |
|
238 |
public static function hidden_columns( $result ) {
|
239 |
-
global $frm_vars;
|
240 |
-
|
241 |
$form_id = FrmForm::get_current_form_id();
|
|
|
242 |
|
243 |
-
|
244 |
-
foreach ( (array) $result as $r ) {
|
245 |
-
if ( ! empty( $r ) ) {
|
246 |
-
$form_prefix = explode( '_', $r );
|
247 |
-
$form_prefix = $form_prefix[0];
|
248 |
-
|
249 |
-
if ( (int) $form_prefix == (int) $form_id ) {
|
250 |
-
$return = true;
|
251 |
-
break;
|
252 |
-
}
|
253 |
|
254 |
-
|
255 |
-
|
256 |
-
|
|
|
257 |
|
258 |
-
|
|
|
|
|
259 |
return $result;
|
260 |
}
|
261 |
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
return $result;
|
266 |
}
|
267 |
|
268 |
-
|
269 |
-
|
270 |
-
$frm_vars['current_form']->options = maybe_unserialize($frm_vars['current_form']->options);
|
271 |
-
}
|
272 |
|
273 |
-
|
274 |
-
if ( $has_custom_hidden_columns ) {
|
275 |
-
$result = $frm_vars['current_form']->options['hidden_cols'];
|
276 |
-
} else {
|
277 |
-
$cols = $frm_vars['cols'];
|
278 |
-
$cols = array_reverse($cols, true);
|
279 |
|
280 |
-
|
281 |
-
|
282 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
283 |
}
|
|
|
|
|
|
|
284 |
|
285 |
-
|
286 |
-
|
|
|
|
|
|
|
|
|
|
|
287 |
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
}
|
292 |
-
//remove some columns by default
|
293 |
-
$i--;
|
294 |
-
unset($col_key, $col);
|
295 |
-
}
|
296 |
-
}
|
297 |
|
298 |
-
|
299 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
|
301 |
public static function display_list( $message = '', $errors = array() ) {
|
302 |
global $wpdb, $frm_vars;
|
2 |
|
3 |
class FrmEntriesController {
|
4 |
|
5 |
+
public static function menu() {
|
6 |
FrmAppHelper::force_capability( 'frm_view_entries' );
|
7 |
|
8 |
+
add_submenu_page('formidable', 'Formidable | ' . __( 'Entries', 'formidable' ), __( 'Entries', 'formidable' ), 'frm_view_entries', 'formidable-entries', 'FrmEntriesController::route' );
|
9 |
|
10 |
+
self::load_manage_entries_hooks();
|
11 |
+
}
|
12 |
+
|
13 |
+
/**
|
14 |
+
* @since 2.05.07
|
15 |
+
*/
|
16 |
+
private static function load_manage_entries_hooks() {
|
17 |
if ( ! in_array( FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' ), array( 'edit', 'show' ) ) ) {
|
18 |
$menu_name = FrmAppHelper::get_menu_name();
|
19 |
+
$base = self::base_column_key( $menu_name );
|
20 |
+
|
21 |
+
add_filter( 'manage_' . $base . '_columns', 'FrmEntriesController::manage_columns' );
|
22 |
+
add_filter( 'get_user_option_' . self::hidden_column_key( $menu_name ), 'FrmEntriesController::hidden_columns' );
|
23 |
+
add_filter( 'manage_' . $base . '_sortable_columns', 'FrmEntriesController::sortable_columns' );
|
24 |
+
}
|
25 |
+
}
|
26 |
|
27 |
/* Display in Back End */
|
28 |
public static function route() {
|
147 |
}
|
148 |
|
149 |
public static function check_hidden_cols( $check, $object_id, $meta_key, $meta_value, $prev_value ) {
|
150 |
+
$this_page_name = self::hidden_column_key();
|
|
|
151 |
if ( $meta_key != $this_page_name || $meta_value == $prev_value ) {
|
152 |
return $check;
|
153 |
}
|
165 |
|
166 |
//add hidden columns back from other forms
|
167 |
public static function update_hidden_cols( $meta_id, $object_id, $meta_key, $meta_value ) {
|
168 |
+
$this_page_name = self::hidden_column_key();
|
|
|
|
|
169 |
if ( $meta_key != $this_page_name ) {
|
170 |
return;
|
171 |
}
|
206 |
}
|
207 |
|
208 |
if ( $save ) {
|
209 |
+
$user_id = get_current_user_id();
|
210 |
+
update_user_option( $user_id, $this_page_name, $meta_value, true );
|
211 |
}
|
212 |
}
|
213 |
|
214 |
+
/**
|
215 |
+
* @since 2.05.07
|
216 |
+
*/
|
217 |
+
private static function hidden_column_key( $menu_name = '' ) {
|
218 |
+
$base = self::base_column_key( $menu_name );
|
219 |
+
return 'manage' . $base . 'columnshidden';
|
220 |
+
}
|
221 |
+
|
222 |
+
/**
|
223 |
+
* @since 2.05.07
|
224 |
+
*/
|
225 |
+
private static function base_column_key( $menu_name = '' ) {
|
226 |
+
if ( empty( $menu_name ) ) {
|
227 |
+
$menu_name = FrmAppHelper::get_menu_name();
|
228 |
+
}
|
229 |
+
return sanitize_title( $menu_name ) . '_page_formidable-entries';
|
230 |
+
}
|
231 |
+
|
232 |
public static function save_per_page( $save, $option, $value ) {
|
233 |
if ( $option == 'formidable_page_formidable_entries_per_page' ) {
|
234 |
$save = (int) $value;
|
260 |
}
|
261 |
|
262 |
public static function hidden_columns( $result ) {
|
|
|
|
|
263 |
$form_id = FrmForm::get_current_form_id();
|
264 |
+
$max_columns = 8;
|
265 |
|
266 |
+
$hidden = self::user_hidden_columns_for_form( $form_id, $result );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
|
268 |
+
if ( ! empty( $hidden ) ) {
|
269 |
+
$max_columns = 11;
|
270 |
+
$result = $hidden;
|
271 |
+
}
|
272 |
|
273 |
+
global $frm_vars;
|
274 |
+
$i = isset( $frm_vars['cols'] ) ? count( $frm_vars['cols'] ) : 0;
|
275 |
+
if ( $i <= $max_columns ) {
|
276 |
return $result;
|
277 |
}
|
278 |
|
279 |
+
if ( $form_id ) {
|
280 |
+
$result[] = $form_id . '_id';
|
281 |
+
$i--;
|
|
|
282 |
}
|
283 |
|
284 |
+
$result[] = $form_id . '_item_key';
|
285 |
+
$i--;
|
|
|
|
|
286 |
|
287 |
+
self::remove_excess_cols( compact( 'i', 'max_columns' ), $result );
|
|
|
|
|
|
|
|
|
|
|
288 |
|
289 |
+
return $result;
|
290 |
+
}
|
291 |
+
|
292 |
+
/**
|
293 |
+
* @since 2.05.07
|
294 |
+
*/
|
295 |
+
private static function user_hidden_columns_for_form( $form_id, $result ) {
|
296 |
+
$hidden = array();
|
297 |
+
foreach ( (array) $result as $r ) {
|
298 |
+
if ( ! empty( $r ) ) {
|
299 |
+
list( $form_prefix, $field_key ) = explode( '_', $r );
|
300 |
+
|
301 |
+
if ( (int) $form_prefix == (int) $form_id ) {
|
302 |
+
$hidden[] = $r;
|
303 |
+
}
|
304 |
+
|
305 |
+
unset( $form_prefix );
|
306 |
}
|
307 |
+
}
|
308 |
+
return $hidden;
|
309 |
+
}
|
310 |
|
311 |
+
/**
|
312 |
+
* Remove some columns by default when there are too many
|
313 |
+
*
|
314 |
+
* @since 2.05.07
|
315 |
+
*/
|
316 |
+
private static function remove_excess_cols( $atts, &$result ) {
|
317 |
+
global $frm_vars;
|
318 |
|
319 |
+
$cols = $frm_vars['cols'];
|
320 |
+
$cols = array_reverse( $cols, true );
|
321 |
+
$i = $atts['i'];
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
|
323 |
+
foreach ( $cols as $col_key => $col ) {
|
324 |
+
if ( $i > $atts['max_columns'] ) {
|
325 |
+
$result[] = $col_key;
|
326 |
+
}
|
327 |
+
|
328 |
+
$i--;
|
329 |
+
unset( $col_key, $col );
|
330 |
+
}
|
331 |
+
}
|
332 |
|
333 |
public static function display_list( $message = '', $errors = array() ) {
|
334 |
global $wpdb, $frm_vars;
|
classes/controllers/FrmFormsController.php
CHANGED
@@ -355,8 +355,9 @@ class FrmFormsController {
|
|
355 |
$count++;
|
356 |
}
|
357 |
|
|
|
358 |
$available_status['untrash']['message'] = sprintf(_n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), $count );
|
359 |
-
$available_status['trash']['message'] = sprintf( _n( '%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable' ), $count, '<a href="' . esc_url( wp_nonce_url( '?page=formidable&frm_action=untrash&form_type=' .
|
360 |
|
361 |
$message = $available_status[ $status ]['message'];
|
362 |
|
@@ -373,7 +374,7 @@ class FrmFormsController {
|
|
373 |
}
|
374 |
}
|
375 |
|
376 |
-
|
377 |
$message = sprintf( _n( '%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable' ), $count, '<a href="' . esc_url( wp_nonce_url( '?page=formidable&frm_action=list&action=bulk_untrash&form_type=' . $current_page . '&item-action=' . implode( ',', $ids ), 'bulk-toplevel_page_formidable' ) ) . '">', '</a>' );
|
378 |
|
379 |
return $message;
|
@@ -537,7 +538,7 @@ class FrmFormsController {
|
|
537 |
$columns['cb'] = '<input type="checkbox" />';
|
538 |
$columns['id'] = 'ID';
|
539 |
|
540 |
-
|
541 |
|
542 |
if ( 'template' == $type ) {
|
543 |
$columns['name'] = __( 'Template Name', 'formidable' );
|
@@ -568,7 +569,7 @@ class FrmFormsController {
|
|
568 |
}
|
569 |
|
570 |
public static function hidden_columns( $hidden_columns ) {
|
571 |
-
$type =
|
572 |
|
573 |
if ( $type === 'template' ) {
|
574 |
$hidden_columns[] = 'id';
|
@@ -997,37 +998,44 @@ class FrmFormsController {
|
|
997 |
return;
|
998 |
}
|
999 |
|
1000 |
-
|
|
|
|
|
1001 |
|
1002 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1003 |
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
$wp_admin_bar->add_menu( array(
|
1023 |
-
'parent' => 'frm-forms',
|
1024 |
-
'id' => 'edit_form_' . $form_id,
|
1025 |
-
'title' => empty($name) ? __( '(no title)') : $name,
|
1026 |
-
'href' => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form_id ),
|
1027 |
-
) );
|
1028 |
-
}
|
1029 |
-
}
|
1030 |
-
}
|
1031 |
|
1032 |
//formidable shortcode
|
1033 |
public static function get_form_shortcode( $atts ) {
|
355 |
$count++;
|
356 |
}
|
357 |
|
358 |
+
$form_type = FrmAppHelper::get_simple_request( array( 'param' => 'form_type', 'type' => 'request' ) );
|
359 |
$available_status['untrash']['message'] = sprintf(_n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), $count );
|
360 |
+
$available_status['trash']['message'] = sprintf( _n( '%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable' ), $count, '<a href="' . esc_url( wp_nonce_url( '?page=formidable&frm_action=untrash&form_type=' . $form_type . '&id=' . $params['id'], 'untrash_form_' . $params['id'] ) ) . '">', '</a>' );
|
361 |
|
362 |
$message = $available_status[ $status ]['message'];
|
363 |
|
374 |
}
|
375 |
}
|
376 |
|
377 |
+
$current_page = FrmAppHelper::get_simple_request( array( 'param' => 'form_type', 'type' => 'request' ) );
|
378 |
$message = sprintf( _n( '%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable' ), $count, '<a href="' . esc_url( wp_nonce_url( '?page=formidable&frm_action=list&action=bulk_untrash&form_type=' . $current_page . '&item-action=' . implode( ',', $ids ), 'bulk-toplevel_page_formidable' ) ) . '">', '</a>' );
|
379 |
|
380 |
return $message;
|
538 |
$columns['cb'] = '<input type="checkbox" />';
|
539 |
$columns['id'] = 'ID';
|
540 |
|
541 |
+
$type = FrmAppHelper::get_simple_request( array( 'param' => 'form_type', 'type' => 'request', 'default' => 'published' ) );
|
542 |
|
543 |
if ( 'template' == $type ) {
|
544 |
$columns['name'] = __( 'Template Name', 'formidable' );
|
569 |
}
|
570 |
|
571 |
public static function hidden_columns( $hidden_columns ) {
|
572 |
+
$type = FrmAppHelper::get_simple_request( array( 'param' => 'form_type', 'type' => 'request' ) );
|
573 |
|
574 |
if ( $type === 'template' ) {
|
575 |
$hidden_columns[] = 'id';
|
998 |
return;
|
999 |
}
|
1000 |
|
1001 |
+
self::add_menu_to_admin_bar();
|
1002 |
+
self::add_forms_to_admin_bar( $actions );
|
1003 |
+
}
|
1004 |
|
1005 |
+
/**
|
1006 |
+
* @since 2.05.07
|
1007 |
+
*/
|
1008 |
+
public static function add_menu_to_admin_bar() {
|
1009 |
+
global $wp_admin_bar;
|
1010 |
+
|
1011 |
+
$wp_admin_bar->add_node( array(
|
1012 |
+
'id' => 'frm-forms',
|
1013 |
+
'title' => '<span class="ab-icon"></span><span class="ab-label">' . FrmAppHelper::get_menu_name() . '</span>',
|
1014 |
+
'href' => admin_url( 'admin.php?page=formidable' ),
|
1015 |
+
'meta' => array(
|
1016 |
+
'title' => FrmAppHelper::get_menu_name(),
|
1017 |
+
),
|
1018 |
+
) );
|
1019 |
+
}
|
1020 |
|
1021 |
+
/**
|
1022 |
+
* @since 2.05.07
|
1023 |
+
*/
|
1024 |
+
private static function add_forms_to_admin_bar( $actions ) {
|
1025 |
+
global $wp_admin_bar;
|
1026 |
+
|
1027 |
+
asort( $actions );
|
1028 |
+
|
1029 |
+
foreach ( $actions as $form_id => $name ) {
|
1030 |
+
|
1031 |
+
$wp_admin_bar->add_node( array(
|
1032 |
+
'parent' => 'frm-forms',
|
1033 |
+
'id' => 'edit_form_' . $form_id,
|
1034 |
+
'title' => empty( $name ) ? __( '(no title)' ) : $name,
|
1035 |
+
'href' => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form_id ),
|
1036 |
+
) );
|
1037 |
+
}
|
1038 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1039 |
|
1040 |
//formidable shortcode
|
1041 |
public static function get_form_shortcode( $atts ) {
|
classes/helpers/FrmAppHelper.php
CHANGED
@@ -10,7 +10,7 @@ class FrmAppHelper {
|
|
10 |
/**
|
11 |
* @since 2.0
|
12 |
*/
|
13 |
-
public static $plug_version = '2.05.
|
14 |
|
15 |
/**
|
16 |
* @since 1.07.02
|
@@ -153,9 +153,22 @@ class FrmAppHelper {
|
|
153 |
* @return boolean
|
154 |
*/
|
155 |
public static function doing_ajax() {
|
156 |
-
return
|
157 |
}
|
158 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
/**
|
160 |
* @since 2.0.8
|
161 |
*/
|
@@ -173,7 +186,7 @@ class FrmAppHelper {
|
|
173 |
* @return boolean
|
174 |
*/
|
175 |
public static function is_admin() {
|
176 |
-
return is_admin() &&
|
177 |
}
|
178 |
|
179 |
/**
|
10 |
/**
|
11 |
* @since 2.0
|
12 |
*/
|
13 |
+
public static $plug_version = '2.05.07';
|
14 |
|
15 |
/**
|
16 |
* @since 1.07.02
|
153 |
* @return boolean
|
154 |
*/
|
155 |
public static function doing_ajax() {
|
156 |
+
return self::wp_doing_ajax() && ! self::is_preview_page();
|
157 |
}
|
158 |
|
159 |
+
/**
|
160 |
+
* Use the WP 4.7 wp_doing_ajax function
|
161 |
+
* @sine 2.05.07
|
162 |
+
*/
|
163 |
+
public static function wp_doing_ajax() {
|
164 |
+
if ( function_exists( 'wp_doing_ajax' ) ) {
|
165 |
+
$doing_ajax = wp_doing_ajax();
|
166 |
+
} else {
|
167 |
+
$doing_ajax = defined('DOING_AJAX') && DOING_AJAX;
|
168 |
+
}
|
169 |
+
return $doing_ajax;
|
170 |
+
}
|
171 |
+
|
172 |
/**
|
173 |
* @since 2.0.8
|
174 |
*/
|
186 |
* @return boolean
|
187 |
*/
|
188 |
public static function is_admin() {
|
189 |
+
return is_admin() && ! self::wp_doing_ajax();
|
190 |
}
|
191 |
|
192 |
/**
|
classes/helpers/FrmEntriesListHelper.php
CHANGED
@@ -11,8 +11,6 @@ class FrmEntriesListHelper extends FrmListHelper {
|
|
11 |
$per_page = $this->get_items_per_page( 'formidable_page_formidable_entries_per_page' );
|
12 |
$form_id = $this->params['form'];
|
13 |
|
14 |
-
$default_orderby = 'id';
|
15 |
-
$default_order = 'DESC';
|
16 |
$s_query = array();
|
17 |
|
18 |
if ( $form_id ) {
|
@@ -23,26 +21,27 @@ class FrmEntriesListHelper extends FrmListHelper {
|
|
23 |
$join_form_in_query = true;
|
24 |
}
|
25 |
|
26 |
-
$s =
|
27 |
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
|
33 |
$s_query = apply_filters( 'frm_entries_list_query', $s_query, compact( 'form_id' ) );
|
34 |
|
35 |
-
|
36 |
-
|
37 |
-
|
|
|
38 |
$orderby .= in_array( $order_field_type, array( 'number', 'scale' ) ) ? ' +0 ' : '';
|
39 |
-
|
40 |
|
41 |
-
$order =
|
42 |
-
$order =
|
43 |
|
44 |
-
|
45 |
-
$start = (int)
|
46 |
|
47 |
$limit = FrmDb::esc_limit( $start . ',' . $per_page );
|
48 |
$this->items = FrmEntry::getAll( $s_query, $order, $limit, true, $join_form_in_query );
|
@@ -55,7 +54,7 @@ class FrmEntriesListHelper extends FrmListHelper {
|
|
55 |
}
|
56 |
|
57 |
public function no_items() {
|
58 |
-
|
59 |
if ( ! empty($s) ) {
|
60 |
_e( 'No Entries Found', 'formidable' );
|
61 |
return;
|
11 |
$per_page = $this->get_items_per_page( 'formidable_page_formidable_entries_per_page' );
|
12 |
$form_id = $this->params['form'];
|
13 |
|
|
|
|
|
14 |
$s_query = array();
|
15 |
|
16 |
if ( $form_id ) {
|
21 |
$join_form_in_query = true;
|
22 |
}
|
23 |
|
24 |
+
$s = self::get_param( array( 'param' => 's', 'sanitize' => 'sanitize_text_field' ) );
|
25 |
|
26 |
+
if ( $s != '' && FrmAppHelper::pro_is_installed() ) {
|
27 |
+
$fid = self::get_param( array( 'param' => 'fid' ) );
|
28 |
+
$s_query = FrmProEntriesHelper::get_search_str( $s_query, $s, $form_id, $fid );
|
29 |
+
}
|
30 |
|
31 |
$s_query = apply_filters( 'frm_entries_list_query', $s_query, compact( 'form_id' ) );
|
32 |
|
33 |
+
$orderby = self::get_param( array( 'param' => 'orderby', 'default' => 'id' ) );
|
34 |
+
|
35 |
+
if ( strpos( $orderby, 'meta' ) !== false ) {
|
36 |
+
$order_field_type = FrmField::get_type( str_replace( 'meta_', '', $orderby ) );
|
37 |
$orderby .= in_array( $order_field_type, array( 'number', 'scale' ) ) ? ' +0 ' : '';
|
38 |
+
}
|
39 |
|
40 |
+
$order = self::get_param( array( 'param' => 'order', 'default' => 'DESC' ) );
|
41 |
+
$order = FrmDb::esc_order( $orderby . ' ' . $order );
|
42 |
|
43 |
+
$page = $this->get_pagenum();
|
44 |
+
$start = (int) self::get_param( array( 'param' => 'start', 'default' => ( ( $page - 1 ) * $per_page ) ) );
|
45 |
|
46 |
$limit = FrmDb::esc_limit( $start . ',' . $per_page );
|
47 |
$this->items = FrmEntry::getAll( $s_query, $order, $limit, true, $join_form_in_query );
|
54 |
}
|
55 |
|
56 |
public function no_items() {
|
57 |
+
$s = self::get_param( array( 'param' => 's', 'sanitize' => 'sanitize_text_field' ) );
|
58 |
if ( ! empty($s) ) {
|
59 |
_e( 'No Entries Found', 'formidable' );
|
60 |
return;
|
classes/helpers/FrmFieldsHelper.php
CHANGED
@@ -1167,40 +1167,46 @@ DEFAULT_HTML;
|
|
1167 |
|
1168 |
public static function clear_on_focus_html( $field, $display, $id = '' ) {
|
1169 |
if ( $display['clear_on_focus'] ) {
|
|
|
1170 |
echo '<span id="frm_clear_on_focus_' . esc_attr( $field['id'] . $id ) . '" class="frm-show-click">';
|
1171 |
|
1172 |
if ( $display['default_blank'] ) {
|
1173 |
-
self::show_default_blank_js( $field['default_blank'] );
|
1174 |
echo '<input type="hidden" name="field_options[default_blank_' . esc_attr( $field['id'] ) . ']" value="' . esc_attr( $field['default_blank'] ) . '" />';
|
1175 |
}
|
1176 |
|
1177 |
-
self::show_onfocus_js( $field['clear_on_focus'] );
|
1178 |
echo '<input type="hidden" name="field_options[clear_on_focus_' . esc_attr( $field['id'] ) . ']" value="' . esc_attr( $field['clear_on_focus'] ) . '" />';
|
1179 |
|
1180 |
echo '</span>';
|
1181 |
}
|
1182 |
}
|
1183 |
|
1184 |
-
public static function show_onfocus_js( $is_selected ) {
|
1185 |
$atts = array(
|
1186 |
'icon' => 'frm_reload_icon',
|
1187 |
'message' => $is_selected ? __( 'Clear default value when typing', 'formidable' ) : __( 'Do not clear default value when typing', 'formidable' ),
|
1188 |
'is_selected' => $is_selected,
|
|
|
1189 |
);
|
1190 |
self::show_icon_link_js( $atts );
|
1191 |
}
|
1192 |
|
1193 |
-
public static function show_default_blank_js( $is_selected ) {
|
1194 |
$atts = array(
|
1195 |
'icon' => 'frm_error_icon',
|
1196 |
'message' => $is_selected ? __( 'Default value will NOT pass form validation', 'formidable' ) : __( 'Default value will pass form validation', 'formidable' ),
|
1197 |
'is_selected' => $is_selected,
|
|
|
1198 |
);
|
1199 |
self::show_icon_link_js( $atts );
|
1200 |
}
|
1201 |
|
1202 |
public static function show_icon_link_js( $atts ) {
|
1203 |
$atts['icon'] .= $atts['is_selected'] ? ' ' : ' frm_inactive_icon ';
|
|
|
|
|
|
|
1204 |
?><a href="javascript:void(0)" class="frm_bstooltip <?php echo esc_attr( $atts['icon'] ); ?>frm_default_val_icons frm_action_icon frm_icon_font" title="<?php echo esc_attr( $atts['message'] ); ?>"></a><?php
|
1205 |
}
|
1206 |
|
1167 |
|
1168 |
public static function clear_on_focus_html( $field, $display, $id = '' ) {
|
1169 |
if ( $display['clear_on_focus'] ) {
|
1170 |
+
$has_default_value = ! empty( $field['default_value'] );
|
1171 |
echo '<span id="frm_clear_on_focus_' . esc_attr( $field['id'] . $id ) . '" class="frm-show-click">';
|
1172 |
|
1173 |
if ( $display['default_blank'] ) {
|
1174 |
+
self::show_default_blank_js( $field['default_blank'], $has_default_value );
|
1175 |
echo '<input type="hidden" name="field_options[default_blank_' . esc_attr( $field['id'] ) . ']" value="' . esc_attr( $field['default_blank'] ) . '" />';
|
1176 |
}
|
1177 |
|
1178 |
+
self::show_onfocus_js( $field['clear_on_focus'], $has_default_value );
|
1179 |
echo '<input type="hidden" name="field_options[clear_on_focus_' . esc_attr( $field['id'] ) . ']" value="' . esc_attr( $field['clear_on_focus'] ) . '" />';
|
1180 |
|
1181 |
echo '</span>';
|
1182 |
}
|
1183 |
}
|
1184 |
|
1185 |
+
public static function show_onfocus_js( $is_selected, $has_default_value = true ) {
|
1186 |
$atts = array(
|
1187 |
'icon' => 'frm_reload_icon',
|
1188 |
'message' => $is_selected ? __( 'Clear default value when typing', 'formidable' ) : __( 'Do not clear default value when typing', 'formidable' ),
|
1189 |
'is_selected' => $is_selected,
|
1190 |
+
'has_default' => $has_default_value,
|
1191 |
);
|
1192 |
self::show_icon_link_js( $atts );
|
1193 |
}
|
1194 |
|
1195 |
+
public static function show_default_blank_js( $is_selected, $has_default_value = true ) {
|
1196 |
$atts = array(
|
1197 |
'icon' => 'frm_error_icon',
|
1198 |
'message' => $is_selected ? __( 'Default value will NOT pass form validation', 'formidable' ) : __( 'Default value will pass form validation', 'formidable' ),
|
1199 |
'is_selected' => $is_selected,
|
1200 |
+
'has_default' => $has_default_value,
|
1201 |
);
|
1202 |
self::show_icon_link_js( $atts );
|
1203 |
}
|
1204 |
|
1205 |
public static function show_icon_link_js( $atts ) {
|
1206 |
$atts['icon'] .= $atts['is_selected'] ? ' ' : ' frm_inactive_icon ';
|
1207 |
+
if ( isset( $atts['has_default'] ) && ! $atts['has_default'] ) {
|
1208 |
+
$atts['icon'] .= 'frm_hidden ';
|
1209 |
+
}
|
1210 |
?><a href="javascript:void(0)" class="frm_bstooltip <?php echo esc_attr( $atts['icon'] ); ?>frm_default_val_icons frm_action_icon frm_icon_font" title="<?php echo esc_attr( $atts['message'] ); ?>"></a><?php
|
1211 |
}
|
1212 |
|
classes/helpers/FrmFormsHelper.php
CHANGED
@@ -619,7 +619,7 @@ BEFORE_HTML;
|
|
619 |
),
|
620 |
);
|
621 |
|
622 |
-
|
623 |
$base_url = '?page=formidable&form_type=' . $current_page . '&id=' . $id;
|
624 |
if ( 'trash' == $status ) {
|
625 |
$link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=untrash', 'untrash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['restore'][ $length ] . '</a>';
|
619 |
),
|
620 |
);
|
621 |
|
622 |
+
$current_page = FrmAppHelper::get_simple_request( array( 'param' => 'form_type' ) );
|
623 |
$base_url = '?page=formidable&form_type=' . $current_page . '&id=' . $id;
|
624 |
if ( 'trash' == $status ) {
|
625 |
$link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=untrash', 'untrash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['restore'][ $length ] . '</a>';
|
classes/helpers/FrmFormsListHelper.php
CHANGED
@@ -7,26 +7,21 @@ class FrmFormsListHelper extends FrmListHelper {
|
|
7 |
public $status = '';
|
8 |
|
9 |
public function __construct( $args ) {
|
10 |
-
$this->status =
|
11 |
|
12 |
parent::__construct( $args );
|
13 |
}
|
14 |
|
15 |
public function prepare_items() {
|
16 |
-
|
17 |
-
|
18 |
-
$mode = empty( $_REQUEST['mode'] ) ? 'list' : $_REQUEST['mode'];
|
19 |
-
|
20 |
-
$default_orderby = 'name';
|
21 |
-
$default_order = 'ASC';
|
22 |
-
|
23 |
-
$orderby = ( isset( $_REQUEST['orderby'] ) ) ? $_REQUEST['orderby'] : $default_orderby;
|
24 |
-
$order = ( isset( $_REQUEST['order'] ) ) ? $_REQUEST['order'] : $default_order;
|
25 |
|
26 |
$page = $this->get_pagenum();
|
27 |
$per_page = $this->get_items_per_page( 'formidable_page_formidable_per_page' );
|
28 |
|
29 |
-
$
|
|
|
|
|
|
|
30 |
|
31 |
$s_query = array();
|
32 |
$s_query[] = array( 'or' => 1, 'parent_form_id' => null, 'parent_form_id <' => 1 );
|
@@ -48,7 +43,7 @@ class FrmFormsListHelper extends FrmListHelper {
|
|
48 |
break;
|
49 |
}
|
50 |
|
51 |
-
|
52 |
if ( $s != '' ) {
|
53 |
preg_match_all('/".*?("|$)|((?<=[\\s",+])|^)[^\\s",+]+/', $s, $matches);
|
54 |
$search_terms = array_map('trim', $matches[0]);
|
@@ -169,7 +164,7 @@ class FrmFormsListHelper extends FrmListHelper {
|
|
169 |
|
170 |
$links = array();
|
171 |
$counts = FrmForm::get_count();
|
172 |
-
|
173 |
|
174 |
foreach ( $statuses as $status => $name ) {
|
175 |
|
7 |
public $status = '';
|
8 |
|
9 |
public function __construct( $args ) {
|
10 |
+
$this->status = self::get_param( array( 'param' => 'form_type' ) );
|
11 |
|
12 |
parent::__construct( $args );
|
13 |
}
|
14 |
|
15 |
public function prepare_items() {
|
16 |
+
global $wpdb, $per_page, $mode;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
$page = $this->get_pagenum();
|
19 |
$per_page = $this->get_items_per_page( 'formidable_page_formidable_per_page' );
|
20 |
|
21 |
+
$mode = self::get_param( array( 'param' => 'mode', 'default' => 'list' ) );
|
22 |
+
$orderby = self::get_param( array( 'param' => 'orderby', 'default' => 'name' ) );
|
23 |
+
$order = self::get_param( array( 'param' => 'order', 'default' => 'ASC' ) );
|
24 |
+
$start = self::get_param( array( 'param' => 'start', 'default' => ( ( $page - 1 ) * $per_page ) ) );
|
25 |
|
26 |
$s_query = array();
|
27 |
$s_query[] = array( 'or' => 1, 'parent_form_id' => null, 'parent_form_id <' => 1 );
|
43 |
break;
|
44 |
}
|
45 |
|
46 |
+
$s = self::get_param( array( 'param' => 's', 'sanitize' => 'sanitize_text_field' ) );
|
47 |
if ( $s != '' ) {
|
48 |
preg_match_all('/".*?("|$)|((?<=[\\s",+])|^)[^\\s",+]+/', $s, $matches);
|
49 |
$search_terms = array_map('trim', $matches[0]);
|
164 |
|
165 |
$links = array();
|
166 |
$counts = FrmForm::get_count();
|
167 |
+
$form_type = self::get_param( array( 'param' => 'form_type', 'default' => 'published' ) );
|
168 |
|
169 |
foreach ( $statuses as $status => $name ) {
|
170 |
|
classes/helpers/FrmListHelper.php
CHANGED
@@ -154,6 +154,18 @@ class FrmListHelper {
|
|
154 |
die( 'function FrmListHelper::prepare_items() must be over-ridden in a sub-class.' );
|
155 |
}
|
156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
/**
|
158 |
* An internal method that sets all the necessary pagination arguments
|
159 |
*
|
@@ -174,7 +186,7 @@ class FrmListHelper {
|
|
174 |
}
|
175 |
|
176 |
// Redirect if page number is invalid and headers are not already sent.
|
177 |
-
if ( ! headers_sent() &&
|
178 |
wp_redirect( add_query_arg( 'paged', $args['total_pages'] ) );
|
179 |
exit;
|
180 |
}
|
@@ -392,8 +404,9 @@ class FrmListHelper {
|
|
392 |
|
393 |
private static function get_bulk_action( $action_name ) {
|
394 |
$action = false;
|
395 |
-
|
396 |
-
|
|
|
397 |
}
|
398 |
return $action;
|
399 |
}
|
154 |
die( 'function FrmListHelper::prepare_items() must be over-ridden in a sub-class.' );
|
155 |
}
|
156 |
|
157 |
+
/**
|
158 |
+
* @since 3.0
|
159 |
+
*/
|
160 |
+
protected function get_param( $args ) {
|
161 |
+
return FrmAppHelper::get_simple_request( array(
|
162 |
+
'param' => $args['param'],
|
163 |
+
'default' => isset( $args['default'] ) ? $args['default'] : '',
|
164 |
+
'sanitize' => isset( $args['sanitize'] ) ? $args['sanitize'] : 'sanitize_title',
|
165 |
+
'type' => 'request',
|
166 |
+
) );
|
167 |
+
}
|
168 |
+
|
169 |
/**
|
170 |
* An internal method that sets all the necessary pagination arguments
|
171 |
*
|
186 |
}
|
187 |
|
188 |
// Redirect if page number is invalid and headers are not already sent.
|
189 |
+
if ( ! headers_sent() && ! FrmAppHelper::wp_doing_ajax() && $args['total_pages'] > 0 && $this->get_pagenum() > $args['total_pages'] ) {
|
190 |
wp_redirect( add_query_arg( 'paged', $args['total_pages'] ) );
|
191 |
exit;
|
192 |
}
|
404 |
|
405 |
private static function get_bulk_action( $action_name ) {
|
406 |
$action = false;
|
407 |
+
$action_param = self::get_param( array( 'param' => $action_name, 'sanitize' => 'sanitize_text_field' ) );
|
408 |
+
if ( $action_param && -1 != $action_param ) {
|
409 |
+
$action = $action_param;
|
410 |
}
|
411 |
return $action;
|
412 |
}
|
classes/models/FrmDb.php
CHANGED
@@ -343,9 +343,6 @@ class FrmDb {
|
|
343 |
continue;
|
344 |
}
|
345 |
|
346 |
-
if ( $k == 'limit' ) {
|
347 |
-
$args[ $k ] = self::esc_limit( $v );
|
348 |
-
}
|
349 |
$db_name = strtoupper( str_replace( '_', ' ', $k ) );
|
350 |
if ( strpos( $v, $db_name ) === false ) {
|
351 |
$args[ $k ] = $db_name . ' ' . $v;
|
@@ -395,6 +392,8 @@ class FrmDb {
|
|
395 |
private static function generate_query_string_from_pieces( $columns, $table, $where, $args = array() ) {
|
396 |
$query = 'SELECT ' . $columns . ' FROM ' . $table;
|
397 |
|
|
|
|
|
398 |
if ( is_array( $where ) || empty( $where ) ) {
|
399 |
self::get_where_clause_and_values( $where );
|
400 |
global $wpdb;
|
@@ -411,6 +410,23 @@ class FrmDb {
|
|
411 |
return $query;
|
412 |
}
|
413 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
414 |
/**
|
415 |
* Added for < WP 4.0 compatability
|
416 |
*
|
@@ -448,15 +464,10 @@ class FrmDb {
|
|
448 |
|
449 |
$order_query = explode( ' ', trim( $order_query ) );
|
450 |
|
451 |
-
$
|
452 |
-
|
453 |
-
|
454 |
-
'
|
455 |
-
);
|
456 |
-
|
457 |
-
$order = trim( trim( reset( $order_query ), ',' ) );
|
458 |
-
if ( ! in_array( $order, $order_fields ) ) {
|
459 |
-
return '';
|
460 |
}
|
461 |
|
462 |
$order_by = '';
|
@@ -488,7 +499,7 @@ class FrmDb {
|
|
488 |
return '';
|
489 |
}
|
490 |
|
491 |
-
$limit = trim( str_replace( '
|
492 |
if ( is_numeric( $limit ) ) {
|
493 |
return ' LIMIT ' . $limit;
|
494 |
}
|
343 |
continue;
|
344 |
}
|
345 |
|
|
|
|
|
|
|
346 |
$db_name = strtoupper( str_replace( '_', ' ', $k ) );
|
347 |
if ( strpos( $v, $db_name ) === false ) {
|
348 |
$args[ $k ] = $db_name . ' ' . $v;
|
392 |
private static function generate_query_string_from_pieces( $columns, $table, $where, $args = array() ) {
|
393 |
$query = 'SELECT ' . $columns . ' FROM ' . $table;
|
394 |
|
395 |
+
self::esc_query_args( $args );
|
396 |
+
|
397 |
if ( is_array( $where ) || empty( $where ) ) {
|
398 |
self::get_where_clause_and_values( $where );
|
399 |
global $wpdb;
|
410 |
return $query;
|
411 |
}
|
412 |
|
413 |
+
/**
|
414 |
+
* @since 2.05.07
|
415 |
+
*/
|
416 |
+
private static function esc_query_args( &$args ) {
|
417 |
+
foreach ( $args as $param => $value ) {
|
418 |
+
if ( $param == 'order_by' ) {
|
419 |
+
$args[ $param ] = self::esc_order( $value );
|
420 |
+
} elseif ( $param == 'limit' ) {
|
421 |
+
$args[ $param ] = self::esc_limit( $value );
|
422 |
+
}
|
423 |
+
|
424 |
+
if ( $args[ $param ] == '' ) {
|
425 |
+
unset( $args[ $param ] );
|
426 |
+
}
|
427 |
+
}
|
428 |
+
}
|
429 |
+
|
430 |
/**
|
431 |
* Added for < WP 4.0 compatability
|
432 |
*
|
464 |
|
465 |
$order_query = explode( ' ', trim( $order_query ) );
|
466 |
|
467 |
+
$order = trim( reset( $order_query ) );
|
468 |
+
$safe_order = array( 'count(*)' );
|
469 |
+
if ( ! in_array( strtolower( $order ), $safe_order ) ) {
|
470 |
+
$order = preg_replace( '/[^a-zA-Z0-9\-\_\.]/', '', $order );
|
|
|
|
|
|
|
|
|
|
|
471 |
}
|
472 |
|
473 |
$order_by = '';
|
499 |
return '';
|
500 |
}
|
501 |
|
502 |
+
$limit = trim( str_replace( 'limit ', '', strtolower( $limit ) ) );
|
503 |
if ( is_numeric( $limit ) ) {
|
504 |
return ' LIMIT ' . $limit;
|
505 |
}
|
formidable.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Formidable Forms
|
4 |
Description: Quickly and easily create drag-and-drop forms
|
5 |
-
Version: 2.05.
|
6 |
Plugin URI: https://formidableforms.com/
|
7 |
Author URI: https://formidableforms.com/
|
8 |
Author: Strategy11
|
2 |
/*
|
3 |
Plugin Name: Formidable Forms
|
4 |
Description: Quickly and easily create drag-and-drop forms
|
5 |
+
Version: 2.05.07
|
6 |
Plugin URI: https://formidableforms.com/
|
7 |
Author URI: https://formidableforms.com/
|
8 |
Author: Strategy11
|
js/formidable_admin.js
CHANGED
@@ -699,16 +699,6 @@ function frmAdminBuildJS(){
|
|
699 |
}
|
700 |
}
|
701 |
|
702 |
-
function showDefaults(n,fval){
|
703 |
-
var defaults = jQuery('#frm_clear_on_focus_'+n+',#frm_clear_on_focus_'+n+' a, #frm_clear_on_focus_'+n+'_conf,#frm_clear_on_focus_'+n+'_conf a');
|
704 |
-
if(fval){
|
705 |
-
defaults.css('visibility','visible').fadeIn('slow');
|
706 |
-
}else{
|
707 |
-
defaults.css('visibility','visible').fadeOut('slow');
|
708 |
-
}
|
709 |
-
return false;
|
710 |
-
}
|
711 |
-
|
712 |
/**
|
713 |
* Toggle a default value icon
|
714 |
*
|
@@ -1054,17 +1044,6 @@ function frmAdminBuildJS(){
|
|
1054 |
}
|
1055 |
|
1056 |
}
|
1057 |
-
|
1058 |
-
function triggerDefaults(){
|
1059 |
-
var n = this.name;
|
1060 |
-
if( typeof n == 'undefined'){
|
1061 |
-
return false;
|
1062 |
-
}
|
1063 |
-
n = n.replace('[other]', '');
|
1064 |
-
var end = n.indexOf(']');
|
1065 |
-
n = n.substring(10, end);
|
1066 |
-
showDefaults(n, jQuery(this).val());
|
1067 |
-
}
|
1068 |
|
1069 |
function blurField(e){
|
1070 |
if(e.which == 13){
|
@@ -1436,6 +1415,61 @@ function frmAdminBuildJS(){
|
|
1436 |
});
|
1437 |
}
|
1438 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1439 |
function getNewActionId() {
|
1440 |
var len = 0;
|
1441 |
if ( jQuery('.frm_form_action_settings:last').length ) {
|
@@ -1473,12 +1507,7 @@ function frmAdminBuildJS(){
|
|
1473 |
if(obj.className.indexOf('edit_field_type_divider') !== -1){
|
1474 |
$thisobj.find('.frm_default_val_icons').hide().css('visibility', 'hidden');
|
1475 |
}else{
|
1476 |
-
|
1477 |
-
if(jQuery(i).val()){
|
1478 |
-
$thisobj.find('.frm_default_val_icons').show().css('visibility', 'visible');
|
1479 |
-
}else{
|
1480 |
-
$thisobj.find('.frm_default_val_icons').hide().css('visibility', 'hidden');
|
1481 |
-
}
|
1482 |
}
|
1483 |
|
1484 |
selected.removeClass('selected');
|
@@ -1494,7 +1523,7 @@ function frmAdminBuildJS(){
|
|
1494 |
}
|
1495 |
}
|
1496 |
}
|
1497 |
-
|
1498 |
function showEmailRow(){
|
1499 |
var actionKey = jQuery(this).closest('.frm_form_action_settings').data('actionkey');
|
1500 |
var rowType = this.getAttribute( 'data-emailrow' );
|
699 |
}
|
700 |
}
|
701 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
702 |
/**
|
703 |
* Toggle a default value icon
|
704 |
*
|
1044 |
}
|
1045 |
|
1046 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1047 |
|
1048 |
function blurField(e){
|
1049 |
if(e.which == 13){
|
1415 |
});
|
1416 |
}
|
1417 |
|
1418 |
+
function triggerDefaults(){
|
1419 |
+
var n = this.name;
|
1420 |
+
if( typeof n === 'undefined'){
|
1421 |
+
return false;
|
1422 |
+
}
|
1423 |
+
|
1424 |
+
var fieldContainer = jQuery(this).closest('.frm_field_box');
|
1425 |
+
|
1426 |
+
maybeShowDefaultValIcons(fieldContainer);
|
1427 |
+
}
|
1428 |
+
|
1429 |
+
/**
|
1430 |
+
* Show or hide the default value icons of a field
|
1431 |
+
*
|
1432 |
+
* @since 2.04.02
|
1433 |
+
*
|
1434 |
+
* @param {boolean} showDefaultValIcons
|
1435 |
+
* @param {object} $innerField
|
1436 |
+
*/
|
1437 |
+
function showOrHideDefaultValIcons(showDefaultValIcons, $innerField) {
|
1438 |
+
var $defaultValueIcons = $innerField.find('.frm_default_val_icons');
|
1439 |
+
|
1440 |
+
if (showDefaultValIcons) {
|
1441 |
+
$defaultValueIcons.css('visibility', 'visible').fadeIn('slow');
|
1442 |
+
} else {
|
1443 |
+
$defaultValueIcons.css('visibility', 'visible').fadeOut('slow');
|
1444 |
+
}
|
1445 |
+
}
|
1446 |
+
|
1447 |
+
/**
|
1448 |
+
* Determine if a field has default content and display the default value icons if it does
|
1449 |
+
*
|
1450 |
+
* @since 2.04.02
|
1451 |
+
*
|
1452 |
+
* @param {number} fieldId
|
1453 |
+
*/
|
1454 |
+
function maybeShowDefaultValIcons( $fieldInner ) {
|
1455 |
+
var showDefaultValIcons = false;
|
1456 |
+
var isComboOrConfirmationField = $fieldInner.find('.frm_multi_fields_container, .frm_inner_conf_container').length > 0;
|
1457 |
+
var inputList = $fieldInner.find('input[name^="item_meta"], input[id^="conf_field"], select[name^="item_meta"], textarea[name^="item_meta"]');
|
1458 |
+
|
1459 |
+
jQuery(inputList).each( function(index) {
|
1460 |
+
|
1461 |
+
if (jQuery(this).val()) {
|
1462 |
+
showDefaultValIcons = true;
|
1463 |
+
return false;
|
1464 |
+
} else if (!isComboOrConfirmationField) {
|
1465 |
+
return false;
|
1466 |
+
}
|
1467 |
+
|
1468 |
+
});
|
1469 |
+
|
1470 |
+
showOrHideDefaultValIcons(showDefaultValIcons, $fieldInner);
|
1471 |
+
}
|
1472 |
+
|
1473 |
function getNewActionId() {
|
1474 |
var len = 0;
|
1475 |
if ( jQuery('.frm_form_action_settings:last').length ) {
|
1507 |
if(obj.className.indexOf('edit_field_type_divider') !== -1){
|
1508 |
$thisobj.find('.frm_default_val_icons').hide().css('visibility', 'hidden');
|
1509 |
}else{
|
1510 |
+
maybeShowDefaultValIcons($thisobj);
|
|
|
|
|
|
|
|
|
|
|
1511 |
}
|
1512 |
|
1513 |
selected.removeClass('selected');
|
1523 |
}
|
1524 |
}
|
1525 |
}
|
1526 |
+
|
1527 |
function showEmailRow(){
|
1528 |
var actionKey = jQuery(this).closest('.frm_form_action_settings').data('actionkey');
|
1529 |
var rowType = this.getAttribute( 'data-emailrow' );
|
languages/{formidable-sv_SE.po → formidable-sr_RS.po}
RENAMED
@@ -1,8107 +1,7961 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Formidable v2.05.02\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-09-01 03:07+0000\n"
|
6 |
-
"PO-Revision-Date: Wed Oct 25 2017 12:59:
|
7 |
-
"Last-Translator: \n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"Language:
|
10 |
-
"Plural-Forms: nplurals=
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"Content-
|
14 |
-
"
|
15 |
-
"X-
|
16 |
-
"X-
|
17 |
-
"X-Poedit-
|
18 |
-
"X-Poedit-
|
19 |
-
"
|
20 |
-
"
|
21 |
-
"
|
22 |
-
"
|
23 |
-
"
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
msgid "
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
"
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
#:
|
89 |
-
msgid "
|
90 |
-
msgstr ""
|
91 |
-
|
92 |
-
#: ../classes/
|
93 |
-
msgid "
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
#: ../classes/
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
msgstr ""
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
#:
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
msgstr ""
|
123 |
-
|
124 |
-
#: ../classes/
|
125 |
-
msgid "
|
126 |
-
msgstr ""
|
127 |
-
|
128 |
-
#: ../classes/views/frm-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
"
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
#: ../
|
166 |
-
msgid "
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: ../
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
#: ../pro/classes/controllers/
|
174 |
-
msgid "
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: ../
|
178 |
-
msgid "
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: ../
|
182 |
-
msgid "
|
183 |
-
msgstr ""
|
184 |
-
|
185 |
-
#: ../
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
"
|
196 |
-
"
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
msgid "
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: ../
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
msgid "
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
"
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
"
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
#: ../
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
#:
|
277 |
-
#: pro/classes/views/frmpro-
|
278 |
-
|
279 |
-
msgid "
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
#: ../
|
283 |
-
msgid "
|
284 |
-
msgstr ""
|
285 |
-
|
286 |
-
#: ../
|
287 |
-
msgid "
|
288 |
-
msgstr ""
|
289 |
-
|
290 |
-
#: ../
|
291 |
-
msgid "
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
"
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
"
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
|
333 |
-
msgid "
|
334 |
-
msgstr "
|
335 |
-
|
336 |
-
#: ../classes/
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
#: classes/
|
343 |
-
msgid "
|
344 |
-
msgstr "
|
345 |
-
|
346 |
-
#: ../classes/
|
347 |
-
msgid "
|
348 |
-
msgstr "
|
349 |
-
|
350 |
-
#: ../classes/
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
#:
|
359 |
-
msgid "
|
360 |
-
msgstr "
|
361 |
-
|
362 |
-
#: ../classes/
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
#: classes/
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
#:
|
371 |
-
msgid "
|
372 |
-
msgstr "
|
373 |
-
|
374 |
-
#: ../classes/
|
375 |
-
|
376 |
-
msgid ""
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
#:
|
411 |
-
msgid "
|
412 |
-
msgstr "
|
413 |
-
|
414 |
-
#: ../classes/
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
#: classes/
|
420 |
-
#:
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
#:
|
431 |
-
msgid "
|
432 |
-
msgstr "
|
433 |
-
|
434 |
-
#: ../classes/
|
435 |
-
#:
|
436 |
-
msgid "
|
437 |
-
msgstr "
|
438 |
-
|
439 |
-
#: ../classes/
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
#:
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
#:
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
msgid ""
|
465 |
-
"
|
466 |
-
"
|
467 |
-
msgstr ""
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
msgstr "
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
#:
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
#:
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
#: classes/
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
#: classes/
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
msgstr
|
550 |
-
|
551 |
-
#: ../classes/
|
552 |
-
msgid "
|
553 |
-
msgstr "
|
554 |
-
|
555 |
-
#: ../classes/
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
#:
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
#: classes/
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
#: classes/
|
621 |
-
msgid "
|
622 |
-
msgstr "
|
623 |
-
|
624 |
-
#: ../classes/
|
625 |
-
msgid "
|
626 |
-
msgstr "
|
627 |
-
|
628 |
-
#: ../classes/
|
629 |
-
msgid "
|
630 |
-
msgstr "
|
631 |
-
|
632 |
-
#: ../classes/
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
#:
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
#:
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
#:
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
#:
|
689 |
-
msgid "
|
690 |
-
msgstr "
|
691 |
-
|
692 |
-
#: ../classes/
|
693 |
-
msgid "
|
694 |
-
msgstr "
|
695 |
-
|
696 |
-
#: ../classes/
|
697 |
-
msgid "
|
698 |
-
msgstr "
|
699 |
-
|
700 |
-
#: ../classes/
|
701 |
-
msgid "
|
702 |
-
msgstr "
|
703 |
-
|
704 |
-
#: ../classes/
|
705 |
-
msgid "
|
706 |
-
msgstr "
|
707 |
-
|
708 |
-
#: ../classes/
|
709 |
-
msgid "
|
710 |
-
msgstr "
|
711 |
-
|
712 |
-
#: ../classes/
|
713 |
-
msgid "
|
714 |
-
msgstr "
|
715 |
-
|
716 |
-
#: ../classes/
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
msgstr "
|
723 |
-
|
724 |
-
#: ../classes/
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
#:
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
#: classes/
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
#:
|
743 |
-
msgid "
|
744 |
-
msgstr "
|
745 |
-
|
746 |
-
#: ../classes/
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
#:
|
755 |
-
msgid "
|
756 |
-
msgstr "
|
757 |
-
|
758 |
-
#: ../classes/
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
#: classes/
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
#:
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
#: classes/
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
#:
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
#:
|
794 |
-
msgid "
|
795 |
-
msgstr "
|
796 |
-
|
797 |
-
#: ../classes/
|
798 |
-
msgid "
|
799 |
-
msgstr "
|
800 |
-
|
801 |
-
#: ../classes/
|
802 |
-
msgid "
|
803 |
-
msgstr "
|
804 |
-
|
805 |
-
#: ../classes/
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
#:
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
msgstr "
|
853 |
-
|
854 |
-
#: ../classes/
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
#:
|
863 |
-
msgid "
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
msgstr "
|
881 |
-
|
882 |
-
#: ../classes/
|
883 |
-
msgid "
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
msgstr "
|
921 |
-
|
922 |
-
#: ../classes/
|
923 |
-
msgid "
|
924 |
-
msgstr "
|
925 |
-
|
926 |
-
#: ../classes/
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
#:
|
963 |
-
msgid "
|
964 |
-
msgstr "
|
965 |
-
|
966 |
-
#: ../classes/
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
msgid "
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
"
|
1011 |
-
msgstr ""
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
"
|
1020 |
-
msgstr ""
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
#: ../classes/
|
1033 |
-
msgid ""
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
#: ../classes/
|
1041 |
-
|
1042 |
-
|
1043 |
-
"
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
"
|
1053 |
-
msgstr ""
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
#:
|
1074 |
-
#:
|
1075 |
-
msgid "
|
1076 |
-
msgstr "
|
1077 |
-
|
1078 |
-
#: ../classes/
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
#:
|
1083 |
-
msgid "
|
1084 |
-
msgstr "
|
1085 |
-
|
1086 |
-
#: ../classes/
|
1087 |
-
msgid ""
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
"
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
#:
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
#:
|
1104 |
-
msgid "
|
1105 |
-
msgstr "
|
1106 |
-
|
1107 |
-
#: ../classes/
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
#:
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
#:
|
1132 |
-
msgid "
|
1133 |
-
msgstr "
|
1134 |
-
|
1135 |
-
#: ../classes/
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
#:
|
1140 |
-
msgid "
|
1141 |
-
msgstr "
|
1142 |
-
|
1143 |
-
#: ../classes/
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
msgstr "
|
1166 |
-
|
1167 |
-
#: ../classes/
|
1168 |
-
msgid "
|
1169 |
-
msgstr "
|
1170 |
-
|
1171 |
-
#: ../classes/
|
1172 |
-
msgid "
|
1173 |
-
msgstr "
|
1174 |
-
|
1175 |
-
#: ../classes/
|
1176 |
-
msgid ""
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
#: ../classes/
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
"
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
#: ../classes/
|
1319 |
-
msgid "
|
1320 |
-
msgstr "
|
1321 |
-
|
1322 |
-
#: ../classes/
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
1371 |
-
|
1372 |
-
|
1373 |
-
|
1374 |
-
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
msgid "
|
1405 |
-
|
1406 |
-
|