@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | * @return void |
93 | 93 | */ |
94 | 94 | public static function connected_form_warning( $form_id = 0 ) { |
95 | - global $pagenow; |
|
95 | + global $pagenow; |
|
96 | 96 | |
97 | 97 | if ( empty( $form_id ) || $pagenow === 'post-new.php' ) { |
98 | 98 | return; |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | <?php |
120 | 120 | } |
121 | 121 | |
122 | - remove_action( 'gravityview/metaboxes/data-source/before', array( 'GravityView_Admin', 'connected_form_warning' ) ); |
|
122 | + remove_action( 'gravityview/metaboxes/data-source/before', array( 'GravityView_Admin', 'connected_form_warning' ) ); |
|
123 | 123 | } |
124 | 124 | |
125 | 125 | /** |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | 7 => sprintf(__( 'View saved. %sView on website.%s', 'gravityview' ), '<a href="'.get_permalink( $post_id ).'">', '</a>') . $new_form_text, |
242 | 242 | 8 => __( 'View submitted.', 'gravityview' ), |
243 | 243 | 9 => sprintf( |
244 | - /* translators: Date and time the View is scheduled to be published */ |
|
244 | + /* translators: Date and time the View is scheduled to be published */ |
|
245 | 245 | __( 'View scheduled for: %1$s.', 'gravityview' ), |
246 | 246 | // translators: Publish box date format, see http://php.net/date |
247 | 247 | date_i18n( __( 'M j, Y @ G:i', 'gravityview' ), strtotime( ( isset( $post->post_date ) ? $post->post_date : NULL ) ) ) |
@@ -298,7 +298,6 @@ discard block |
||
298 | 298 | * |
299 | 299 | * @deprecated since 1.12 |
300 | 300 | * @see GravityView_Compatibility::get_plugin_status() |
301 | - |
|
302 | 301 | * @return boolean|string True: plugin is active; False: plugin file doesn't exist at path; 'inactive' it's inactive |
303 | 302 | */ |
304 | 303 | static function get_plugin_status( $location = '' ) { |
@@ -4,10 +4,10 @@ discard block |
||
4 | 4 | |
5 | 5 | function __construct() { |
6 | 6 | |
7 | - if( ! is_admin() ) { return; } |
|
7 | + if ( ! is_admin() ) { return; } |
|
8 | 8 | |
9 | 9 | // If Gravity Forms isn't active or compatibile, stop loading |
10 | - if( false === gravityview()->plugin->is_compatible() ) { |
|
10 | + if ( false === gravityview()->plugin->is_compatible() ) { |
|
11 | 11 | return; |
12 | 12 | } |
13 | 13 | |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | add_filter( 'post_updated_messages', array( $this, 'post_updated_messages' ) ); |
49 | 49 | add_filter( 'bulk_post_updated_messages', array( $this, 'post_updated_messages' ) ); |
50 | 50 | |
51 | - add_filter( 'plugin_action_links_'. plugin_basename( GRAVITYVIEW_FILE ) , array( $this, 'plugin_action_links' ) ); |
|
51 | + add_filter( 'plugin_action_links_' . plugin_basename( GRAVITYVIEW_FILE ), array( $this, 'plugin_action_links' ) ); |
|
52 | 52 | |
53 | 53 | add_action( 'plugins_loaded', array( $this, 'backend_actions' ), 100 ); |
54 | 54 | |
@@ -64,9 +64,9 @@ discard block |
||
64 | 64 | */ |
65 | 65 | public static function no_views_text() { |
66 | 66 | |
67 | - if ( isset( $_REQUEST['post_status'] ) && 'trash' === $_REQUEST['post_status'] ) { |
|
67 | + if ( isset( $_REQUEST[ 'post_status' ] ) && 'trash' === $_REQUEST[ 'post_status' ] ) { |
|
68 | 68 | return esc_html__( 'No Views found in Trash', 'gravityview' ); |
69 | - } elseif( ! empty( $_GET['s'] ) ) { |
|
69 | + } elseif ( ! empty( $_GET[ 's' ] ) ) { |
|
70 | 70 | return esc_html__( 'No Views found.', 'gravityview' ); |
71 | 71 | } |
72 | 72 | |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | $error .= ' ' . esc_html__( 'or select another form.', 'gravityview' ); |
111 | 111 | } |
112 | 112 | |
113 | - if( $error ) { |
|
113 | + if ( $error ) { |
|
114 | 114 | ?> |
115 | 115 | <div class="wp-dialog notice-warning inline error wp-clearfix"> |
116 | 116 | <?php echo gravityview_get_floaty(); ?> |
@@ -130,24 +130,24 @@ discard block |
||
130 | 130 | public function backend_actions() { |
131 | 131 | |
132 | 132 | /** @define "GRAVITYVIEW_DIR" "../" */ |
133 | - include_once( GRAVITYVIEW_DIR .'includes/admin/class.field.type.php' ); |
|
134 | - include_once( GRAVITYVIEW_DIR .'includes/admin/class.render.settings.php' ); |
|
135 | - include_once( GRAVITYVIEW_DIR .'includes/admin/class-gravityview-admin-view-item.php' ); |
|
136 | - include_once( GRAVITYVIEW_DIR .'includes/admin/class-gravityview-admin-view-field.php' ); |
|
137 | - include_once( GRAVITYVIEW_DIR .'includes/admin/class-gravityview-admin-view-widget.php' ); |
|
138 | - include_once( GRAVITYVIEW_DIR .'includes/class-admin-views.php' ); |
|
139 | - include_once( GRAVITYVIEW_DIR .'includes/class-admin-welcome.php' ); |
|
140 | - include_once( GRAVITYVIEW_DIR .'includes/class-admin-installer.php' ); |
|
141 | - include_once( GRAVITYVIEW_DIR .'includes/class-admin-add-shortcode.php' ); |
|
142 | - include_once( GRAVITYVIEW_DIR .'includes/class-admin-approve-entries.php' ); |
|
143 | - include_once( GRAVITYVIEW_DIR .'includes/class-gravityview-bulk-actions.php' ); |
|
133 | + include_once( GRAVITYVIEW_DIR . 'includes/admin/class.field.type.php' ); |
|
134 | + include_once( GRAVITYVIEW_DIR . 'includes/admin/class.render.settings.php' ); |
|
135 | + include_once( GRAVITYVIEW_DIR . 'includes/admin/class-gravityview-admin-view-item.php' ); |
|
136 | + include_once( GRAVITYVIEW_DIR . 'includes/admin/class-gravityview-admin-view-field.php' ); |
|
137 | + include_once( GRAVITYVIEW_DIR . 'includes/admin/class-gravityview-admin-view-widget.php' ); |
|
138 | + include_once( GRAVITYVIEW_DIR . 'includes/class-admin-views.php' ); |
|
139 | + include_once( GRAVITYVIEW_DIR . 'includes/class-admin-welcome.php' ); |
|
140 | + include_once( GRAVITYVIEW_DIR . 'includes/class-admin-installer.php' ); |
|
141 | + include_once( GRAVITYVIEW_DIR . 'includes/class-admin-add-shortcode.php' ); |
|
142 | + include_once( GRAVITYVIEW_DIR . 'includes/class-admin-approve-entries.php' ); |
|
143 | + include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-bulk-actions.php' ); |
|
144 | 144 | |
145 | 145 | /** |
146 | 146 | * @action `gravityview_include_backend_actions` Triggered after all GravityView admin files are loaded |
147 | 147 | * |
148 | 148 | * Nice place to insert extensions' backend stuff |
149 | 149 | */ |
150 | - do_action('gravityview_include_backend_actions'); |
|
150 | + do_action( 'gravityview_include_backend_actions' ); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | /** |
@@ -162,12 +162,12 @@ discard block |
||
162 | 162 | |
163 | 163 | $actions = array(); |
164 | 164 | |
165 | - if( GVCommon::has_cap( 'gravityview_view_settings' ) ) { |
|
166 | - $actions[] = sprintf( '<a href="%s">%s</a>', admin_url( 'edit.php?post_type=gravityview&page=gravityview_settings' ), esc_html__( 'Settings', 'gravityview' ) ); |
|
165 | + if ( GVCommon::has_cap( 'gravityview_view_settings' ) ) { |
|
166 | + $actions[ ] = sprintf( '<a href="%s">%s</a>', admin_url( 'edit.php?post_type=gravityview&page=gravityview_settings' ), esc_html__( 'Settings', 'gravityview' ) ); |
|
167 | 167 | } |
168 | 168 | |
169 | - if( GVCommon::has_cap( 'gravityview_support_port' ) ) { |
|
170 | - $actions[] = '<a href="https://docs.gravityview.co">' . esc_html__( 'Support', 'gravityview' ) . '</a>'; |
|
169 | + if ( GVCommon::has_cap( 'gravityview_support_port' ) ) { |
|
170 | + $actions[ ] = '<a href="https://docs.gravityview.co">' . esc_html__( 'Support', 'gravityview' ) . '</a>'; |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | return array_merge( $actions, $links ); |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | // By default, there will only be one item being modified. |
196 | 196 | // When in the `bulk_post_updated_messages` filter, there will be passed a number |
197 | 197 | // of modified items that will override this array. |
198 | - $bulk_counts = is_null( $bulk_counts ) ? array( 'updated' => 1 , 'locked' => 1 , 'deleted' => 1 , 'trashed' => 1, 'untrashed' => 1 ) : $bulk_counts; |
|
198 | + $bulk_counts = is_null( $bulk_counts ) ? array( 'updated' => 1, 'locked' => 1, 'deleted' => 1, 'trashed' => 1, 'untrashed' => 1 ) : $bulk_counts; |
|
199 | 199 | |
200 | 200 | // If we're starting fresh, a new form was created. |
201 | 201 | // We should let the user know this is the case. |
@@ -203,60 +203,60 @@ discard block |
||
203 | 203 | |
204 | 204 | $new_form_text = ''; |
205 | 205 | |
206 | - if( !empty( $start_fresh ) ) { |
|
206 | + if ( ! empty( $start_fresh ) ) { |
|
207 | 207 | |
208 | 208 | // Get the form that was created |
209 | 209 | $connected_form = gravityview_get_form_id( $post_id ); |
210 | 210 | |
211 | - if( !empty( $connected_form ) ) { |
|
211 | + if ( ! empty( $connected_form ) ) { |
|
212 | 212 | $form = gravityview_get_form( $connected_form ); |
213 | - $form_name = esc_attr( $form['title'] ); |
|
213 | + $form_name = esc_attr( $form[ 'title' ] ); |
|
214 | 214 | $image = self::get_floaty(); |
215 | - $new_form_text .= '<h3>'.$image.sprintf( __( 'A new form was created for this View: "%s"', 'gravityview' ), $form_name ).'</h3>'; |
|
216 | - $new_form_text .= sprintf( __( '%sThere are no entries for the new form, so the View will also be empty.%s To start collecting entries, you can add submissions through %sthe preview form%s and also embed the form on a post or page using this code: %s |
|
215 | + $new_form_text .= '<h3>' . $image . sprintf( __( 'A new form was created for this View: "%s"', 'gravityview' ), $form_name ) . '</h3>'; |
|
216 | + $new_form_text .= sprintf( __( '%sThere are no entries for the new form, so the View will also be empty.%s To start collecting entries, you can add submissions through %sthe preview form%s and also embed the form on a post or page using this code: %s |
|
217 | 217 | |
218 | 218 | You can %sedit the form%s in Gravity Forms and the updated fields will be available here. Don’t forget to %scustomize the form settings%s. |
219 | - ', 'gravityview' ), '<strong>', '</strong>', '<a href="'.site_url( '?gf_page=preview&id='.$connected_form ).'">', '</a>', '<code>[gravityform id="'.$connected_form.'" name="'.$form_name.'"]</code>', '<a href="'.admin_url( 'admin.php?page=gf_edit_forms&id='.$connected_form ).'">', '</a>', '<a href="'.admin_url( 'admin.php?page=gf_edit_forms&view=settings&id='.$connected_form ).'">', '</a>'); |
|
219 | + ', 'gravityview' ), '<strong>', '</strong>', '<a href="' . site_url( '?gf_page=preview&id=' . $connected_form ) . '">', '</a>', '<code>[gravityform id="' . $connected_form . '" name="' . $form_name . '"]</code>', '<a href="' . admin_url( 'admin.php?page=gf_edit_forms&id=' . $connected_form ) . '">', '</a>', '<a href="' . admin_url( 'admin.php?page=gf_edit_forms&view=settings&id=' . $connected_form ) . '">', '</a>' ); |
|
220 | 220 | $new_form_text = wpautop( $new_form_text ); |
221 | 221 | |
222 | 222 | delete_post_meta( $post_id, '_gravityview_start_fresh' ); |
223 | 223 | } |
224 | 224 | } |
225 | 225 | |
226 | - $messages['gravityview'] = array( |
|
226 | + $messages[ 'gravityview' ] = array( |
|
227 | 227 | 0 => '', // Unused. Messages start at index 1. |
228 | 228 | /* translators: %s and %s are HTML tags linking to the View on the website */ |
229 | - 1 => sprintf(__( 'View updated. %sView on website.%s', 'gravityview' ), '<a href="'.get_permalink( $post_id ).'">', '</a>'), |
|
229 | + 1 => sprintf( __( 'View updated. %sView on website.%s', 'gravityview' ), '<a href="' . get_permalink( $post_id ) . '">', '</a>' ), |
|
230 | 230 | /* translators: %s and %s are HTML tags linking to the View on the website */ |
231 | - 2 => sprintf(__( 'View updated. %sView on website.%s', 'gravityview' ), '<a href="'.get_permalink( $post_id ).'">', '</a>'), |
|
231 | + 2 => sprintf( __( 'View updated. %sView on website.%s', 'gravityview' ), '<a href="' . get_permalink( $post_id ) . '">', '</a>' ), |
|
232 | 232 | 3 => __( 'View deleted.', 'gravityview' ), |
233 | 233 | /* translators: %s and %s are HTML tags linking to the View on the website */ |
234 | - 4 => sprintf(__( 'View updated. %sView on website.%s', 'gravityview' ), '<a href="'.get_permalink( $post_id ).'">', '</a>'), |
|
234 | + 4 => sprintf( __( 'View updated. %sView on website.%s', 'gravityview' ), '<a href="' . get_permalink( $post_id ) . '">', '</a>' ), |
|
235 | 235 | /* translators: %s: date and time of the revision */ |
236 | - 5 => isset( $_GET['revision'] ) ? sprintf( __( 'View restored to revision from %s', 'gravityview' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, |
|
236 | + 5 => isset( $_GET[ 'revision' ] ) ? sprintf( __( 'View restored to revision from %s', 'gravityview' ), wp_post_revision_title( (int)$_GET[ 'revision' ], false ) ) : false, |
|
237 | 237 | /* translators: %s and %s are HTML tags linking to the View on the website */ |
238 | - 6 => sprintf(__( 'View published. %sView on website.%s', 'gravityview' ), '<a href="'.get_permalink( $post_id ).'">', '</a>') . $new_form_text, |
|
238 | + 6 => sprintf( __( 'View published. %sView on website.%s', 'gravityview' ), '<a href="' . get_permalink( $post_id ) . '">', '</a>' ) . $new_form_text, |
|
239 | 239 | /* translators: %s and %s are HTML tags linking to the View on the website */ |
240 | - 7 => sprintf(__( 'View saved. %sView on website.%s', 'gravityview' ), '<a href="'.get_permalink( $post_id ).'">', '</a>') . $new_form_text, |
|
240 | + 7 => sprintf( __( 'View saved. %sView on website.%s', 'gravityview' ), '<a href="' . get_permalink( $post_id ) . '">', '</a>' ) . $new_form_text, |
|
241 | 241 | 8 => __( 'View submitted.', 'gravityview' ), |
242 | 242 | 9 => sprintf( |
243 | 243 | /* translators: Date and time the View is scheduled to be published */ |
244 | 244 | __( 'View scheduled for: %1$s.', 'gravityview' ), |
245 | 245 | // translators: Publish box date format, see http://php.net/date |
246 | - date_i18n( __( 'M j, Y @ G:i', 'gravityview' ), strtotime( ( isset( $post->post_date ) ? $post->post_date : NULL ) ) ) |
|
246 | + date_i18n( __( 'M j, Y @ G:i', 'gravityview' ), strtotime( ( isset( $post->post_date ) ? $post->post_date : NULL ) ) ) |
|
247 | 247 | ) . $new_form_text, |
248 | 248 | /* translators: %s and %s are HTML tags linking to the View on the website */ |
249 | - 10 => sprintf(__( 'View draft updated. %sView on website.%s', 'gravityview' ), '<a href="'.get_permalink( $post_id ).'">', '</a>') . $new_form_text, |
|
249 | + 10 => sprintf( __( 'View draft updated. %sView on website.%s', 'gravityview' ), '<a href="' . get_permalink( $post_id ) . '">', '</a>' ) . $new_form_text, |
|
250 | 250 | |
251 | 251 | /** |
252 | 252 | * These apply to `bulk_post_updated_messages` |
253 | 253 | * @file wp-admin/edit.php |
254 | 254 | */ |
255 | - 'updated' => _n( '%s View updated.', '%s Views updated.', $bulk_counts['updated'], 'gravityview' ), |
|
256 | - 'locked' => _n( '%s View not updated, somebody is editing it.', '%s Views not updated, somebody is editing them.', $bulk_counts['locked'], 'gravityview' ), |
|
257 | - 'deleted' => _n( '%s View permanently deleted.', '%s Views permanently deleted.', $bulk_counts['deleted'], 'gravityview' ), |
|
258 | - 'trashed' => _n( '%s View moved to the Trash.', '%s Views moved to the Trash.', $bulk_counts['trashed'], 'gravityview' ), |
|
259 | - 'untrashed' => _n( '%s View restored from the Trash.', '%s Views restored from the Trash.', $bulk_counts['untrashed'], 'gravityview' ), |
|
255 | + 'updated' => _n( '%s View updated.', '%s Views updated.', $bulk_counts[ 'updated' ], 'gravityview' ), |
|
256 | + 'locked' => _n( '%s View not updated, somebody is editing it.', '%s Views not updated, somebody is editing them.', $bulk_counts[ 'locked' ], 'gravityview' ), |
|
257 | + 'deleted' => _n( '%s View permanently deleted.', '%s Views permanently deleted.', $bulk_counts[ 'deleted' ], 'gravityview' ), |
|
258 | + 'trashed' => _n( '%s View moved to the Trash.', '%s Views moved to the Trash.', $bulk_counts[ 'trashed' ], 'gravityview' ), |
|
259 | + 'untrashed' => _n( '%s View restored from the Trash.', '%s Views restored from the Trash.', $bulk_counts[ 'untrashed' ], 'gravityview' ), |
|
260 | 260 | ); |
261 | 261 | |
262 | 262 | return $messages; |
@@ -104,11 +104,11 @@ discard block |
||
104 | 104 | |
105 | 105 | /** Call all lazy callbacks. */ |
106 | 106 | foreach ( $this->callbacks as $callback ) { |
107 | - if ( $callback[0] != 'count' ) { |
|
107 | + if ( $callback[ 0 ] != 'count' ) { |
|
108 | 108 | continue; |
109 | 109 | } |
110 | 110 | |
111 | - $total += $callback[1]( $this->filters ); |
|
111 | + $total += $callback[ 1 ]( $this->filters ); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | if ( ! $total ) { |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | |
149 | 149 | foreach ( $this->all() as $entry ) { |
150 | 150 | $entry = $entry->as_entry(); |
151 | - $result[] = Utils::get( $entry, $key, null ); |
|
151 | + $result[ ] = Utils::get( $entry, $key, null ); |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | return $result; |
@@ -206,11 +206,11 @@ discard block |
||
206 | 206 | |
207 | 207 | /** Call all lazy callbacks. */ |
208 | 208 | foreach ( $this->callbacks as $i => $callback ) { |
209 | - if ( $callback[0] != 'fetch' ) { |
|
209 | + if ( $callback[ 0 ] != 'fetch' ) { |
|
210 | 210 | continue; |
211 | 211 | } |
212 | 212 | |
213 | - $this->merge( $callback[1]( $this->filters, $this->sorts, $offset ) ); |
|
213 | + $this->merge( $callback[ 1 ]( $this->filters, $this->sorts, $offset ) ); |
|
214 | 214 | } |
215 | 215 | |
216 | 216 | $this->fetched = parent::count(); |
@@ -366,7 +366,7 @@ discard block |
||
366 | 366 | return; |
367 | 367 | } |
368 | 368 | |
369 | - $this->callbacks []= array( $type, $callback ); |
|
369 | + $this->callbacks [ ] = array( $type, $callback ); |
|
370 | 370 | } |
371 | 371 | |
372 | 372 | /** |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | |
77 | 77 | /** |
78 | 78 | * Render the page size widget |
79 | - * |
|
79 | + * |
|
80 | 80 | * @param array $widget_args The Widget shortcode args. |
81 | 81 | * @param string $content The content. |
82 | 82 | * @param string|\GV\Template_Context $context The context, if available. |
@@ -117,10 +117,10 @@ discard block |
||
117 | 117 | <?php } ?> |
118 | 118 | </select> |
119 | 119 | <input type="submit" value="Submit" style="visibility: hidden; position: absolute;" /><?php |
120 | - if( ! empty( $_GET ) ) { |
|
121 | - $get = $_GET; |
|
122 | - unset( $get['page_size'] ); |
|
123 | - foreach ( $get as $key => $value ) { |
|
120 | + if( ! empty( $_GET ) ) { |
|
121 | + $get = $_GET; |
|
122 | + unset( $get['page_size'] ); |
|
123 | + foreach ( $get as $key => $value ) { |
|
124 | 124 | if ( is_array( $value ) ) { |
125 | 125 | foreach ( $value as $_key => $_value ) { |
126 | 126 | printf( '<input type="hidden" name="%s[%s]" value="%s" />', esc_attr( $key ), esc_attr( $_key ), esc_attr( $_value ) ); |
@@ -128,9 +128,9 @@ discard block |
||
128 | 128 | } else { |
129 | 129 | printf( '<input type="hidden" name="%s" value="%s" />', esc_attr( $key ), esc_attr( $value ) ); |
130 | 130 | } |
131 | - } |
|
132 | - } |
|
133 | - ?> |
|
131 | + } |
|
132 | + } |
|
133 | + ?> |
|
134 | 134 | </div> |
135 | 135 | </form> |
136 | 136 | </div> |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | $default_size = 25; |
48 | 48 | |
49 | 49 | if ( $context instanceof \GV\Template_Context ) { |
50 | - $default_size = (int) $context->view->settings->get( 'page_size' ); |
|
50 | + $default_size = (int)$context->view->settings->get( 'page_size' ); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | $sizes = array( 10, 25, $default_size, 50, 100 ); |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | |
59 | 59 | $page_sizes = array(); |
60 | 60 | foreach ( $sizes as $size ) { |
61 | - $page_sizes [] = array( |
|
61 | + $page_sizes [ ] = array( |
|
62 | 62 | 'value' => $size, |
63 | 63 | 'text' => $size |
64 | 64 | ); |
@@ -83,11 +83,11 @@ discard block |
||
83 | 83 | */ |
84 | 84 | public function render_frontend( $widget_args, $content = '', $context = null ) { |
85 | 85 | |
86 | - if( ! $this->pre_render_frontend() ) { |
|
86 | + if ( ! $this->pre_render_frontend() ) { |
|
87 | 87 | return; |
88 | 88 | } |
89 | 89 | |
90 | - $page_size = (int) \GV\Utils::_GET( 'page_size', $context->view->settings->get( 'page_size' ) ); |
|
90 | + $page_size = (int)\GV\Utils::_GET( 'page_size', $context->view->settings->get( 'page_size' ) ); |
|
91 | 91 | |
92 | 92 | $settings = shortcode_atts( array( |
93 | 93 | 'label' => __( 'Page Size', 'gravityview' ), |
@@ -106,20 +106,20 @@ discard block |
||
106 | 106 | <div class="gv-widget-page-size"> |
107 | 107 | <form method="get" action="<?php echo esc_url( add_query_arg( array() ) ); ?>" onchange="this.submit();"> |
108 | 108 | <div> |
109 | - <?php if( ! empty( $settings['label'] ) ) { ?> |
|
110 | - <label for="gv-page_size"><?php echo esc_html( $settings['label'] ); ?></label> |
|
109 | + <?php if ( ! empty( $settings[ 'label' ] ) ) { ?> |
|
110 | + <label for="gv-page_size"><?php echo esc_html( $settings[ 'label' ] ); ?></label> |
|
111 | 111 | <?php } ?> |
112 | 112 | <select name="page_size" id="gv-page_size"> |
113 | - <option value=""><?php echo esc_html( $settings['default_choice_text'] ); ?></option> |
|
113 | + <option value=""><?php echo esc_html( $settings[ 'default_choice_text' ] ); ?></option> |
|
114 | 114 | <?php |
115 | - foreach ( $settings['choices'] as $choice ) { ?> |
|
116 | - <option value='<?php echo esc_attr( $choice['value'] ); ?>'<?php gv_selected( esc_attr( $choice['value'] ), esc_attr( $page_size ), true ); ?>><?php echo esc_html( $choice['text'] ); ?></option> |
|
115 | + foreach ( $settings[ 'choices' ] as $choice ) { ?> |
|
116 | + <option value='<?php echo esc_attr( $choice[ 'value' ] ); ?>'<?php gv_selected( esc_attr( $choice[ 'value' ] ), esc_attr( $page_size ), true ); ?>><?php echo esc_html( $choice[ 'text' ] ); ?></option> |
|
117 | 117 | <?php } ?> |
118 | 118 | </select> |
119 | 119 | <input type="submit" value="Submit" style="visibility: hidden; position: absolute;" /><?php |
120 | - if( ! empty( $_GET ) ) { |
|
120 | + if ( ! empty( $_GET ) ) { |
|
121 | 121 | $get = $_GET; |
122 | - unset( $get['page_size'] ); |
|
122 | + unset( $get[ 'page_size' ] ); |
|
123 | 123 | foreach ( $get as $key => $value ) { |
124 | 124 | if ( is_array( $value ) ) { |
125 | 125 | foreach ( $value as $_key => $_value ) { |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | } |
159 | 159 | |
160 | 160 | // Already overridden |
161 | - if ( (int) $page_size === (int) $view->settings->get( 'page_size' ) ) { |
|
161 | + if ( (int)$page_size === (int)$view->settings->get( 'page_size' ) ) { |
|
162 | 162 | return; |
163 | 163 | } |
164 | 164 | |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | 'view' => $view, |
167 | 167 | ) ); |
168 | 168 | |
169 | - if ( ! in_array( (int) $page_size, wp_list_pluck( self::get_page_sizes( $context ), 'value' ), true ) ) { |
|
169 | + if ( ! in_array( (int)$page_size, wp_list_pluck( self::get_page_sizes( $context ), 'value' ), true ) ) { |
|
170 | 170 | gravityview()->log->warning( 'The passed page size is not allowed: {page_size}. Not modifying result.', array( 'page_size' => $page_size ) ); |
171 | 171 | return; |
172 | 172 | } |
@@ -24,13 +24,13 @@ discard block |
||
24 | 24 | |
25 | 25 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
26 | 26 | |
27 | - unset( $field_options['show_as_link'] ); |
|
27 | + unset( $field_options[ 'show_as_link' ] ); |
|
28 | 28 | |
29 | - if( 'edit' === $context ) { |
|
29 | + if ( 'edit' === $context ) { |
|
30 | 30 | return $field_options; |
31 | 31 | } |
32 | 32 | |
33 | - $this->add_field_support('dynamic_data', $field_options ); |
|
33 | + $this->add_field_support( 'dynamic_data', $field_options ); |
|
34 | 34 | |
35 | 35 | return $field_options; |
36 | 36 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public function get_field_input( $form, $value = '', $entry = null, GF_Field_Post_Content $field ) { |
48 | 48 | |
49 | - $id = (int) $field->id; |
|
49 | + $id = (int)$field->id; |
|
50 | 50 | $input_name = "input_{$id}"; |
51 | 51 | $class = esc_attr( $field->size ); |
52 | 52 | $tabindex = $field->get_tabindex(); |
@@ -24,13 +24,13 @@ |
||
24 | 24 | |
25 | 25 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
26 | 26 | |
27 | - unset( $field_options['show_as_link'] ); |
|
27 | + unset( $field_options[ 'show_as_link' ] ); |
|
28 | 28 | |
29 | - if( 'edit' === $context ) { |
|
29 | + if ( 'edit' === $context ) { |
|
30 | 30 | return $field_options; |
31 | 31 | } |
32 | 32 | |
33 | - $this->add_field_support('dynamic_data', $field_options ); |
|
33 | + $this->add_field_support( 'dynamic_data', $field_options ); |
|
34 | 34 | |
35 | 35 | return $field_options; |
36 | 36 | } |
@@ -23,16 +23,16 @@ discard block |
||
23 | 23 | |
24 | 24 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
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 | } |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | $url = $title = $caption = $description = ''; |
60 | 60 | |
61 | 61 | // If there's a |:| match, process. Otherwise, empty array! |
62 | - if( preg_match( '/\|\:\|/', $value ) ) { |
|
62 | + if ( preg_match( '/\|\:\|/', $value ) ) { |
|
63 | 63 | list( $url, $title, $caption, $description ) = array_pad( explode( '|:|', $value ), 4, false ); |
64 | 64 | } |
65 | 65 | |
@@ -88,8 +88,8 @@ discard block |
||
88 | 88 | */ |
89 | 89 | public function get_field_input( $form, $value = '', $entry = null, GF_Field_Post_Image $field ) { |
90 | 90 | |
91 | - $id = (int) $field->id; |
|
92 | - $form_id = $form['id']; |
|
91 | + $id = (int)$field->id; |
|
92 | + $form_id = $form[ 'id' ]; |
|
93 | 93 | $input_name = "input_{$id}"; |
94 | 94 | $field_id = sprintf( 'input_%d_%d', $form_id, $id ); |
95 | 95 | $img_name = null; |
@@ -97,16 +97,16 @@ discard block |
||
97 | 97 | // Convert |:| to associative array |
98 | 98 | $img_array = self::explode_value( $value ); |
99 | 99 | |
100 | - if( ! empty( $img_array['url'] ) ) { |
|
100 | + if ( ! empty( $img_array[ 'url' ] ) ) { |
|
101 | 101 | |
102 | - $img_name = basename( $img_array['url'] ); |
|
102 | + $img_name = basename( $img_array[ 'url' ] ); |
|
103 | 103 | |
104 | 104 | /** |
105 | 105 | * Set the $uploaded_files value so that the .ginput_preview renders, and the file upload is hidden |
106 | 106 | * @see GF_Field_Post_Image::get_field_input See the `<span class='ginput_preview'>` code |
107 | 107 | * @see GFFormsModel::get_temp_filename See the `rgget( $input_name, self::$uploaded_files[ $form_id ] );` code |
108 | 108 | */ |
109 | - if( empty( GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] ) ) { |
|
109 | + if ( empty( GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] ) ) { |
|
110 | 110 | GFFormsModel::$uploaded_files[ $form_id ][ $input_name ] = $img_name; |
111 | 111 | } |
112 | 112 | } |
@@ -135,8 +135,8 @@ discard block |
||
135 | 135 | * @hack |
136 | 136 | */ |
137 | 137 | if ( null !== $img_name ) { |
138 | - $current_file = sprintf( "<input name='%s' id='%s' type='hidden' value='%s' />", $input_name, $field_id, esc_url_raw( $img_array['url'] ) ); |
|
139 | - $gf_post_image_field_output = str_replace('<span class=\'ginput_preview\'>', '<span class=\'ginput_preview\'>'.$current_file, $gf_post_image_field_output ); |
|
138 | + $current_file = sprintf( "<input name='%s' id='%s' type='hidden' value='%s' />", $input_name, $field_id, esc_url_raw( $img_array[ 'url' ] ) ); |
|
139 | + $gf_post_image_field_output = str_replace( '<span class=\'ginput_preview\'>', '<span class=\'ginput_preview\'>' . $current_file, $gf_post_image_field_output ); |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | return $gf_post_image_field_output; |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | |
23 | 23 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
24 | 24 | |
25 | - if( 'edit' === $context ) { |
|
25 | + if ( 'edit' === $context ) { |
|
26 | 26 | return $field_options; |
27 | 27 | } |
28 | 28 | |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | 'quiz_use_max_score' => array( |
31 | 31 | 'type' => 'checkbox', |
32 | 32 | 'label' => __( 'Show Max Score?', 'gravityview' ), |
33 | - 'desc' => __('Display score as the a fraction: "[score]/[max score]". If unchecked, will display score.', 'gravityview'), |
|
33 | + 'desc' => __( 'Display score as the a fraction: "[score]/[max score]". If unchecked, will display score.', 'gravityview' ), |
|
34 | 34 | 'value' => true, |
35 | 35 | 'merge_tags' => false, |
36 | 36 | ), |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | */ |
96 | 96 | function add_default_field( $entry_default_fields, $form, $zone ) { |
97 | 97 | |
98 | - if( 'edit' !== $zone ) { |
|
98 | + if ( 'edit' !== $zone ) { |
|
99 | 99 | $entry_default_fields[ $this->name ] = array( |
100 | 100 | 'label' => $this->label, |
101 | 101 | 'desc' => $this->description, |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | |
121 | 121 | $merge_tags = array( |
122 | 122 | array( |
123 | - 'label' => __('Approval Status', 'gravityview'), |
|
123 | + 'label' => __( 'Approval Status', 'gravityview' ), |
|
124 | 124 | 'tag' => '{approval_status}' |
125 | 125 | ), |
126 | 126 | ); |
@@ -160,10 +160,10 @@ discard block |
||
160 | 160 | gravityview()->log->error( 'No entry data available. Returning empty string.' ); |
161 | 161 | $replacement = ''; |
162 | 162 | } else { |
163 | - $replacement = GravityView_Entry_Approval::get_entry_status( $entry, $match[1] ); |
|
163 | + $replacement = GravityView_Entry_Approval::get_entry_status( $entry, $match[ 1 ] ); |
|
164 | 164 | } |
165 | 165 | |
166 | - $return = str_replace( $match[0], $replacement, $return ); |
|
166 | + $return = str_replace( $match[ 0 ], $replacement, $return ); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | return $return; |
@@ -171,25 +171,25 @@ discard block |
||
171 | 171 | |
172 | 172 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
173 | 173 | |
174 | - $field_options['approved_label'] = array( |
|
174 | + $field_options[ 'approved_label' ] = array( |
|
175 | 175 | 'type' => 'text', |
176 | 176 | 'label' => __( 'Approved Label', 'gravityview' ), |
177 | 177 | 'desc' => __( 'If the entry is approved, display this value', 'gravityview' ), |
178 | - 'placeholder' => GravityView_Entry_Approval_Status::get_label('approved'), |
|
178 | + 'placeholder' => GravityView_Entry_Approval_Status::get_label( 'approved' ), |
|
179 | 179 | ); |
180 | 180 | |
181 | - $field_options['disapproved_label'] = array( |
|
181 | + $field_options[ 'disapproved_label' ] = array( |
|
182 | 182 | 'type' => 'text', |
183 | 183 | 'label' => __( 'Disapproved Label', 'gravityview' ), |
184 | 184 | 'desc' => __( 'If the entry is not approved, display this value', 'gravityview' ), |
185 | - 'placeholder' => GravityView_Entry_Approval_Status::get_label('disapproved'), |
|
185 | + 'placeholder' => GravityView_Entry_Approval_Status::get_label( 'disapproved' ), |
|
186 | 186 | ); |
187 | 187 | |
188 | - $field_options['unapproved_label'] = array( |
|
188 | + $field_options[ 'unapproved_label' ] = array( |
|
189 | 189 | 'type' => 'text', |
190 | 190 | 'label' => __( 'Unapproved Label', 'gravityview' ), |
191 | 191 | 'desc' => __( 'If the entry has not yet been approved or disapproved, display this value', 'gravityview' ), |
192 | - 'placeholder' => GravityView_Entry_Approval_Status::get_label('unapproved'), |
|
192 | + 'placeholder' => GravityView_Entry_Approval_Status::get_label( 'unapproved' ), |
|
193 | 193 | ); |
194 | 194 | |
195 | 195 | return $field_options; |
@@ -28,13 +28,13 @@ |
||
28 | 28 | |
29 | 29 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
30 | 30 | |
31 | - if( 'edit' === $context ) { |
|
31 | + if ( 'edit' === $context ) { |
|
32 | 32 | return $field_options; |
33 | 33 | } |
34 | 34 | |
35 | - $this->add_field_support('link_to_post', $field_options ); |
|
35 | + $this->add_field_support( 'link_to_post', $field_options ); |
|
36 | 36 | |
37 | - $this->add_field_support('dynamic_data', $field_options ); |
|
37 | + $this->add_field_support( 'dynamic_data', $field_options ); |
|
38 | 38 | |
39 | 39 | return $field_options; |
40 | 40 | } |