@@ -22,13 +22,13 @@ discard block |
||
22 | 22 | |
23 | 23 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
24 | 24 | |
25 | - unset( $field_options['show_as_link'] ); |
|
25 | + unset( $field_options[ 'show_as_link' ] ); |
|
26 | 26 | |
27 | - if( 'edit' === $context ) { |
|
27 | + if ( 'edit' === $context ) { |
|
28 | 28 | return $field_options; |
29 | 29 | } |
30 | 30 | |
31 | - $this->add_field_support('dynamic_data', $field_options ); |
|
31 | + $this->add_field_support( 'dynamic_data', $field_options ); |
|
32 | 32 | |
33 | 33 | return $field_options; |
34 | 34 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | */ |
45 | 45 | public function get_field_input( $form, $value = '', $entry = null, GF_Field_Post_Content $field ) { |
46 | 46 | |
47 | - $id = (int) $field->id; |
|
47 | + $id = (int)$field->id; |
|
48 | 48 | $input_name = "input_{$id}"; |
49 | 49 | $class = esc_attr( $field->size ); |
50 | 50 | $tabindex = $field->get_tabindex(); |
@@ -42,8 +42,8 @@ discard block |
||
42 | 42 | * @return GravityView_Field | bool |
43 | 43 | */ |
44 | 44 | public static function create( $properties ) { |
45 | - $type = isset( $properties['type'] ) ? $properties['type'] : ''; |
|
46 | - $type = empty( $properties['inputType'] ) ? $type : $properties['inputType']; |
|
45 | + $type = isset( $properties[ 'type' ] ) ? $properties[ 'type' ] : ''; |
|
46 | + $type = empty( $properties[ 'inputType' ] ) ? $type : $properties[ 'inputType' ]; |
|
47 | 47 | if ( empty( $type ) || ! isset( self::$_fields[ $type ] ) ) { |
48 | 48 | return new GravityView_Field( $properties ); |
49 | 49 | } |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | * @return bool True: yes, it exists; False: nope |
63 | 63 | */ |
64 | 64 | public static function exists( $field_name ) { |
65 | - return isset( self::$_fields["{$field_name}"] ); |
|
65 | + return isset( self::$_fields[ "{$field_name}" ] ); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | /** |
@@ -96,8 +96,8 @@ discard block |
||
96 | 96 | |
97 | 97 | $field_type = is_a( $gf_field, 'GF_Field' ) ? get_class( $gf_field ) : $gf_field; |
98 | 98 | |
99 | - foreach( self::$_fields as $field ) { |
|
100 | - if( $field_type === $field->_gf_field_class_name ) { |
|
99 | + foreach ( self::$_fields as $field ) { |
|
100 | + if ( $field_type === $field->_gf_field_class_name ) { |
|
101 | 101 | return $field; |
102 | 102 | } |
103 | 103 | } |
@@ -116,10 +116,10 @@ discard block |
||
116 | 116 | */ |
117 | 117 | public static function get_all( $group = '' ) { |
118 | 118 | |
119 | - if( '' !== $group ) { |
|
119 | + if ( '' !== $group ) { |
|
120 | 120 | $return_fields = self::$_fields; |
121 | 121 | foreach ( $return_fields as $key => $field ) { |
122 | - if( $group !== $field->group ) { |
|
122 | + if ( $group !== $field->group ) { |
|
123 | 123 | unset( $return_fields[ $key ] ); |
124 | 124 | } |
125 | 125 | } |
@@ -23,16 +23,16 @@ discard block |
||
23 | 23 | |
24 | 24 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
25 | 25 | |
26 | - unset ( $field_options['search_filter'] ); |
|
26 | + unset ( $field_options[ 'search_filter' ] ); |
|
27 | 27 | |
28 | - if( 'edit' === $context ) { |
|
28 | + if ( 'edit' === $context ) { |
|
29 | 29 | return $field_options; |
30 | 30 | } |
31 | 31 | |
32 | - $this->add_field_support('link_to_post', $field_options ); |
|
32 | + $this->add_field_support( 'link_to_post', $field_options ); |
|
33 | 33 | |
34 | 34 | // @since 1.5.4 |
35 | - $this->add_field_support('dynamic_data', $field_options ); |
|
35 | + $this->add_field_support( 'dynamic_data', $field_options ); |
|
36 | 36 | |
37 | 37 | return $field_options; |
38 | 38 | } |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | $url = $title = $caption = $description = ''; |
59 | 59 | |
60 | 60 | // If there's a |:| match, process. Otherwise, empty array! |
61 | - if( preg_match( '/\|\:\|/', $value ) ) { |
|
61 | + if ( preg_match( '/\|\:\|/', $value ) ) { |
|
62 | 62 | list( $url, $title, $caption, $description ) = array_pad( explode( '|:|', $value ), 4, false ); |
63 | 63 | } |
64 | 64 | |
@@ -87,8 +87,8 @@ discard block |
||
87 | 87 | */ |
88 | 88 | public function get_field_input( $form, $value = '', $entry = null, GF_Field_Post_Image $field ) { |
89 | 89 | |
90 | - $id = (int) $field->id; |
|
91 | - $form_id = $form['id']; |
|
90 | + $id = (int)$field->id; |
|
91 | + $form_id = $form[ 'id' ]; |
|
92 | 92 | $input_name = "input_{$id}"; |
93 | 93 | $field_id = sprintf( 'input_%d_%d', $form_id, $id ); |
94 | 94 | $img_name = null; |
@@ -96,16 +96,16 @@ discard block |
||
96 | 96 | // Convert |:| to associative array |
97 | 97 | $img_array = $this->explode_value( $value ); |
98 | 98 | |
99 | - if( ! empty( $img_array['url'] ) ) { |
|
99 | + if ( ! empty( $img_array[ 'url' ] ) ) { |
|
100 | 100 | |
101 | - $img_name = basename( $img_array['url'] ); |
|
101 | + $img_name = basename( $img_array[ 'url' ] ); |
|
102 | 102 | |
103 | 103 | /** |
104 | 104 | * Set the $uploaded_files value so that the .ginput_preview renders, and the file upload is hidden |
105 | 105 | * @see GF_Field_Post_Image::get_field_input See the `<span class='ginput_preview'>` code |
106 | 106 | * @see GFFormsModel::get_temp_filename See the `rgget( $input_name, self::$uploaded_files[ $form_id ] );` code |
107 | 107 | */ |
108 | - if( empty( GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] ) ) { |
|
108 | + if ( empty( GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] ) ) { |
|
109 | 109 | GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] = $img_name; |
110 | 110 | } |
111 | 111 | } |
@@ -134,8 +134,8 @@ discard block |
||
134 | 134 | * @hack |
135 | 135 | */ |
136 | 136 | if ( $img_name ) { |
137 | - $current_file = sprintf( "<input name='%s' id='%s' type='hidden' value='%s' />", $input_name, $field_id, esc_url_raw( $img_array['url'] ) ); |
|
138 | - $gf_post_image_field_output = str_replace('<span class=\'ginput_preview\'>', '<span class=\'ginput_preview\'>'.$current_file, $gf_post_image_field_output ); |
|
137 | + $current_file = sprintf( "<input name='%s' id='%s' type='hidden' value='%s' />", $input_name, $field_id, esc_url_raw( $img_array[ 'url' ] ) ); |
|
138 | + $gf_post_image_field_output = str_replace( '<span class=\'ginput_preview\'>', '<span class=\'ginput_preview\'>' . $current_file, $gf_post_image_field_output ); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | return $gf_post_image_field_output; |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | |
37 | 37 | self::$file = plugin_dir_path( __FILE__ ); |
38 | 38 | |
39 | - if( is_admin() ) { |
|
39 | + if ( is_admin() ) { |
|
40 | 40 | $this->load_components( 'admin' ); |
41 | 41 | } |
42 | 42 | |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | static function getInstance() { |
57 | 57 | |
58 | - if( empty( self::$instance ) ) { |
|
58 | + if ( empty( self::$instance ) ) { |
|
59 | 59 | self::$instance = new GravityView_Edit_Entry; |
60 | 60 | } |
61 | 61 | |
@@ -81,10 +81,10 @@ discard block |
||
81 | 81 | private function add_hooks() { |
82 | 82 | |
83 | 83 | // Add front-end access to Gravity Forms delete file action |
84 | - add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'RGForms', 'delete_file') ); |
|
84 | + add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'RGForms', 'delete_file' ) ); |
|
85 | 85 | |
86 | 86 | // Make sure this hook is run for non-admins |
87 | - add_action( 'wp_ajax_rg_delete_file', array( 'RGForms', 'delete_file') ); |
|
87 | + add_action( 'wp_ajax_rg_delete_file', array( 'RGForms', 'delete_file' ) ); |
|
88 | 88 | |
89 | 89 | add_filter( 'gravityview_blacklist_field_types', array( $this, 'modify_field_blacklist' ), 10, 2 ); |
90 | 90 | |
@@ -99,8 +99,8 @@ discard block |
||
99 | 99 | */ |
100 | 100 | private function addon_specific_hooks() { |
101 | 101 | |
102 | - if( class_exists( 'GFSignature' ) && is_callable( array( 'GFSignature', 'get_instance' ) ) ) { |
|
103 | - add_filter('gform_admin_pre_render', array( GFSignature::get_instance(), 'edit_lead_script')); |
|
102 | + if ( class_exists( 'GFSignature' ) && is_callable( array( 'GFSignature', 'get_instance' ) ) ) { |
|
103 | + add_filter( 'gform_admin_pre_render', array( GFSignature::get_instance(), 'edit_lead_script' ) ); |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | } |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | */ |
147 | 147 | public static function get_edit_link( $entry, $view_id, $post_id = null, $field_values = '' ) { |
148 | 148 | |
149 | - $nonce_key = self::get_nonce_key( $view_id, $entry['form_id'], $entry['id'] ); |
|
149 | + $nonce_key = self::get_nonce_key( $view_id, $entry[ 'form_id' ], $entry[ 'id' ] ); |
|
150 | 150 | |
151 | 151 | $base = gv_entry_link( $entry, $post_id ); |
152 | 152 | |
@@ -160,9 +160,9 @@ discard block |
||
160 | 160 | * Allow passing params to dynamically populate entry with values |
161 | 161 | * @since 1.9.2 |
162 | 162 | */ |
163 | - if( !empty( $field_values ) ) { |
|
163 | + if ( ! empty( $field_values ) ) { |
|
164 | 164 | |
165 | - if( is_array( $field_values ) ) { |
|
165 | + if ( is_array( $field_values ) ) { |
|
166 | 166 | // If already an array, no parse_str() needed |
167 | 167 | $params = $field_values; |
168 | 168 | } else { |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | */ |
185 | 185 | public function modify_field_blacklist( $fields = array(), $context = NULL ) { |
186 | 186 | |
187 | - if( empty( $context ) || $context !== 'edit' ) { |
|
187 | + if ( empty( $context ) || $context !== 'edit' ) { |
|
188 | 188 | return $fields; |
189 | 189 | } |
190 | 190 | |
@@ -226,24 +226,24 @@ discard block |
||
226 | 226 | // If they can edit any entries (as defined in Gravity Forms) |
227 | 227 | // Or if they can edit other people's entries |
228 | 228 | // Then we're good. |
229 | - if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry['id'] ) ) { |
|
229 | + if ( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry[ 'id' ] ) ) { |
|
230 | 230 | |
231 | - do_action('gravityview_log_debug', __METHOD__ . ' - User has ability to edit all entries.'); |
|
231 | + do_action( 'gravityview_log_debug', __METHOD__ . ' - User has ability to edit all entries.' ); |
|
232 | 232 | |
233 | 233 | $user_can_edit = true; |
234 | 234 | |
235 | - } else if( !isset( $entry['created_by'] ) ) { |
|
235 | + } else if ( ! isset( $entry[ 'created_by' ] ) ) { |
|
236 | 236 | |
237 | - do_action('gravityview_log_error', 'GravityView_Edit_Entry[check_user_cap_edit_entry] Entry `created_by` doesn\'t exist.'); |
|
237 | + do_action( 'gravityview_log_error', 'GravityView_Edit_Entry[check_user_cap_edit_entry] Entry `created_by` doesn\'t exist.' ); |
|
238 | 238 | |
239 | 239 | $user_can_edit = false; |
240 | 240 | |
241 | 241 | } else { |
242 | 242 | |
243 | 243 | // get user_edit setting |
244 | - if( empty( $view_id ) || $view_id == GravityView_View::getInstance()->getViewId() ) { |
|
244 | + if ( empty( $view_id ) || $view_id == GravityView_View::getInstance()->getViewId() ) { |
|
245 | 245 | // if View ID not specified or is the current view |
246 | - $user_edit = GravityView_View::getInstance()->getAtts('user_edit'); |
|
246 | + $user_edit = GravityView_View::getInstance()->getAtts( 'user_edit' ); |
|
247 | 247 | } else { |
248 | 248 | // in case is specified and not the current view |
249 | 249 | $user_edit = GVCommon::get_template_setting( $view_id, 'user_edit' ); |
@@ -252,21 +252,21 @@ discard block |
||
252 | 252 | $current_user = wp_get_current_user(); |
253 | 253 | |
254 | 254 | // User edit is disabled |
255 | - if( empty( $user_edit ) ) { |
|
255 | + if ( empty( $user_edit ) ) { |
|
256 | 256 | |
257 | - do_action('gravityview_log_debug', 'GravityView_Edit_Entry[check_user_cap_edit_entry] User Edit is disabled. Returning false.' ); |
|
257 | + do_action( 'gravityview_log_debug', 'GravityView_Edit_Entry[check_user_cap_edit_entry] User Edit is disabled. Returning false.' ); |
|
258 | 258 | |
259 | 259 | $user_can_edit = false; |
260 | 260 | } |
261 | 261 | |
262 | 262 | // User edit is enabled and the logged-in user is the same as the user who created the entry. We're good. |
263 | - else if( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry['created_by'] ) ) { |
|
263 | + else if ( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry[ 'created_by' ] ) ) { |
|
264 | 264 | |
265 | - do_action('gravityview_log_debug', sprintf( 'GravityView_Edit_Entry[check_user_cap_edit_entry] User %s created the entry.', $current_user->ID ) ); |
|
265 | + do_action( 'gravityview_log_debug', sprintf( 'GravityView_Edit_Entry[check_user_cap_edit_entry] User %s created the entry.', $current_user->ID ) ); |
|
266 | 266 | |
267 | 267 | $user_can_edit = true; |
268 | 268 | |
269 | - } else if( ! is_user_logged_in() ) { |
|
269 | + } else if ( ! is_user_logged_in() ) { |
|
270 | 270 | |
271 | 271 | do_action( 'gravityview_log_debug', __METHOD__ . ' No user defined; edit entry requires logged in user' ); |
272 | 272 | } |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | |
30 | 30 | $labels = array( |
31 | 31 | 'cancel' => __( 'Cancel', 'gravityview' ), |
32 | - 'submit' => __( 'Update', 'gravityview') |
|
32 | + 'submit' => __( 'Update', 'gravityview' ) |
|
33 | 33 | ); |
34 | 34 | |
35 | 35 | /** |
@@ -43,9 +43,9 @@ discard block |
||
43 | 43 | $labels = apply_filters( 'gravityview/edit_entry/button_labels', $labels, $object->form, $object->entry, $object->view_id ); |
44 | 44 | |
45 | 45 | ?> |
46 | - <input id="gform_submit_button_<?php echo esc_attr( $object->form['id'] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-update" type="submit" tabindex="4" value="<?php echo esc_attr( $labels['submit'] ); ?>" name="save" /> |
|
46 | + <input id="gform_submit_button_<?php echo esc_attr( $object->form[ 'id' ] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-update" type="submit" tabindex="4" value="<?php echo esc_attr( $labels[ 'submit' ] ); ?>" name="save" /> |
|
47 | 47 | |
48 | - <a class="btn btn-sm button button-small gv-button-cancel" tabindex="5" href="<?php echo esc_url( $back_link ); ?>"><?php echo esc_attr( $labels['cancel'] ); ?></a> |
|
48 | + <a class="btn btn-sm button button-small gv-button-cancel" tabindex="5" href="<?php echo esc_url( $back_link ); ?>"><?php echo esc_attr( $labels[ 'cancel' ] ); ?></a> |
|
49 | 49 | <?php |
50 | 50 | |
51 | 51 | /** |
@@ -59,5 +59,5 @@ discard block |
||
59 | 59 | |
60 | 60 | ?> |
61 | 61 | <input type="hidden" name="action" value="update" /> |
62 | - <input type="hidden" name="lid" value="<?php echo esc_attr( $object->entry['id'] ); ?>" /> |
|
62 | + <input type="hidden" name="lid" value="<?php echo esc_attr( $object->entry[ 'id' ] ); ?>" /> |
|
63 | 63 | </div> |
@@ -11,10 +11,10 @@ |
||
11 | 11 | ?> |
12 | 12 | |
13 | 13 | <div class="gv-search-box gv-search-date"> |
14 | - <?php if( ! gv_empty( $search_field['label'], false ) ) { ?> |
|
15 | - <label for="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"><?php echo esc_html( $search_field['label'] ); ?></label> |
|
14 | + <?php if ( ! gv_empty( $search_field[ 'label' ], false ) ) { ?> |
|
15 | + <label for="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"><?php echo esc_html( $search_field[ 'label' ] ); ?></label> |
|
16 | 16 | <?php } ?> |
17 | 17 | <p> |
18 | - <input type="text" name="<?php echo esc_attr( $search_field['name'] ); ?>" id="search-box-<?php echo esc_attr( $search_field['name'] ); ?>" value="<?php echo esc_attr( $search_field['value'] ); ?>" class="<?php echo esc_html( $gravityview_view->datepicker_class ); ?>" > |
|
18 | + <input type="text" name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>" id="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>" value="<?php echo esc_attr( $search_field[ 'value' ] ); ?>" class="<?php echo esc_html( $gravityview_view->datepicker_class ); ?>" > |
|
19 | 19 | </p> |
20 | 20 | </div> |
21 | 21 | \ No newline at end of file |
@@ -10,10 +10,10 @@ |
||
10 | 10 | |
11 | 11 | ?> |
12 | 12 | <div class="gv-search-box gv-search-field-text"> |
13 | - <?php if( ! gv_empty( $search_field['label'], false ) ) { ?> |
|
14 | - <label for="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"><?php echo esc_html( $search_field['label'] ); ?></label> |
|
13 | + <?php if ( ! gv_empty( $search_field[ 'label' ], false ) ) { ?> |
|
14 | + <label for="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"><?php echo esc_html( $search_field[ 'label' ] ); ?></label> |
|
15 | 15 | <?php } ?> |
16 | 16 | <p> |
17 | - <input type="text" name="<?php echo esc_attr( $search_field['name'] ); ?>" id="search-box-<?php echo esc_attr( $search_field['name'] ); ?>" value="<?php echo esc_attr( $search_field['value'] ); ?>"> |
|
17 | + <input type="text" name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>" id="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>" value="<?php echo esc_attr( $search_field[ 'value' ] ); ?>"> |
|
18 | 18 | </p> |
19 | 19 | </div> |
20 | 20 | \ No newline at end of file |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | die; |
17 | 17 | } |
18 | 18 | |
19 | -if( ! class_exists( 'Gamajo_Template_Loader' ) ) { |
|
19 | +if ( ! class_exists( 'Gamajo_Template_Loader' ) ) { |
|
20 | 20 | require( GRAVITYVIEW_DIR . 'includes/lib/class-gamajo-template-loader.php' ); |
21 | 21 | } |
22 | 22 | |
@@ -157,8 +157,8 @@ discard block |
||
157 | 157 | 'atts' => NULL, |
158 | 158 | ) ); |
159 | 159 | |
160 | - foreach ($atts as $key => $value) { |
|
161 | - if( is_null( $value ) ) { |
|
160 | + foreach ( $atts as $key => $value ) { |
|
161 | + if ( is_null( $value ) ) { |
|
162 | 162 | continue; |
163 | 163 | } |
164 | 164 | $this->{$key} = $value; |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | */ |
190 | 190 | static function getInstance( $passed_post = NULL ) { |
191 | 191 | |
192 | - if( empty( self::$instance ) ) { |
|
192 | + if ( empty( self::$instance ) ) { |
|
193 | 193 | self::$instance = new self( $passed_post ); |
194 | 194 | } |
195 | 195 | |
@@ -202,8 +202,8 @@ discard block |
||
202 | 202 | */ |
203 | 203 | public function getCurrentField( $key = NULL ) { |
204 | 204 | |
205 | - if( !empty( $key ) ) { |
|
206 | - if( isset( $this->_current_field[ $key ] ) ) { |
|
205 | + if ( ! empty( $key ) ) { |
|
206 | + if ( isset( $this->_current_field[ $key ] ) ) { |
|
207 | 207 | return $this->_current_field[ $key ]; |
208 | 208 | } |
209 | 209 | return NULL; |
@@ -214,16 +214,16 @@ discard block |
||
214 | 214 | |
215 | 215 | public function setCurrentFieldSetting( $key, $value ) { |
216 | 216 | |
217 | - if( !empty( $this->_current_field ) ) { |
|
218 | - $this->_current_field['field_settings'][ $key ] = $value; |
|
217 | + if ( ! empty( $this->_current_field ) ) { |
|
218 | + $this->_current_field[ 'field_settings' ][ $key ] = $value; |
|
219 | 219 | } |
220 | 220 | |
221 | 221 | } |
222 | 222 | |
223 | 223 | public function getCurrentFieldSetting( $key ) { |
224 | - $settings = $this->getCurrentField('field_settings'); |
|
224 | + $settings = $this->getCurrentField( 'field_settings' ); |
|
225 | 225 | |
226 | - if( $settings && !empty( $settings[ $key ] ) ) { |
|
226 | + if ( $settings && ! empty( $settings[ $key ] ) ) { |
|
227 | 227 | return $settings[ $key ]; |
228 | 228 | } |
229 | 229 | |
@@ -254,8 +254,8 @@ discard block |
||
254 | 254 | */ |
255 | 255 | public function getAtts( $key = NULL ) { |
256 | 256 | |
257 | - if( !empty( $key ) ) { |
|
258 | - if( isset( $this->atts[ $key ] ) ) { |
|
257 | + if ( ! empty( $key ) ) { |
|
258 | + if ( isset( $this->atts[ $key ] ) ) { |
|
259 | 259 | return $this->atts[ $key ]; |
260 | 260 | } |
261 | 261 | return NULL; |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | |
322 | 322 | $fields = empty( $this->fields ) ? NULL : $this->fields; |
323 | 323 | |
324 | - if( $fields && !empty( $key ) ) { |
|
324 | + if ( $fields && ! empty( $key ) ) { |
|
325 | 325 | $fields = isset( $fields[ $key ] ) ? $fields[ $key ] : NULL; |
326 | 326 | } |
327 | 327 | |
@@ -341,8 +341,8 @@ discard block |
||
341 | 341 | */ |
342 | 342 | public function getField( $key ) { |
343 | 343 | |
344 | - if( !empty( $key ) ) { |
|
345 | - if( isset( $this->fields[ $key ] ) ) { |
|
344 | + if ( ! empty( $key ) ) { |
|
345 | + if ( isset( $this->fields[ $key ] ) ) { |
|
346 | 346 | return $this->fields[ $key ]; |
347 | 347 | } |
348 | 348 | } |
@@ -442,8 +442,8 @@ discard block |
||
442 | 442 | public function getPaginationCounts() { |
443 | 443 | |
444 | 444 | $paging = $this->getPaging(); |
445 | - $offset = $paging['offset']; |
|
446 | - $page_size = $paging['page_size']; |
|
445 | + $offset = $paging[ 'offset' ]; |
|
446 | + $page_size = $paging[ 'page_size' ]; |
|
447 | 447 | $total = $this->getTotalEntries(); |
448 | 448 | |
449 | 449 | if ( empty( $total ) ) { |
@@ -464,7 +464,7 @@ discard block |
||
464 | 464 | */ |
465 | 465 | list( $first, $last, $total ) = apply_filters( 'gravityview_pagination_counts', array( $first, $last, $total ) ); |
466 | 466 | |
467 | - return array( 'first' => (int) $first, 'last' => (int) $last, 'total' => (int) $total ); |
|
467 | + return array( 'first' => (int)$first, 'last' => (int)$last, 'total' => (int)$total ); |
|
468 | 468 | } |
469 | 469 | |
470 | 470 | /** |
@@ -548,16 +548,16 @@ discard block |
||
548 | 548 | */ |
549 | 549 | public function getCurrentEntry() { |
550 | 550 | |
551 | - if( in_array( $this->getContext(), array( 'edit', 'single') ) ) { |
|
551 | + if ( in_array( $this->getContext(), array( 'edit', 'single' ) ) ) { |
|
552 | 552 | $entries = $this->getEntries(); |
553 | - $entry = $entries[0]; |
|
553 | + $entry = $entries[ 0 ]; |
|
554 | 554 | } else { |
555 | 555 | $entry = $this->_current_entry; |
556 | 556 | } |
557 | 557 | |
558 | 558 | /** @since 1.16 Fixes DataTables empty entry issue */ |
559 | - if ( empty( $entry ) && ! empty( $this->_current_field['entry'] ) ) { |
|
560 | - $entry = $this->_current_field['entry']; |
|
559 | + if ( empty( $entry ) && ! empty( $this->_current_field[ 'entry' ] ) ) { |
|
560 | + $entry = $this->_current_field[ 'entry' ]; |
|
561 | 561 | } |
562 | 562 | |
563 | 563 | return $entry; |
@@ -594,8 +594,8 @@ discard block |
||
594 | 594 | */ |
595 | 595 | public function renderZone( $zone = '', $atts = array(), $echo = true ) { |
596 | 596 | |
597 | - if( empty( $zone ) ) { |
|
598 | - do_action('gravityview_log_error', 'GravityView_View[renderZone] No zone defined.'); |
|
597 | + if ( empty( $zone ) ) { |
|
598 | + do_action( 'gravityview_log_error', 'GravityView_View[renderZone] No zone defined.' ); |
|
599 | 599 | return NULL; |
600 | 600 | } |
601 | 601 | |
@@ -604,33 +604,33 @@ discard block |
||
604 | 604 | 'context' => $this->getContext(), |
605 | 605 | 'entry' => $this->getCurrentEntry(), |
606 | 606 | 'form' => $this->getForm(), |
607 | - 'hide_empty' => $this->getAtts('hide_empty'), |
|
607 | + 'hide_empty' => $this->getAtts( 'hide_empty' ), |
|
608 | 608 | ); |
609 | 609 | |
610 | 610 | $final_atts = wp_parse_args( $atts, $defaults ); |
611 | 611 | |
612 | 612 | $output = ''; |
613 | 613 | |
614 | - $final_atts['zone_id'] = "{$final_atts['context']}_{$final_atts['slug']}-{$zone}"; |
|
614 | + $final_atts[ 'zone_id' ] = "{$final_atts[ 'context' ]}_{$final_atts[ 'slug' ]}-{$zone}"; |
|
615 | 615 | |
616 | - $fields = $this->getField( $final_atts['zone_id'] ); |
|
616 | + $fields = $this->getField( $final_atts[ 'zone_id' ] ); |
|
617 | 617 | |
618 | 618 | // Backward compatibility |
619 | - if( 'table' === $this->getTemplatePartSlug() ) { |
|
619 | + if ( 'table' === $this->getTemplatePartSlug() ) { |
|
620 | 620 | /** |
621 | 621 | * Modify the fields displayed in the table |
622 | 622 | * @var array |
623 | 623 | */ |
624 | - $fields = apply_filters("gravityview_table_cells", $fields, $this ); |
|
624 | + $fields = apply_filters( "gravityview_table_cells", $fields, $this ); |
|
625 | 625 | } |
626 | 626 | |
627 | - if( empty( $fields ) ) { |
|
627 | + if ( empty( $fields ) ) { |
|
628 | 628 | return NULL; |
629 | 629 | } |
630 | 630 | |
631 | 631 | $field_output = ''; |
632 | 632 | foreach ( $fields as $field ) { |
633 | - $final_atts['field'] = $field; |
|
633 | + $final_atts[ 'field' ] = $field; |
|
634 | 634 | |
635 | 635 | $field_output .= gravityview_field_output( $final_atts ); |
636 | 636 | } |
@@ -641,21 +641,21 @@ discard block |
||
641 | 641 | * @since 1.7.6 |
642 | 642 | * @param boolean $hide_empty_zone Default: false |
643 | 643 | */ |
644 | - if( empty( $field_output ) && apply_filters( 'gravityview/render/hide-empty-zone', false ) ) { |
|
644 | + if ( empty( $field_output ) && apply_filters( 'gravityview/render/hide-empty-zone', false ) ) { |
|
645 | 645 | return NULL; |
646 | 646 | } |
647 | 647 | |
648 | - if( !empty( $final_atts['wrapper_class'] ) ) { |
|
649 | - $output .= '<div class="'.gravityview_sanitize_html_class( $final_atts['wrapper_class'] ).'">'; |
|
648 | + if ( ! empty( $final_atts[ 'wrapper_class' ] ) ) { |
|
649 | + $output .= '<div class="' . gravityview_sanitize_html_class( $final_atts[ 'wrapper_class' ] ) . '">'; |
|
650 | 650 | } |
651 | 651 | |
652 | 652 | $output .= $field_output; |
653 | 653 | |
654 | - if( !empty( $final_atts['wrapper_class'] ) ) { |
|
654 | + if ( ! empty( $final_atts[ 'wrapper_class' ] ) ) { |
|
655 | 655 | $output .= '</div>'; |
656 | 656 | } |
657 | 657 | |
658 | - if( $echo ) { |
|
658 | + if ( $echo ) { |
|
659 | 659 | echo $output; |
660 | 660 | } |
661 | 661 | |
@@ -673,7 +673,7 @@ discard block |
||
673 | 673 | */ |
674 | 674 | function locate_template( $template_names, $load = false, $require_once = true ) { |
675 | 675 | |
676 | - if( is_string( $template_names ) && isset( $this->located_templates[ $template_names ] ) ) { |
|
676 | + if ( is_string( $template_names ) && isset( $this->located_templates[ $template_names ] ) ) { |
|
677 | 677 | |
678 | 678 | $located = $this->located_templates[ $template_names ]; |
679 | 679 | |
@@ -682,7 +682,7 @@ discard block |
||
682 | 682 | // Set $load to always false so we handle it here. |
683 | 683 | $located = parent::locate_template( $template_names, false, $require_once ); |
684 | 684 | |
685 | - if( is_string( $template_names ) ) { |
|
685 | + if ( is_string( $template_names ) ) { |
|
686 | 686 | $this->located_templates[ $template_names ] = $located; |
687 | 687 | } |
688 | 688 | } |
@@ -700,7 +700,7 @@ discard block |
||
700 | 700 | * @return mixed|null The stored data. |
701 | 701 | */ |
702 | 702 | public function __get( $name ) { |
703 | - if( isset( $this->{$name} ) ) { |
|
703 | + if ( isset( $this->{$name} ) ) { |
|
704 | 704 | return $this->{$name}; |
705 | 705 | } else { |
706 | 706 | return NULL; |
@@ -729,15 +729,15 @@ discard block |
||
729 | 729 | $additional = array(); |
730 | 730 | |
731 | 731 | // form-19-table-body.php |
732 | - $additional[] = sprintf( 'form-%d-%s-%s.php', $this->getFormId(), $slug, $name ); |
|
732 | + $additional[ ] = sprintf( 'form-%d-%s-%s.php', $this->getFormId(), $slug, $name ); |
|
733 | 733 | |
734 | 734 | // view-3-table-body.php |
735 | - $additional[] = sprintf( 'view-%d-%s-%s.php', $this->getViewId(), $slug, $name ); |
|
735 | + $additional[ ] = sprintf( 'view-%d-%s-%s.php', $this->getViewId(), $slug, $name ); |
|
736 | 736 | |
737 | - if( $this->getPostId() ) { |
|
737 | + if ( $this->getPostId() ) { |
|
738 | 738 | |
739 | 739 | // page-19-table-body.php |
740 | - $additional[] = sprintf( 'page-%d-%s-%s.php', $this->getPostId(), $slug, $name ); |
|
740 | + $additional[ ] = sprintf( 'page-%d-%s-%s.php', $this->getPostId(), $slug, $name ); |
|
741 | 741 | } |
742 | 742 | |
743 | 743 | // Combine with existing table-body.php and table.php |
@@ -759,7 +759,7 @@ discard block |
||
759 | 759 | |
760 | 760 | do_action( 'gravityview_log_debug', '[render] Rendering Template File', $template_file ); |
761 | 761 | |
762 | - if( !empty( $template_file) ) { |
|
762 | + if ( ! empty( $template_file ) ) { |
|
763 | 763 | |
764 | 764 | if ( $require_once ) { |
765 | 765 | require_once( $template_file ); |
@@ -776,7 +776,7 @@ discard block |
||
776 | 776 | */ |
777 | 777 | public function render_widget_hooks( $view_id ) { |
778 | 778 | |
779 | - if( empty( $view_id ) || 'single' == gravityview_get_context() ) { |
|
779 | + if ( empty( $view_id ) || 'single' == gravityview_get_context() ) { |
|
780 | 780 | do_action( 'gravityview_log_debug', __METHOD__ . ' - Not rendering widgets; single entry' ); |
781 | 781 | return; |
782 | 782 | } |
@@ -784,9 +784,9 @@ discard block |
||
784 | 784 | $view_data = gravityview_get_current_view_data( $view_id ); |
785 | 785 | |
786 | 786 | // get View widget configuration |
787 | - $widgets = (array)$view_data['widgets']; |
|
787 | + $widgets = (array)$view_data[ 'widgets' ]; |
|
788 | 788 | |
789 | - switch( current_filter() ) { |
|
789 | + switch ( current_filter() ) { |
|
790 | 790 | default: |
791 | 791 | case 'gravityview_before': |
792 | 792 | $zone = 'header'; |
@@ -800,9 +800,9 @@ discard block |
||
800 | 800 | * Filter widgets not in the current zone |
801 | 801 | * @since 1.16 |
802 | 802 | */ |
803 | - foreach( $widgets as $key => $widget ) { |
|
803 | + foreach ( $widgets as $key => $widget ) { |
|
804 | 804 | // The widget isn't in the current zone |
805 | - if( false === strpos( $key, $zone ) ) { |
|
805 | + if ( false === strpos( $key, $zone ) ) { |
|
806 | 806 | unset( $widgets[ $key ] ); |
807 | 807 | } |
808 | 808 | } |
@@ -817,8 +817,8 @@ discard block |
||
817 | 817 | } |
818 | 818 | |
819 | 819 | // Prevent being called twice |
820 | - if( did_action( $zone.'_'.$view_id.'_widgets' ) ) { |
|
821 | - do_action( 'gravityview_log_debug', sprintf( '%s - Not rendering %s; already rendered', __METHOD__ , $zone.'_'.$view_id.'_widgets' ) ); |
|
820 | + if ( did_action( $zone . '_' . $view_id . '_widgets' ) ) { |
|
821 | + do_action( 'gravityview_log_debug', sprintf( '%s - Not rendering %s; already rendered', __METHOD__, $zone . '_' . $view_id . '_widgets' ) ); |
|
822 | 822 | return; |
823 | 823 | } |
824 | 824 | |
@@ -829,7 +829,7 @@ discard block |
||
829 | 829 | |
830 | 830 | $default_css_class = 'gv-grid gv-widgets-' . $zone; |
831 | 831 | |
832 | - if( 0 === GravityView_View::getInstance()->getTotalEntries() ) { |
|
832 | + if ( 0 === GravityView_View::getInstance()->getTotalEntries() ) { |
|
833 | 833 | $default_css_class .= ' gv-widgets-no-results'; |
834 | 834 | } |
835 | 835 | |
@@ -840,7 +840,7 @@ discard block |
||
840 | 840 | * @param string $zone Current widget zone, either `header` or `footer` |
841 | 841 | * @param array $widgets Array of widget configurations for the current zone, as set by `gravityview_get_current_view_data()['widgets']` |
842 | 842 | */ |
843 | - $css_class = apply_filters('gravityview/widgets/wrapper_css_class', $default_css_class, $zone, $widgets ); |
|
843 | + $css_class = apply_filters( 'gravityview/widgets/wrapper_css_class', $default_css_class, $zone, $widgets ); |
|
844 | 844 | |
845 | 845 | $css_class = gravityview_sanitize_html_class( $css_class ); |
846 | 846 | |
@@ -848,17 +848,17 @@ discard block |
||
848 | 848 | ?> |
849 | 849 | <div class="<?php echo $css_class; ?>"> |
850 | 850 | <?php |
851 | - foreach( $rows as $row ) { |
|
852 | - foreach( $row as $col => $areas ) { |
|
853 | - $column = ($col == '2-2') ? '1-2 gv-right' : $col.' gv-left'; |
|
851 | + foreach ( $rows as $row ) { |
|
852 | + foreach ( $row as $col => $areas ) { |
|
853 | + $column = ( $col == '2-2' ) ? '1-2 gv-right' : $col . ' gv-left'; |
|
854 | 854 | ?> |
855 | 855 | <div class="gv-grid-col-<?php echo esc_attr( $column ); ?>"> |
856 | 856 | <?php |
857 | - if( !empty( $areas ) ) { |
|
858 | - foreach( $areas as $area ) { |
|
859 | - if( !empty( $widgets[ $zone .'_'. $area['areaid'] ] ) ) { |
|
860 | - foreach( $widgets[ $zone .'_'. $area['areaid'] ] as $widget ) { |
|
861 | - do_action( "gravityview_render_widget_{$widget['id']}", $widget ); |
|
857 | + if ( ! empty( $areas ) ) { |
|
858 | + foreach ( $areas as $area ) { |
|
859 | + if ( ! empty( $widgets[ $zone . '_' . $area[ 'areaid' ] ] ) ) { |
|
860 | + foreach ( $widgets[ $zone . '_' . $area[ 'areaid' ] ] as $widget ) { |
|
861 | + do_action( "gravityview_render_widget_{$widget[ 'id' ]}", $widget ); |
|
862 | 862 | } |
863 | 863 | } |
864 | 864 | } |
@@ -874,8 +874,8 @@ discard block |
||
874 | 874 | * Prevent widgets from being called twice. |
875 | 875 | * Checking for loop_start prevents themes and plugins that pre-process shortcodes from triggering the action before displaying. Like, ahem, the Divi theme and WordPress SEO plugin |
876 | 876 | */ |
877 | - if( did_action( 'loop_start' ) ) { |
|
878 | - do_action( $zone.'_'.$view_id.'_widgets' ); |
|
877 | + if ( did_action( 'loop_start' ) ) { |
|
878 | + do_action( $zone . '_' . $view_id . '_widgets' ); |
|
879 | 879 | } |
880 | 880 | } |
881 | 881 |
@@ -10,8 +10,8 @@ discard block |
||
10 | 10 | $search_field = $gravityview_view->search_field; |
11 | 11 | |
12 | 12 | // Make sure that there are choices to display |
13 | -if( empty( $search_field['choices'] ) ) { |
|
14 | - do_action('gravityview_log_debug', 'search-field-multiselect.php - No choices for field' ); |
|
13 | +if ( empty( $search_field[ 'choices' ] ) ) { |
|
14 | + do_action( 'gravityview_log_debug', 'search-field-multiselect.php - No choices for field' ); |
|
15 | 15 | return; |
16 | 16 | } |
17 | 17 | |
@@ -21,19 +21,19 @@ discard block |
||
21 | 21 | * @param string $default_option Default: `—` (—) |
22 | 22 | * @param string $field_type Field type: "select" or "multiselect" |
23 | 23 | */ |
24 | -$default_option = apply_filters('gravityview/extension/search/select_default', '—', 'multiselect' ); |
|
24 | +$default_option = apply_filters( 'gravityview/extension/search/select_default', '—', 'multiselect' ); |
|
25 | 25 | |
26 | 26 | ?> |
27 | 27 | <div class="gv-search-box"> |
28 | - <?php if( ! gv_empty( $search_field['label'], false ) ) { ?> |
|
29 | - <label for="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"><?php echo esc_html( $search_field['label'] ); ?></label> |
|
28 | + <?php if ( ! gv_empty( $search_field[ 'label' ], false ) ) { ?> |
|
29 | + <label for="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"><?php echo esc_html( $search_field[ 'label' ] ); ?></label> |
|
30 | 30 | <?php } ?> |
31 | 31 | <p> |
32 | - <select name="<?php echo esc_attr( $search_field['name'] ); ?>[]" id="search-box-<?php echo esc_attr( $search_field['name'] ); ?>" multiple> |
|
33 | - <option value="" <?php gv_selected( '', $search_field['value'], true ); ?>><?php echo esc_html( $default_option ); ?></option> |
|
32 | + <select name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>[]" id="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>" multiple> |
|
33 | + <option value="" <?php gv_selected( '', $search_field[ 'value' ], true ); ?>><?php echo esc_html( $default_option ); ?></option> |
|
34 | 34 | <?php |
35 | - foreach( $search_field['choices'] as $choice ) : ?> |
|
36 | - <option value="<?php echo esc_attr( $choice['value'] ); ?>" <?php gv_selected( $choice['value'], $search_field['value'], true ); ?>><?php echo esc_html( $choice['text'] ); ?></option> |
|
35 | + foreach ( $search_field[ 'choices' ] as $choice ) : ?> |
|
36 | + <option value="<?php echo esc_attr( $choice[ 'value' ] ); ?>" <?php gv_selected( $choice[ 'value' ], $search_field[ 'value' ], true ); ?>><?php echo esc_html( $choice[ 'text' ] ); ?></option> |
|
37 | 37 | <?php endforeach; ?> |
38 | 38 | </select> |
39 | 39 | </p> |