@@ -52,9 +52,9 @@ discard block |
||
52 | 52 | * @since 1.11 |
53 | 53 | * @param boolean $boolean Whether to trigger update on user registration (default: true) |
54 | 54 | */ |
55 | - if( apply_filters( 'gravityview/edit_entry/user_registration/trigger_update', true ) ) { |
|
55 | + if ( apply_filters( 'gravityview/edit_entry/user_registration/trigger_update', true ) ) { |
|
56 | 56 | |
57 | - add_action( 'gravityview/edit_entry/after_update' , array( $this, 'update_user' ), 10, 2 ); |
|
57 | + add_action( 'gravityview/edit_entry/after_update', array( $this, 'update_user' ), 10, 2 ); |
|
58 | 58 | |
59 | 59 | // last resort in case the current user display name don't match any of the defaults |
60 | 60 | add_action( 'gform_user_updated', array( $this, 'restore_display_name' ), 10, 4 ); |
@@ -72,10 +72,10 @@ discard block |
||
72 | 72 | */ |
73 | 73 | public function update_user( $form = array(), $entry_id = 0 ) { |
74 | 74 | |
75 | - if( ! class_exists( 'GFAPI' ) || ! class_exists( 'GF_User_Registration' ) ) { |
|
75 | + if ( ! class_exists( 'GFAPI' ) || ! class_exists( 'GF_User_Registration' ) ) { |
|
76 | 76 | do_action( 'gravityview_log_error', __METHOD__ . ': GFAPI or User Registration class not found; not updating the user' ); |
77 | 77 | return; |
78 | - } elseif( empty( $entry_id ) ) { |
|
78 | + } elseif ( empty( $entry_id ) ) { |
|
79 | 79 | do_action( 'gravityview_log_error', __METHOD__ . ': Entry ID is empty; not updating the user', $entry_id ); |
80 | 80 | return; |
81 | 81 | } |
@@ -101,8 +101,8 @@ discard block |
||
101 | 101 | } |
102 | 102 | |
103 | 103 | // If an Update feed, make sure the conditions are met. |
104 | - if( rgars( $config, 'meta/feedType' ) === 'update' ) { |
|
105 | - if( ! $gf_user_registration->is_feed_condition_met( $config, $form, $entry ) ) { |
|
104 | + if ( rgars( $config, 'meta/feedType' ) === 'update' ) { |
|
105 | + if ( ! $gf_user_registration->is_feed_condition_met( $config, $form, $entry ) ) { |
|
106 | 106 | return; |
107 | 107 | } |
108 | 108 | } |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | remove_filter( 'send_email_change_email', '__return_false', 3 ); |
119 | 119 | |
120 | 120 | // Prevent double-triggering by removing the hook |
121 | - remove_action( 'gravityview/edit_entry/after_update' , array( $this, 'update_user' ), 10 ); |
|
121 | + remove_action( 'gravityview/edit_entry/after_update', array( $this, 'update_user' ), 10 ); |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | /** |
@@ -151,17 +151,17 @@ discard block |
||
151 | 151 | */ |
152 | 152 | $preserve_role = apply_filters( 'gravityview/edit_entry/user_registration/preserve_role', true, $config, $form, $entry ); |
153 | 153 | |
154 | - if( $preserve_role ) { |
|
155 | - $config['meta']['role'] = 'gfur_preserve_role'; |
|
154 | + if ( $preserve_role ) { |
|
155 | + $config[ 'meta' ][ 'role' ] = 'gfur_preserve_role'; |
|
156 | 156 | } |
157 | 157 | |
158 | - $displayname = $this->match_current_display_name( $entry['created_by'] ); |
|
158 | + $displayname = $this->match_current_display_name( $entry[ 'created_by' ] ); |
|
159 | 159 | |
160 | 160 | /** |
161 | 161 | * Make sure the current display name is not changed with the update user method. |
162 | 162 | * @since 1.15 |
163 | 163 | */ |
164 | - $config['meta']['displayname'] = $displayname ? $displayname : $config['meta']['displayname']; |
|
164 | + $config[ 'meta' ][ 'displayname' ] = $displayname ? $displayname : $config[ 'meta' ][ 'displayname' ]; |
|
165 | 165 | |
166 | 166 | /** |
167 | 167 | * @filter `gravityview/edit_entry/user_registration/config` Modify the User Registration Addon feed configuration |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | |
189 | 189 | $user = get_userdata( $user_id ); |
190 | 190 | |
191 | - if( ! $user ) { |
|
191 | + if ( ! $user ) { |
|
192 | 192 | return false; |
193 | 193 | } |
194 | 194 | |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | * In case we can't find the current display name format, trigger last resort method at the 'gform_user_updated' hook |
201 | 201 | * @see restore_display_name |
202 | 202 | */ |
203 | - if( false === $format ) { |
|
203 | + if ( false === $format ) { |
|
204 | 204 | $this->_user_before_update = $user; |
205 | 205 | } |
206 | 206 | |
@@ -218,20 +218,20 @@ discard block |
||
218 | 218 | public function generate_display_names( $profileuser ) { |
219 | 219 | |
220 | 220 | $public_display = array(); |
221 | - $public_display['nickname'] = $profileuser->nickname; |
|
222 | - $public_display['username'] = $profileuser->user_login; |
|
221 | + $public_display[ 'nickname' ] = $profileuser->nickname; |
|
222 | + $public_display[ 'username' ] = $profileuser->user_login; |
|
223 | 223 | |
224 | - if ( !empty($profileuser->first_name) ) { |
|
225 | - $public_display['firstname'] = $profileuser->first_name; |
|
224 | + if ( ! empty( $profileuser->first_name ) ) { |
|
225 | + $public_display[ 'firstname' ] = $profileuser->first_name; |
|
226 | 226 | } |
227 | 227 | |
228 | - if ( !empty($profileuser->last_name) ) { |
|
229 | - $public_display['lastname'] = $profileuser->last_name; |
|
228 | + if ( ! empty( $profileuser->last_name ) ) { |
|
229 | + $public_display[ 'lastname' ] = $profileuser->last_name; |
|
230 | 230 | } |
231 | 231 | |
232 | - if ( !empty($profileuser->first_name) && !empty($profileuser->last_name) ) { |
|
233 | - $public_display['firstlast'] = $profileuser->first_name . ' ' . $profileuser->last_name; |
|
234 | - $public_display['lastfirst'] = $profileuser->last_name . ' ' . $profileuser->first_name; |
|
232 | + if ( ! empty( $profileuser->first_name ) && ! empty( $profileuser->last_name ) ) { |
|
233 | + $public_display[ 'firstlast' ] = $profileuser->first_name . ' ' . $profileuser->last_name; |
|
234 | + $public_display[ 'lastfirst' ] = $profileuser->last_name . ' ' . $profileuser->first_name; |
|
235 | 235 | } |
236 | 236 | |
237 | 237 | $public_display = array_map( 'trim', $public_display ); |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | */ |
262 | 262 | $restore_display_name = apply_filters( 'gravityview/edit_entry/restore_display_name', true ); |
263 | 263 | |
264 | - $is_update_feed = ( $config && rgars( $config, 'meta/feed_type') === 'update' ); |
|
264 | + $is_update_feed = ( $config && rgars( $config, 'meta/feed_type' ) === 'update' ); |
|
265 | 265 | |
266 | 266 | /** |
267 | 267 | * Don't restore display name: |
@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | * - or we don't need as we found the correct format before updating user. |
271 | 271 | * @since 1.14.4 |
272 | 272 | */ |
273 | - if( ! $restore_display_name || $is_update_feed || is_null( $this->_user_before_update ) ) { |
|
273 | + if ( ! $restore_display_name || $is_update_feed || is_null( $this->_user_before_update ) ) { |
|
274 | 274 | return null; |
275 | 275 | } |
276 | 276 | |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | |
279 | 279 | // User not found |
280 | 280 | if ( ! $user_after_update ) { |
281 | - do_action('gravityview_log_error', __METHOD__ . sprintf( ' - User not found at $user_id #%d', $user_id ) ); |
|
281 | + do_action( 'gravityview_log_error', __METHOD__ . sprintf( ' - User not found at $user_id #%d', $user_id ) ); |
|
282 | 282 | return false; |
283 | 283 | } |
284 | 284 | |
@@ -302,10 +302,10 @@ discard block |
||
302 | 302 | |
303 | 303 | $updated = wp_update_user( $restored_user ); |
304 | 304 | |
305 | - if( is_wp_error( $updated ) ) { |
|
306 | - do_action('gravityview_log_error', __METHOD__ . sprintf( ' - There was an error updating user #%d details', $user_id ), $updated ); |
|
305 | + if ( is_wp_error( $updated ) ) { |
|
306 | + do_action( 'gravityview_log_error', __METHOD__ . sprintf( ' - There was an error updating user #%d details', $user_id ), $updated ); |
|
307 | 307 | } else { |
308 | - do_action('gravityview_log_debug', __METHOD__ . sprintf( ' - User #%d details restored', $user_id ) ); |
|
308 | + do_action( 'gravityview_log_debug', __METHOD__ . sprintf( ' - User #%d details restored', $user_id ) ); |
|
309 | 309 | } |
310 | 310 | |
311 | 311 | $this->_user_before_update = null; |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | |
13 | 13 | function __construct( ) { |
14 | 14 | |
15 | - $name = __('GravityView Recent Entries', 'gravityview'); |
|
15 | + $name = __( 'GravityView Recent Entries', 'gravityview' ); |
|
16 | 16 | |
17 | 17 | $widget_options = array( |
18 | 18 | 'description' => __( 'Display the most recent entries for a View', 'gravityview' ), |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | private function initialize() { |
27 | 27 | |
28 | - add_action('admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts') ); |
|
28 | + add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) ); |
|
29 | 29 | |
30 | 30 | add_action( 'wp_ajax_gv_get_view_merge_tag_data', array( $this, 'ajax_get_view_merge_tag_data' ) ); |
31 | 31 | |
@@ -38,21 +38,21 @@ discard block |
||
38 | 38 | */ |
39 | 39 | function ajax_get_view_merge_tag_data() { |
40 | 40 | |
41 | - if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajax_widget' ) ) { |
|
41 | + if ( ! isset( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajax_widget' ) ) { |
|
42 | 42 | exit( false ); |
43 | 43 | } |
44 | 44 | |
45 | - $form_id = gravityview_get_form_id( $_POST['view_id'] ); |
|
45 | + $form_id = gravityview_get_form_id( $_POST[ 'view_id' ] ); |
|
46 | 46 | |
47 | 47 | $form = RGFormsModel::get_form_meta( $form_id ); |
48 | 48 | |
49 | 49 | $output = array( |
50 | 50 | 'form' => array( |
51 | - 'id' => $form['id'], |
|
52 | - 'title' => $form['title'], |
|
53 | - 'fields' => $form['fields'], |
|
51 | + 'id' => $form[ 'id' ], |
|
52 | + 'title' => $form[ 'title' ], |
|
53 | + 'fields' => $form[ 'fields' ], |
|
54 | 54 | ), |
55 | - 'mergeTags' => GFCommon::get_merge_tags( $form['fields'], '', false ), |
|
55 | + 'mergeTags' => GFCommon::get_merge_tags( $form[ 'fields' ], '', false ), |
|
56 | 56 | ); |
57 | 57 | |
58 | 58 | echo json_encode( $output ); |
@@ -68,17 +68,17 @@ discard block |
||
68 | 68 | function admin_enqueue_scripts() { |
69 | 69 | global $pagenow; |
70 | 70 | |
71 | - if( $pagenow === 'widgets.php' ) { |
|
71 | + if ( $pagenow === 'widgets.php' ) { |
|
72 | 72 | |
73 | - $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
73 | + $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
74 | 74 | |
75 | - wp_enqueue_script( 'gravityview_widgets', plugins_url('assets/js/admin-widgets'.$script_debug.'.js', GRAVITYVIEW_FILE), array( 'jquery', 'gform_gravityforms' ), GravityView_Plugin::version ); |
|
75 | + wp_enqueue_script( 'gravityview_widgets', plugins_url( 'assets/js/admin-widgets' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery', 'gform_gravityforms' ), GravityView_Plugin::version ); |
|
76 | 76 | |
77 | 77 | wp_localize_script( 'gravityview_widgets', 'GVWidgets', array( |
78 | 78 | 'nonce' => wp_create_nonce( 'gravityview_ajax_widget' ) |
79 | - )); |
|
79 | + ) ); |
|
80 | 80 | |
81 | - wp_enqueue_style( 'gravityview_views_styles', plugins_url('assets/css/admin-views.css', GRAVITYVIEW_FILE), array('dashicons' ), GravityView_Plugin::version ); |
|
81 | + wp_enqueue_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array( 'dashicons' ), GravityView_Plugin::version ); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | } |
@@ -93,19 +93,19 @@ discard block |
||
93 | 93 | function widget( $args, $instance ) { |
94 | 94 | |
95 | 95 | // Don't have the Customizer render too soon. |
96 | - if( empty( $instance['view_id'] ) ) { |
|
96 | + if ( empty( $instance[ 'view_id' ] ) ) { |
|
97 | 97 | return; |
98 | 98 | } |
99 | 99 | |
100 | - $args['id'] = ( isset( $args['id'] ) ) ? $args['id'] : 'gv_recent_entries'; |
|
101 | - $instance['title'] = ( isset( $instance['title'] ) ) ? $instance['title'] : ''; |
|
100 | + $args[ 'id' ] = ( isset( $args[ 'id' ] ) ) ? $args[ 'id' ] : 'gv_recent_entries'; |
|
101 | + $instance[ 'title' ] = ( isset( $instance[ 'title' ] ) ) ? $instance[ 'title' ] : ''; |
|
102 | 102 | |
103 | - $title = apply_filters( 'widget_title', $instance[ 'title' ], $instance, $args['id'] ); |
|
103 | + $title = apply_filters( 'widget_title', $instance[ 'title' ], $instance, $args[ 'id' ] ); |
|
104 | 104 | |
105 | - echo $args['before_widget']; |
|
105 | + echo $args[ 'before_widget' ]; |
|
106 | 106 | |
107 | - if ( !empty( $title ) ) { |
|
108 | - echo $args['before_title'] . $title . $args['after_title']; |
|
107 | + if ( ! empty( $title ) ) { |
|
108 | + echo $args[ 'before_title' ] . $title . $args[ 'after_title' ]; |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | /** |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | */ |
126 | 126 | do_action( 'gravityview/widget/recent-entries/after_widget', $args, $instance ); |
127 | 127 | |
128 | - echo $args['after_widget']; |
|
128 | + echo $args[ 'after_widget' ]; |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | */ |
140 | 140 | private function get_output( $instance ) { |
141 | 141 | |
142 | - $form_id = gravityview_get_form_id( $instance['view_id'] ); |
|
142 | + $form_id = gravityview_get_form_id( $instance[ 'view_id' ] ); |
|
143 | 143 | |
144 | 144 | $form = gravityview_get_form( $form_id ); |
145 | 145 | |
@@ -149,13 +149,13 @@ discard block |
||
149 | 149 | * @since 1.6.1 |
150 | 150 | * @var int $entry_link_post_id The ID to use as the parent post for the entry |
151 | 151 | */ |
152 | - $entry_link_post_id = ( empty( $instance['error_post_id'] ) && !empty( $instance['post_id'] ) ) ? $instance['post_id'] : $instance['view_id']; |
|
152 | + $entry_link_post_id = ( empty( $instance[ 'error_post_id' ] ) && ! empty( $instance[ 'post_id' ] ) ) ? $instance[ 'post_id' ] : $instance[ 'view_id' ]; |
|
153 | 153 | |
154 | 154 | /** |
155 | 155 | * Generate list output |
156 | 156 | * @since 1.7.2 |
157 | 157 | */ |
158 | - $List = new GravityView_Entry_List( $entries, $entry_link_post_id, $form, $instance['link_format'], $instance['after_link'], 'recent-entries-widget' ); |
|
158 | + $List = new GravityView_Entry_List( $entries, $entry_link_post_id, $form, $instance[ 'link_format' ], $instance[ 'after_link' ], 'recent-entries-widget' ); |
|
159 | 159 | |
160 | 160 | $output = $List->get_output(); |
161 | 161 | |
@@ -180,30 +180,30 @@ discard block |
||
180 | 180 | private function get_entries( $instance, $form_id ) { |
181 | 181 | |
182 | 182 | // Get the settings for the View ID |
183 | - $view_settings = gravityview_get_template_settings( $instance['view_id'] ); |
|
183 | + $view_settings = gravityview_get_template_settings( $instance[ 'view_id' ] ); |
|
184 | 184 | |
185 | 185 | // Set the context view ID to avoid conflicts with the Advanced Filter extension. |
186 | - $criteria['context_view_id'] = $instance['view_id']; |
|
186 | + $criteria[ 'context_view_id' ] = $instance[ 'view_id' ]; |
|
187 | 187 | |
188 | - $instance['limit'] = isset( $instance['limit'] ) ? $instance['limit'] : 10; |
|
189 | - $view_settings['id'] = $instance['view_id']; |
|
190 | - $view_settings['page_size'] = $instance['limit']; |
|
188 | + $instance[ 'limit' ] = isset( $instance[ 'limit' ] ) ? $instance[ 'limit' ] : 10; |
|
189 | + $view_settings[ 'id' ] = $instance[ 'view_id' ]; |
|
190 | + $view_settings[ 'page_size' ] = $instance[ 'limit' ]; |
|
191 | 191 | |
192 | 192 | // Prepare paging criteria |
193 | - $criteria['paging'] = array( |
|
193 | + $criteria[ 'paging' ] = array( |
|
194 | 194 | 'offset' => 0, |
195 | - 'page_size' => $instance['limit'] |
|
195 | + 'page_size' => $instance[ 'limit' ] |
|
196 | 196 | ); |
197 | 197 | |
198 | 198 | // Prepare Search Criteria |
199 | - $criteria['search_criteria'] = array( 'field_filters' => array() ); |
|
200 | - $criteria['search_criteria'] = GravityView_frontend::process_search_only_approved( $view_settings, $criteria['search_criteria']); |
|
201 | - $criteria['search_criteria']['status'] = apply_filters( 'gravityview_status', 'active', $view_settings ); |
|
199 | + $criteria[ 'search_criteria' ] = array( 'field_filters' => array() ); |
|
200 | + $criteria[ 'search_criteria' ] = GravityView_frontend::process_search_only_approved( $view_settings, $criteria[ 'search_criteria' ] ); |
|
201 | + $criteria[ 'search_criteria' ][ 'status' ] = apply_filters( 'gravityview_status', 'active', $view_settings ); |
|
202 | 202 | |
203 | 203 | /** |
204 | 204 | * Modify the search parameters before the entries are fetched |
205 | 205 | */ |
206 | - $criteria = apply_filters('gravityview/widget/recent-entries/criteria', $criteria, $instance, $form_id ); |
|
206 | + $criteria = apply_filters( 'gravityview/widget/recent-entries/criteria', $criteria, $instance, $form_id ); |
|
207 | 207 | |
208 | 208 | $results = GVCommon::get_entries( $form_id, $criteria ); |
209 | 209 | |
@@ -224,23 +224,23 @@ discard block |
||
224 | 224 | $instance = $new_instance; |
225 | 225 | |
226 | 226 | // Force positive number |
227 | - $instance['limit'] = empty( $instance['limit'] ) ? 10 : absint( $instance['limit'] ); |
|
227 | + $instance[ 'limit' ] = empty( $instance[ 'limit' ] ) ? 10 : absint( $instance[ 'limit' ] ); |
|
228 | 228 | |
229 | - $instance['view_id'] = intval( $instance['view_id'] ); |
|
229 | + $instance[ 'view_id' ] = intval( $instance[ 'view_id' ] ); |
|
230 | 230 | |
231 | - $instance['link_format'] = trim( rtrim( $instance['link_format'] ) ); |
|
231 | + $instance[ 'link_format' ] = trim( rtrim( $instance[ 'link_format' ] ) ); |
|
232 | 232 | |
233 | - $instance['link_format'] = empty( $instance['link_format'] ) ? $old_instance['link_format'] : $instance['link_format']; |
|
233 | + $instance[ 'link_format' ] = empty( $instance[ 'link_format' ] ) ? $old_instance[ 'link_format' ] : $instance[ 'link_format' ]; |
|
234 | 234 | |
235 | - $instance['post_id'] = empty( $instance['post_id'] ) ? '' : intval( $instance['post_id'] ); |
|
235 | + $instance[ 'post_id' ] = empty( $instance[ 'post_id' ] ) ? '' : intval( $instance[ 'post_id' ] ); |
|
236 | 236 | |
237 | - $is_valid_embed_id = GravityView_View_Data::is_valid_embed_id( $instance['post_id'], $instance['view_id'] ); |
|
237 | + $is_valid_embed_id = GravityView_View_Data::is_valid_embed_id( $instance[ 'post_id' ], $instance[ 'view_id' ] ); |
|
238 | 238 | |
239 | 239 | //check if post_id is a valid post with embedded View |
240 | - $instance['error_post_id'] = is_wp_error( $is_valid_embed_id ) ? $is_valid_embed_id->get_error_message() : NULL; |
|
240 | + $instance[ 'error_post_id' ] = is_wp_error( $is_valid_embed_id ) ? $is_valid_embed_id->get_error_message() : NULL; |
|
241 | 241 | |
242 | 242 | // Share that the widget isn't brand new |
243 | - $instance['updated'] = 1; |
|
243 | + $instance[ 'updated' ] = 1; |
|
244 | 244 | |
245 | 245 | /** |
246 | 246 | * Modify the updated instance. This will allow for validating any added instance settings externally. |
@@ -262,22 +262,22 @@ discard block |
||
262 | 262 | |
263 | 263 | // Set up some default widget settings. |
264 | 264 | $defaults = array( |
265 | - 'title' => __('Recent Entries', 'gravityview'), |
|
265 | + 'title' => __( 'Recent Entries', 'gravityview' ), |
|
266 | 266 | 'view_id' => NULL, |
267 | 267 | 'post_id' => NULL, |
268 | 268 | 'limit' => 10, |
269 | - 'link_format' => __('Entry #{entry_id}', 'gravityview'), |
|
269 | + 'link_format' => __( 'Entry #{entry_id}', 'gravityview' ), |
|
270 | 270 | 'after_link' => '' |
271 | 271 | ); |
272 | 272 | |
273 | - $instance = wp_parse_args( (array) $instance, $defaults ); |
|
273 | + $instance = wp_parse_args( (array)$instance, $defaults ); |
|
274 | 274 | |
275 | 275 | ?> |
276 | 276 | |
277 | 277 | <!-- Title --> |
278 | 278 | <p> |
279 | 279 | <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php _e( 'Title:', 'gravityview' ) ?></label> |
280 | - <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $instance['title'] ); ?>" /> |
|
280 | + <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $instance[ 'title' ] ); ?>" /> |
|
281 | 281 | </p> |
282 | 282 | |
283 | 283 | <!-- Download --> |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | $views = get_posts( $args ); |
291 | 291 | |
292 | 292 | // If there are no views set up yet, we get outta here. |
293 | - if( empty( $views ) ) { |
|
293 | + if ( empty( $views ) ) { |
|
294 | 294 | echo '<div id="select_gravityview_view"><div class="wrap">' . GravityView_Admin::no_views_text() . '</div></div>'; |
295 | 295 | return; |
296 | 296 | } |
@@ -302,10 +302,10 @@ discard block |
||
302 | 302 | * Display errors generated for invalid embed IDs |
303 | 303 | * @see GravityView_View_Data::is_valid_embed_id |
304 | 304 | */ |
305 | - if( isset( $instance['updated'] ) && empty( $instance['view_id'] ) ) { |
|
305 | + if ( isset( $instance[ 'updated' ] ) && empty( $instance[ 'view_id' ] ) ) { |
|
306 | 306 | ?> |
307 | 307 | <div class="error inline hide-on-view-change"> |
308 | - <p><?php esc_html_e('Please select a View to search.', 'gravityview'); ?></p> |
|
308 | + <p><?php esc_html_e( 'Please select a View to search.', 'gravityview' ); ?></p> |
|
309 | 309 | </div> |
310 | 310 | <?php |
311 | 311 | unset ( $error ); |
@@ -313,14 +313,14 @@ discard block |
||
313 | 313 | ?> |
314 | 314 | |
315 | 315 | <p> |
316 | - <label for="<?php echo esc_attr( $this->get_field_id( 'view_id' ) ); ?>"><?php esc_html_e('Select a View', 'gravityview'); ?></label> |
|
316 | + <label for="<?php echo esc_attr( $this->get_field_id( 'view_id' ) ); ?>"><?php esc_html_e( 'Select a View', 'gravityview' ); ?></label> |
|
317 | 317 | <select class="widefat gv-recent-entries-select-view" name="<?php echo esc_attr( $this->get_field_name( 'view_id' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'view_id' ) ); ?>"> |
318 | 318 | <option value=""><?php esc_html_e( '— Select a View as Entries Source —', 'gravityview' ); ?></option> |
319 | 319 | <?php |
320 | 320 | |
321 | - foreach( $views as $view ) { |
|
322 | - $title = empty( $view->post_title ) ? __('(no title)', 'gravityview') : $view->post_title; |
|
323 | - echo '<option value="'. $view->ID .'"'.selected( absint( $instance['view_id'] ), $view->ID ).'>'. esc_html( sprintf('%s #%d', $title, $view->ID ) ) .'</option>'; |
|
321 | + foreach ( $views as $view ) { |
|
322 | + $title = empty( $view->post_title ) ? __( '(no title)', 'gravityview' ) : $view->post_title; |
|
323 | + echo '<option value="' . $view->ID . '"' . selected( absint( $instance[ 'view_id' ] ), $view->ID ) . '>' . esc_html( sprintf( '%s #%d', $title, $view->ID ) ) . '</option>'; |
|
324 | 324 | } |
325 | 325 | |
326 | 326 | ?> |
@@ -332,10 +332,10 @@ discard block |
||
332 | 332 | * Display errors generated for invalid embed IDs |
333 | 333 | * @see GravityView_View_Data::is_valid_embed_id |
334 | 334 | */ |
335 | - if( !empty( $instance['error_post_id'] ) ) { |
|
335 | + if ( ! empty( $instance[ 'error_post_id' ] ) ) { |
|
336 | 336 | ?> |
337 | 337 | <div class="error inline"> |
338 | - <p><?php echo $instance['error_post_id']; ?></p> |
|
338 | + <p><?php echo $instance[ 'error_post_id' ]; ?></p> |
|
339 | 339 | </div> |
340 | 340 | <?php |
341 | 341 | unset ( $error ); |
@@ -343,11 +343,11 @@ discard block |
||
343 | 343 | ?> |
344 | 344 | |
345 | 345 | <p> |
346 | - <label for="<?php echo $this->get_field_id('post_id'); ?>"><?php esc_html_e( 'If Embedded, Page ID:', 'gravityview' ); ?></label> |
|
347 | - <input class="code" size="3" id="<?php echo $this->get_field_id('post_id'); ?>" name="<?php echo $this->get_field_name('post_id'); ?>" type="text" value="<?php echo esc_attr( $instance['post_id'] ); ?>" /> |
|
346 | + <label for="<?php echo $this->get_field_id( 'post_id' ); ?>"><?php esc_html_e( 'If Embedded, Page ID:', 'gravityview' ); ?></label> |
|
347 | + <input class="code" size="3" id="<?php echo $this->get_field_id( 'post_id' ); ?>" name="<?php echo $this->get_field_name( 'post_id' ); ?>" type="text" value="<?php echo esc_attr( $instance[ 'post_id' ] ); ?>" /> |
|
348 | 348 | <span class="howto"><?php |
349 | - esc_html_e('To have a search performed on an embedded View, enter the ID of the post or page where the View is embedded.', 'gravityview' ); |
|
350 | - echo ' '.gravityview_get_link('http://docs.gravityview.co/article/222-the-search-widget', __('Learn more…', 'gravityview' ), 'target=_blank' ); |
|
349 | + esc_html_e( 'To have a search performed on an embedded View, enter the ID of the post or page where the View is embedded.', 'gravityview' ); |
|
350 | + echo ' ' . gravityview_get_link( 'http://docs.gravityview.co/article/222-the-search-widget', __( 'Learn more…', 'gravityview' ), 'target=_blank' ); |
|
351 | 351 | ?></span> |
352 | 352 | </p> |
353 | 353 | |
@@ -355,21 +355,21 @@ discard block |
||
355 | 355 | <label for="<?php echo $this->get_field_id( 'limit' ); ?>"> |
356 | 356 | <span><?php _e( 'Number of entries to show:', 'gravityview' ); ?></span> |
357 | 357 | </label> |
358 | - <input class="code" id="<?php echo $this->get_field_id( 'limit' ); ?>" name="<?php echo $this->get_field_name( 'limit' ); ?>" type="number" value="<?php echo intval( $instance['limit'] ); ?>" size="3" /> |
|
358 | + <input class="code" id="<?php echo $this->get_field_id( 'limit' ); ?>" name="<?php echo $this->get_field_name( 'limit' ); ?>" type="number" value="<?php echo intval( $instance[ 'limit' ] ); ?>" size="3" /> |
|
359 | 359 | </p> |
360 | 360 | |
361 | 361 | <p> |
362 | 362 | <label for="<?php echo $this->get_field_id( 'link_format' ); ?>"> |
363 | 363 | <span><?php _e( 'Entry link text (required)', 'gravityview' ); ?></span> |
364 | 364 | </label> |
365 | - <input id="<?php echo $this->get_field_id( 'link_format' ); ?>" name="<?php echo $this->get_field_name( 'link_format' ); ?>" type="text" value="<?php echo esc_attr( $instance['link_format'] ); ?>" class="widefat merge-tag-support mt-position-right mt-hide_all_fields" /> |
|
365 | + <input id="<?php echo $this->get_field_id( 'link_format' ); ?>" name="<?php echo $this->get_field_name( 'link_format' ); ?>" type="text" value="<?php echo esc_attr( $instance[ 'link_format' ] ); ?>" class="widefat merge-tag-support mt-position-right mt-hide_all_fields" /> |
|
366 | 366 | </p> |
367 | 367 | |
368 | 368 | <p> |
369 | 369 | <label for="<?php echo $this->get_field_id( 'after_link' ); ?>"> |
370 | 370 | <span><?php _e( 'Text or HTML to display after the link (optional)', 'gravityview' ); ?></span> |
371 | 371 | </label> |
372 | - <textarea id="<?php echo $this->get_field_id( 'after_link' ); ?>" name="<?php echo $this->get_field_name( 'after_link' ); ?>" rows="5" class="widefat code merge-tag-support mt-position-right mt-hide_all_fields"><?php echo esc_textarea( $instance['after_link'] ); ?></textarea> |
|
372 | + <textarea id="<?php echo $this->get_field_id( 'after_link' ); ?>" name="<?php echo $this->get_field_name( 'after_link' ); ?>" rows="5" class="widefat code merge-tag-support mt-position-right mt-hide_all_fields"><?php echo esc_textarea( $instance[ 'after_link' ] ); ?></textarea> |
|
373 | 373 | </p> |
374 | 374 | |
375 | 375 | <?php |
@@ -379,7 +379,7 @@ discard block |
||
379 | 379 | * @param GravityView_Recent_Entries_Widget $this WP_Widget object |
380 | 380 | * @param array $instance Current widget instance |
381 | 381 | */ |
382 | - do_action( 'gravityview_recent_entries_widget_form' , $this, $instance ); |
|
382 | + do_action( 'gravityview_recent_entries_widget_form', $this, $instance ); |
|
383 | 383 | |
384 | 384 | ?> |
385 | 385 |
@@ -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_Compatibility::is_valid() ) { |
|
10 | + if ( false === GravityView_Compatibility::is_valid() ) { |
|
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 | |
@@ -63,9 +63,9 @@ discard block |
||
63 | 63 | */ |
64 | 64 | public static function no_views_text() { |
65 | 65 | |
66 | - if ( isset( $_REQUEST['post_status'] ) && 'trash' === $_REQUEST['post_status'] ) { |
|
66 | + if ( isset( $_REQUEST[ 'post_status' ] ) && 'trash' === $_REQUEST[ 'post_status' ] ) { |
|
67 | 67 | return __( 'No Views found in Trash', 'gravityview' ); |
68 | - } elseif( ! empty( $_GET['s'] ) ) { |
|
68 | + } elseif ( ! empty( $_GET[ 's' ] ) ) { |
|
69 | 69 | return __( 'No Views found.', 'gravityview' ); |
70 | 70 | } |
71 | 71 | |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | $error .= ' ' . esc_html__( 'or select another form.', 'gravityview' ); |
110 | 110 | } |
111 | 111 | |
112 | - if( $error ) { |
|
112 | + if ( $error ) { |
|
113 | 113 | ?> |
114 | 114 | <div class="wp-dialog notice-warning inline error wp-clearfix"> |
115 | 115 | <?php echo gravityview_get_floaty(); ?> |
@@ -128,22 +128,22 @@ discard block |
||
128 | 128 | public function backend_actions() { |
129 | 129 | |
130 | 130 | /** @define "GRAVITYVIEW_DIR" "../" */ |
131 | - include_once( GRAVITYVIEW_DIR .'includes/admin/class.field.type.php' ); |
|
132 | - include_once( GRAVITYVIEW_DIR .'includes/admin/class.render.settings.php' ); |
|
133 | - include_once( GRAVITYVIEW_DIR .'includes/admin/class-gravityview-admin-view-item.php' ); |
|
134 | - include_once( GRAVITYVIEW_DIR .'includes/admin/class-gravityview-admin-view-field.php' ); |
|
135 | - include_once( GRAVITYVIEW_DIR .'includes/admin/class-gravityview-admin-view-widget.php' ); |
|
136 | - include_once( GRAVITYVIEW_DIR .'includes/class-admin-views.php' ); |
|
137 | - include_once( GRAVITYVIEW_DIR .'includes/class-admin-welcome.php' ); |
|
138 | - include_once( GRAVITYVIEW_DIR .'includes/class-admin-add-shortcode.php' ); |
|
139 | - include_once( GRAVITYVIEW_DIR .'includes/class-admin-approve-entries.php' ); |
|
131 | + include_once( GRAVITYVIEW_DIR . 'includes/admin/class.field.type.php' ); |
|
132 | + include_once( GRAVITYVIEW_DIR . 'includes/admin/class.render.settings.php' ); |
|
133 | + include_once( GRAVITYVIEW_DIR . 'includes/admin/class-gravityview-admin-view-item.php' ); |
|
134 | + include_once( GRAVITYVIEW_DIR . 'includes/admin/class-gravityview-admin-view-field.php' ); |
|
135 | + include_once( GRAVITYVIEW_DIR . 'includes/admin/class-gravityview-admin-view-widget.php' ); |
|
136 | + include_once( GRAVITYVIEW_DIR . 'includes/class-admin-views.php' ); |
|
137 | + include_once( GRAVITYVIEW_DIR . 'includes/class-admin-welcome.php' ); |
|
138 | + include_once( GRAVITYVIEW_DIR . 'includes/class-admin-add-shortcode.php' ); |
|
139 | + include_once( GRAVITYVIEW_DIR . 'includes/class-admin-approve-entries.php' ); |
|
140 | 140 | |
141 | 141 | /** |
142 | 142 | * @action `gravityview_include_backend_actions` Triggered after all GravityView admin files are loaded |
143 | 143 | * |
144 | 144 | * Nice place to insert extensions' backend stuff |
145 | 145 | */ |
146 | - do_action('gravityview_include_backend_actions'); |
|
146 | + do_action( 'gravityview_include_backend_actions' ); |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | /** |
@@ -159,12 +159,12 @@ discard block |
||
159 | 159 | |
160 | 160 | $actions = array(); |
161 | 161 | |
162 | - if( GVCommon::has_cap( 'gravityview_view_settings' ) ) { |
|
163 | - $actions[] = sprintf( '<a href="%s">%s</a>', admin_url( 'edit.php?post_type=gravityview&page=gravityview_settings' ), esc_html__( 'Settings', 'gravityview' ) ); |
|
162 | + if ( GVCommon::has_cap( 'gravityview_view_settings' ) ) { |
|
163 | + $actions[ ] = sprintf( '<a href="%s">%s</a>', admin_url( 'edit.php?post_type=gravityview&page=gravityview_settings' ), esc_html__( 'Settings', 'gravityview' ) ); |
|
164 | 164 | } |
165 | 165 | |
166 | - if( GVCommon::has_cap( 'gravityview_support_port' ) ) { |
|
167 | - $actions[] = '<a href="http://docs.gravityview.co">' . esc_html__( 'Support', 'gravityview' ) . '</a>'; |
|
166 | + if ( GVCommon::has_cap( 'gravityview_support_port' ) ) { |
|
167 | + $actions[ ] = '<a href="http://docs.gravityview.co">' . esc_html__( 'Support', 'gravityview' ) . '</a>'; |
|
168 | 168 | } |
169 | 169 | |
170 | 170 | return array_merge( $actions, $links ); |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | // By default, there will only be one item being modified. |
193 | 193 | // When in the `bulk_post_updated_messages` filter, there will be passed a number |
194 | 194 | // of modified items that will override this array. |
195 | - $bulk_counts = is_null( $bulk_counts ) ? array( 'updated' => 1 , 'locked' => 1 , 'deleted' => 1 , 'trashed' => 1, 'untrashed' => 1 ) : $bulk_counts; |
|
195 | + $bulk_counts = is_null( $bulk_counts ) ? array( 'updated' => 1, 'locked' => 1, 'deleted' => 1, 'trashed' => 1, 'untrashed' => 1 ) : $bulk_counts; |
|
196 | 196 | |
197 | 197 | // If we're starting fresh, a new form was created. |
198 | 198 | // We should let the user know this is the case. |
@@ -200,60 +200,60 @@ discard block |
||
200 | 200 | |
201 | 201 | $new_form_text = ''; |
202 | 202 | |
203 | - if( !empty( $start_fresh ) ) { |
|
203 | + if ( ! empty( $start_fresh ) ) { |
|
204 | 204 | |
205 | 205 | // Get the form that was created |
206 | 206 | $connected_form = gravityview_get_form_id( $post_id ); |
207 | 207 | |
208 | - if( !empty( $connected_form ) ) { |
|
208 | + if ( ! empty( $connected_form ) ) { |
|
209 | 209 | $form = gravityview_get_form( $connected_form ); |
210 | - $form_name = esc_attr( $form['title'] ); |
|
210 | + $form_name = esc_attr( $form[ 'title' ] ); |
|
211 | 211 | $image = self::get_floaty(); |
212 | - $new_form_text .= '<h3>'.$image.sprintf( __( 'A new form was created for this View: "%s"', 'gravityview' ), $form_name ).'</h3>'; |
|
213 | - $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 |
|
212 | + $new_form_text .= '<h3>' . $image . sprintf( __( 'A new form was created for this View: "%s"', 'gravityview' ), $form_name ) . '</h3>'; |
|
213 | + $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 |
|
214 | 214 | |
215 | 215 | 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. |
216 | - ', '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>'); |
|
216 | + ', '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>' ); |
|
217 | 217 | $new_form_text = wpautop( $new_form_text ); |
218 | 218 | |
219 | 219 | delete_post_meta( $post_id, '_gravityview_start_fresh' ); |
220 | 220 | } |
221 | 221 | } |
222 | 222 | |
223 | - $messages['gravityview'] = array( |
|
223 | + $messages[ 'gravityview' ] = array( |
|
224 | 224 | 0 => '', // Unused. Messages start at index 1. |
225 | 225 | /* translators: %s and %s are HTML tags linking to the View on the website */ |
226 | - 1 => sprintf(__( 'View updated. %sView on website.%s', 'gravityview' ), '<a href="'.get_permalink( $post_id ).'">', '</a>'), |
|
226 | + 1 => sprintf( __( 'View updated. %sView on website.%s', 'gravityview' ), '<a href="' . get_permalink( $post_id ) . '">', '</a>' ), |
|
227 | 227 | /* translators: %s and %s are HTML tags linking to the View on the website */ |
228 | - 2 => sprintf(__( 'View updated. %sView on website.%s', 'gravityview' ), '<a href="'.get_permalink( $post_id ).'">', '</a>'), |
|
228 | + 2 => sprintf( __( 'View updated. %sView on website.%s', 'gravityview' ), '<a href="' . get_permalink( $post_id ) . '">', '</a>' ), |
|
229 | 229 | 3 => __( 'View deleted.', 'gravityview' ), |
230 | 230 | /* translators: %s and %s are HTML tags linking to the View on the website */ |
231 | - 4 => sprintf(__( 'View updated. %sView on website.%s', 'gravityview' ), '<a href="'.get_permalink( $post_id ).'">', '</a>'), |
|
231 | + 4 => sprintf( __( 'View updated. %sView on website.%s', 'gravityview' ), '<a href="' . get_permalink( $post_id ) . '">', '</a>' ), |
|
232 | 232 | /* translators: %s: date and time of the revision */ |
233 | - 5 => isset( $_GET['revision'] ) ? sprintf( __( 'View restored to revision from %s', 'gravityview' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, |
|
233 | + 5 => isset( $_GET[ 'revision' ] ) ? sprintf( __( 'View restored to revision from %s', 'gravityview' ), wp_post_revision_title( (int)$_GET[ 'revision' ], false ) ) : false, |
|
234 | 234 | /* translators: %s and %s are HTML tags linking to the View on the website */ |
235 | - 6 => sprintf(__( 'View published. %sView on website.%s', 'gravityview' ), '<a href="'.get_permalink( $post_id ).'">', '</a>') . $new_form_text, |
|
235 | + 6 => sprintf( __( 'View published. %sView on website.%s', 'gravityview' ), '<a href="' . get_permalink( $post_id ) . '">', '</a>' ) . $new_form_text, |
|
236 | 236 | /* translators: %s and %s are HTML tags linking to the View on the website */ |
237 | - 7 => sprintf(__( 'View saved. %sView on website.%s', 'gravityview' ), '<a href="'.get_permalink( $post_id ).'">', '</a>') . $new_form_text, |
|
237 | + 7 => sprintf( __( 'View saved. %sView on website.%s', 'gravityview' ), '<a href="' . get_permalink( $post_id ) . '">', '</a>' ) . $new_form_text, |
|
238 | 238 | 8 => __( 'View submitted.', 'gravityview' ), |
239 | 239 | 9 => sprintf( |
240 | 240 | /* translators: Date and time the View is scheduled to be published */ |
241 | 241 | __( 'View scheduled for: %1$s.', 'gravityview' ), |
242 | 242 | // translators: Publish box date format, see http://php.net/date |
243 | - date_i18n( __( 'M j, Y @ G:i', 'gravityview' ), strtotime( ( isset( $post->post_date ) ? $post->post_date : NULL ) ) ) |
|
243 | + date_i18n( __( 'M j, Y @ G:i', 'gravityview' ), strtotime( ( isset( $post->post_date ) ? $post->post_date : NULL ) ) ) |
|
244 | 244 | ) . $new_form_text, |
245 | 245 | /* translators: %s and %s are HTML tags linking to the View on the website */ |
246 | - 10 => sprintf(__( 'View draft updated. %sView on website.%s', 'gravityview' ), '<a href="'.get_permalink( $post_id ).'">', '</a>') . $new_form_text, |
|
246 | + 10 => sprintf( __( 'View draft updated. %sView on website.%s', 'gravityview' ), '<a href="' . get_permalink( $post_id ) . '">', '</a>' ) . $new_form_text, |
|
247 | 247 | |
248 | 248 | /** |
249 | 249 | * These apply to `bulk_post_updated_messages` |
250 | 250 | * @file wp-admin/edit.php |
251 | 251 | */ |
252 | - 'updated' => _n( '%s View updated.', '%s Views updated.', $bulk_counts['updated'], 'gravityview' ), |
|
253 | - 'locked' => _n( '%s View not updated, somebody is editing it.', '%s Views not updated, somebody is editing them.', $bulk_counts['locked'], 'gravityview' ), |
|
254 | - 'deleted' => _n( '%s View permanently deleted.', '%s Views permanently deleted.', $bulk_counts['deleted'], 'gravityview' ), |
|
255 | - 'trashed' => _n( '%s View moved to the Trash.', '%s Views moved to the Trash.', $bulk_counts['trashed'], 'gravityview' ), |
|
256 | - 'untrashed' => _n( '%s View restored from the Trash.', '%s Views restored from the Trash.', $bulk_counts['untrashed'], 'gravityview' ), |
|
252 | + 'updated' => _n( '%s View updated.', '%s Views updated.', $bulk_counts[ 'updated' ], 'gravityview' ), |
|
253 | + 'locked' => _n( '%s View not updated, somebody is editing it.', '%s Views not updated, somebody is editing them.', $bulk_counts[ 'locked' ], 'gravityview' ), |
|
254 | + 'deleted' => _n( '%s View permanently deleted.', '%s Views permanently deleted.', $bulk_counts[ 'deleted' ], 'gravityview' ), |
|
255 | + 'trashed' => _n( '%s View moved to the Trash.', '%s Views moved to the Trash.', $bulk_counts[ 'trashed' ], 'gravityview' ), |
|
256 | + 'untrashed' => _n( '%s View restored from the Trash.', '%s Views restored from the Trash.', $bulk_counts[ 'untrashed' ], 'gravityview' ), |
|
257 | 257 | ); |
258 | 258 | |
259 | 259 | return $messages; |
@@ -313,29 +313,29 @@ discard block |
||
313 | 313 | static function is_admin_page( $hook = '', $page = NULL ) { |
314 | 314 | global $current_screen, $plugin_page, $pagenow, $post; |
315 | 315 | |
316 | - if( ! is_admin() ) { return false; } |
|
316 | + if ( ! is_admin() ) { return false; } |
|
317 | 317 | |
318 | 318 | $is_page = false; |
319 | 319 | |
320 | - $is_gv_screen = (!empty($current_screen) && isset($current_screen->post_type) && $current_screen->post_type === 'gravityview'); |
|
320 | + $is_gv_screen = ( ! empty( $current_screen ) && isset( $current_screen->post_type ) && $current_screen->post_type === 'gravityview' ); |
|
321 | 321 | |
322 | - $is_gv_post_type_get = (isset($_GET['post_type']) && $_GET['post_type'] === 'gravityview'); |
|
322 | + $is_gv_post_type_get = ( isset( $_GET[ 'post_type' ] ) && $_GET[ 'post_type' ] === 'gravityview' ); |
|
323 | 323 | |
324 | - $is_gv_settings_get = isset( $_GET['page'] ) && $_GET['page'] === 'gravityview_settings'; |
|
324 | + $is_gv_settings_get = isset( $_GET[ 'page' ] ) && $_GET[ 'page' ] === 'gravityview_settings'; |
|
325 | 325 | |
326 | - if( empty( $post ) && $pagenow === 'post.php' && !empty( $_GET['post'] ) ) { |
|
327 | - $gv_post = get_post( intval( $_GET['post'] ) ); |
|
328 | - $is_gv_post_type = (!empty($gv_post) && !empty($gv_post->post_type) && $gv_post->post_type === 'gravityview'); |
|
326 | + if ( empty( $post ) && $pagenow === 'post.php' && ! empty( $_GET[ 'post' ] ) ) { |
|
327 | + $gv_post = get_post( intval( $_GET[ 'post' ] ) ); |
|
328 | + $is_gv_post_type = ( ! empty( $gv_post ) && ! empty( $gv_post->post_type ) && $gv_post->post_type === 'gravityview' ); |
|
329 | 329 | } else { |
330 | - $is_gv_post_type = (!empty($post) && !empty($post->post_type) && $post->post_type === 'gravityview'); |
|
330 | + $is_gv_post_type = ( ! empty( $post ) && ! empty( $post->post_type ) && $post->post_type === 'gravityview' ); |
|
331 | 331 | } |
332 | 332 | |
333 | - if( $is_gv_screen || $is_gv_post_type || $is_gv_post_type || $is_gv_post_type_get || $is_gv_settings_get ) { |
|
333 | + if ( $is_gv_screen || $is_gv_post_type || $is_gv_post_type || $is_gv_post_type_get || $is_gv_settings_get ) { |
|
334 | 334 | |
335 | 335 | // $_GET `post_type` variable |
336 | - if(in_array($pagenow, array( 'post.php' , 'post-new.php' )) ) { |
|
336 | + if ( in_array( $pagenow, array( 'post.php', 'post-new.php' ) ) ) { |
|
337 | 337 | $is_page = 'single'; |
338 | - } else if ( in_array( $plugin_page, array( 'gravityview_settings', 'gravityview_page_gravityview_settings' ) ) || ( !empty( $_GET['page'] ) && $_GET['page'] === 'gravityview_settings' ) ) { |
|
338 | + } else if ( in_array( $plugin_page, array( 'gravityview_settings', 'gravityview_page_gravityview_settings' ) ) || ( ! empty( $_GET[ 'page' ] ) && $_GET[ 'page' ] === 'gravityview_settings' ) ) { |
|
339 | 339 | $is_page = 'settings'; |
340 | 340 | } else { |
341 | 341 | $is_page = 'views'; |
@@ -350,7 +350,7 @@ discard block |
||
350 | 350 | $is_page = apply_filters( 'gravityview_is_admin_page', $is_page, $hook ); |
351 | 351 | |
352 | 352 | // If the current page is the same as the compared page |
353 | - if( !empty( $page ) ) { |
|
353 | + if ( ! empty( $page ) ) { |
|
354 | 354 | return $is_page === $page; |
355 | 355 | } |
356 | 356 | |
@@ -371,6 +371,6 @@ discard block |
||
371 | 371 | * |
372 | 372 | * @return bool|string If `false`, not a GravityView page. `true` if $page is passed and is the same as current page. Otherwise, the name of the page (`single`, `settings`, or `views`) |
373 | 373 | */ |
374 | -function gravityview_is_admin_page($hook = '', $page = NULL) { |
|
374 | +function gravityview_is_admin_page( $hook = '', $page = NULL ) { |
|
375 | 375 | return GravityView_Admin::is_admin_page( $hook, $page ); |
376 | 376 | } |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | */ |
91 | 91 | public static function getInstance() { |
92 | 92 | |
93 | - if( empty( self::$instance ) ) { |
|
93 | + if ( empty( self::$instance ) ) { |
|
94 | 94 | self::$instance = new self; |
95 | 95 | } |
96 | 96 | |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | |
102 | 102 | self::require_files(); |
103 | 103 | |
104 | - if( ! GravityView_Compatibility::is_valid() ) { |
|
104 | + if ( ! GravityView_Compatibility::is_valid() ) { |
|
105 | 105 | return; |
106 | 106 | } |
107 | 107 | |
@@ -116,14 +116,14 @@ discard block |
||
116 | 116 | */ |
117 | 117 | private static function require_files() { |
118 | 118 | require_once( GRAVITYVIEW_DIR . 'includes/helper-functions.php' ); |
119 | - require_once( GRAVITYVIEW_DIR . 'includes/class-common.php'); |
|
120 | - require_once( GRAVITYVIEW_DIR . 'includes/connector-functions.php'); |
|
119 | + require_once( GRAVITYVIEW_DIR . 'includes/class-common.php' ); |
|
120 | + require_once( GRAVITYVIEW_DIR . 'includes/connector-functions.php' ); |
|
121 | 121 | require_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-compatibility.php' ); |
122 | 122 | require_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-roles-capabilities.php' ); |
123 | 123 | require_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-admin-notices.php' ); |
124 | 124 | require_once( GRAVITYVIEW_DIR . 'includes/class-admin.php' ); |
125 | - require_once( GRAVITYVIEW_DIR . 'includes/class-post-types.php'); |
|
126 | - require_once( GRAVITYVIEW_DIR . 'includes/class-cache.php'); |
|
125 | + require_once( GRAVITYVIEW_DIR . 'includes/class-post-types.php' ); |
|
126 | + require_once( GRAVITYVIEW_DIR . 'includes/class-cache.php' ); |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | /** |
@@ -156,22 +156,22 @@ discard block |
||
156 | 156 | } |
157 | 157 | |
158 | 158 | include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-entry-approval-status.php' ); |
159 | - include_once( GRAVITYVIEW_DIR .'includes/class-gravityview-entry-approval.php' ); |
|
159 | + include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-entry-approval.php' ); |
|
160 | 160 | |
161 | - include_once( GRAVITYVIEW_DIR .'includes/class-gravityview-entry-notes.php' ); |
|
162 | - include_once( GRAVITYVIEW_DIR .'includes/load-plugin-and-theme-hooks.php' ); |
|
161 | + include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-entry-notes.php' ); |
|
162 | + include_once( GRAVITYVIEW_DIR . 'includes/load-plugin-and-theme-hooks.php' ); |
|
163 | 163 | |
164 | 164 | // Load Extensions |
165 | 165 | // @todo: Convert to a scan of the directory or a method where this all lives |
166 | - include_once( GRAVITYVIEW_DIR .'includes/extensions/edit-entry/class-edit-entry.php' ); |
|
167 | - include_once( GRAVITYVIEW_DIR .'includes/extensions/delete-entry/class-delete-entry.php' ); |
|
168 | - include_once( GRAVITYVIEW_DIR .'includes/extensions/entry-notes/class-gravityview-field-notes.php' ); |
|
166 | + include_once( GRAVITYVIEW_DIR . 'includes/extensions/edit-entry/class-edit-entry.php' ); |
|
167 | + include_once( GRAVITYVIEW_DIR . 'includes/extensions/delete-entry/class-delete-entry.php' ); |
|
168 | + include_once( GRAVITYVIEW_DIR . 'includes/extensions/entry-notes/class-gravityview-field-notes.php' ); |
|
169 | 169 | |
170 | 170 | // Load WordPress Widgets |
171 | - include_once( GRAVITYVIEW_DIR .'includes/wordpress-widgets/register-wordpress-widgets.php' ); |
|
171 | + include_once( GRAVITYVIEW_DIR . 'includes/wordpress-widgets/register-wordpress-widgets.php' ); |
|
172 | 172 | |
173 | 173 | // Load GravityView Widgets |
174 | - include_once( GRAVITYVIEW_DIR .'includes/widgets/register-gravityview-widgets.php' ); |
|
174 | + include_once( GRAVITYVIEW_DIR . 'includes/widgets/register-gravityview-widgets.php' ); |
|
175 | 175 | |
176 | 176 | // Add oEmbed |
177 | 177 | include_once( GRAVITYVIEW_DIR . 'includes/class-oembed.php' ); |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | include_once( GRAVITYVIEW_DIR . 'includes/class-frontend-views.php' ); |
185 | 185 | include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-admin-bar.php' ); |
186 | 186 | include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-entry-list.php' ); |
187 | - include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-merge-tags.php'); /** @since 1.8.4 */ |
|
187 | + include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-merge-tags.php' ); /** @since 1.8.4 */ |
|
188 | 188 | include_once( GRAVITYVIEW_DIR . 'includes/class-data.php' ); |
189 | 189 | include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-shortcode.php' ); |
190 | 190 | include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-entry-link-shortcode.php' ); |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | * @return bool |
200 | 200 | */ |
201 | 201 | public static function is_network_activated() { |
202 | - return is_multisite() && ( function_exists('is_plugin_active_for_network') && is_plugin_active_for_network( 'gravityview/gravityview.php' ) ); |
|
202 | + return is_multisite() && ( function_exists( 'is_plugin_active_for_network' ) && is_plugin_active_for_network( 'gravityview/gravityview.php' ) ); |
|
203 | 203 | } |
204 | 204 | |
205 | 205 | |
@@ -220,12 +220,12 @@ discard block |
||
220 | 220 | |
221 | 221 | if ( php_sapi_name() == 'cli' ) { |
222 | 222 | printf( __( "GravityView requires PHP Version %s or newer. You're using Version %s. Please ask your host to upgrade your server's PHP.", 'gravityview' ), |
223 | - GV_FUTURE_MIN_PHP_VERSION , phpversion() ); |
|
223 | + GV_FUTURE_MIN_PHP_VERSION, phpversion() ); |
|
224 | 224 | } else { |
225 | 225 | printf( '<body style="padding: 0; margin: 0; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\', sans-serif;">' ); |
226 | 226 | printf( '<img src="' . plugins_url( 'assets/images/astronaut-200x263.png', GRAVITYVIEW_FILE ) . '" alt="The GravityView Astronaut Says:" style="float: left; height: 60px; margin-right : 10px;" />' ); |
227 | 227 | printf( __( "%sGravityView requires PHP Version %s or newer.%s \n\nYou're using Version %s. Please ask your host to upgrade your server's PHP.", 'gravityview' ), |
228 | - '<h3 style="font-size:16px; margin: 0 0 8px 0;">', GV_FUTURE_MIN_PHP_VERSION , "</h3>\n\n", $version ); |
|
228 | + '<h3 style="font-size:16px; margin: 0 0 8px 0;">', GV_FUTURE_MIN_PHP_VERSION, "</h3>\n\n", $version ); |
|
229 | 229 | printf( '</body>' ); |
230 | 230 | } |
231 | 231 | |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | * @since 1.7.5.1 |
296 | 296 | */ |
297 | 297 | public static function include_widget_class() { |
298 | - include_once( GRAVITYVIEW_DIR .'includes/widgets/class-gravityview-widget.php' ); |
|
298 | + include_once( GRAVITYVIEW_DIR . 'includes/widgets/class-gravityview-widget.php' ); |
|
299 | 299 | } |
300 | 300 | |
301 | 301 | |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | } |
318 | 318 | if ( ! $loaded ) { |
319 | 319 | $locale = apply_filters( 'plugin_locale', get_locale(), 'gravityview' ); |
320 | - $mofile = dirname( __FILE__ ) . '/languages/gravityview-'. $locale .'.mo'; |
|
320 | + $mofile = dirname( __FILE__ ) . '/languages/gravityview-' . $locale . '.mo'; |
|
321 | 321 | load_textdomain( 'gravityview', $mofile ); |
322 | 322 | } |
323 | 323 | |
@@ -354,12 +354,12 @@ discard block |
||
354 | 354 | */ |
355 | 355 | public function frontend_actions( $force = false ) { |
356 | 356 | |
357 | - if( self::is_admin() && ! $force ) { return; } |
|
357 | + if ( self::is_admin() && ! $force ) { return; } |
|
358 | 358 | |
359 | 359 | include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-image.php' ); |
360 | - include_once( GRAVITYVIEW_DIR .'includes/class-template.php' ); |
|
361 | - include_once( GRAVITYVIEW_DIR .'includes/class-api.php' ); |
|
362 | - include_once( GRAVITYVIEW_DIR .'includes/class-frontend-views.php' ); |
|
360 | + include_once( GRAVITYVIEW_DIR . 'includes/class-template.php' ); |
|
361 | + include_once( GRAVITYVIEW_DIR . 'includes/class-api.php' ); |
|
362 | + include_once( GRAVITYVIEW_DIR . 'includes/class-frontend-views.php' ); |
|
363 | 363 | include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-change-entry-creator.php' ); |
364 | 364 | |
365 | 365 | |
@@ -384,8 +384,8 @@ discard block |
||
384 | 384 | */ |
385 | 385 | public static function get_default_widget_areas() { |
386 | 386 | $default_areas = array( |
387 | - array( '1-1' => array( array( 'areaid' => 'top', 'title' => __('Top', 'gravityview' ) , 'subtitle' => '' ) ) ), |
|
388 | - array( '1-2' => array( array( 'areaid' => 'left', 'title' => __('Left', 'gravityview') , 'subtitle' => '' ) ), '2-2' => array( array( 'areaid' => 'right', 'title' => __('Right', 'gravityview') , 'subtitle' => '' ) ) ), |
|
387 | + array( '1-1' => array( array( 'areaid' => 'top', 'title' => __( 'Top', 'gravityview' ), 'subtitle' => '' ) ) ), |
|
388 | + array( '1-2' => array( array( 'areaid' => 'left', 'title' => __( 'Left', 'gravityview' ), 'subtitle' => '' ) ), '2-2' => array( array( 'areaid' => 'right', 'title' => __( 'Right', 'gravityview' ), 'subtitle' => '' ) ) ), |
|
389 | 389 | ); |
390 | 390 | |
391 | 391 | /** |
@@ -403,7 +403,7 @@ discard block |
||
403 | 403 | * @param mixed $data Additional data to display |
404 | 404 | * @return void |
405 | 405 | */ |
406 | - public static function log_debug( $message, $data = null ){ |
|
406 | + public static function log_debug( $message, $data = null ) { |
|
407 | 407 | /** |
408 | 408 | * @action `gravityview_log_debug` Log a debug message that shows up in the Gravity Forms Logging Addon and also the Debug Bar plugin output |
409 | 409 | * @param string $message Message to display |
@@ -417,7 +417,7 @@ discard block |
||
417 | 417 | * @param string $message log message |
418 | 418 | * @return void |
419 | 419 | */ |
420 | - public static function log_error( $message, $data = null ){ |
|
420 | + public static function log_error( $message, $data = null ) { |
|
421 | 421 | /** |
422 | 422 | * @action `gravityview_log_error` Log an error message that shows up in the Gravity Forms Logging Addon and also the Debug Bar plugin output |
423 | 423 | * @param string $message Error message to display |
@@ -428,4 +428,4 @@ discard block |
||
428 | 428 | |
429 | 429 | } // end class GravityView_Plugin |
430 | 430 | |
431 | -add_action('plugins_loaded', array('GravityView_Plugin', 'getInstance'), 1); |
|
431 | +add_action( 'plugins_loaded', array( 'GravityView_Plugin', 'getInstance' ), 1 ); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public static function get_instance() { |
35 | 35 | |
36 | - if( ! self::$instance ) { |
|
36 | + if ( ! self::$instance ) { |
|
37 | 37 | self::$instance = new self; |
38 | 38 | } |
39 | 39 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | add_filter( 'members_get_capabilities', array( 'GravityView_Roles_Capabilities', 'merge_with_all_caps' ) ); |
57 | 57 | add_action( 'members_register_cap_groups', array( $this, 'members_register_cap_group' ), 20 ); |
58 | 58 | add_filter( 'user_has_cap', array( $this, 'filter_user_has_cap' ), 10, 4 ); |
59 | - add_action( 'admin_init', array( $this, 'add_caps') ); |
|
59 | + add_action( 'admin_init', array( $this, 'add_caps' ) ); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | |
@@ -77,18 +77,18 @@ discard block |
||
77 | 77 | public function filter_user_has_cap( $usercaps = array(), $caps = array(), $args = array(), $user = NULL ) { |
78 | 78 | |
79 | 79 | // Empty caps_to_check array |
80 | - if( ! $usercaps || ! $caps ) { |
|
80 | + if ( ! $usercaps || ! $caps ) { |
|
81 | 81 | return $usercaps; |
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
85 | 85 | * Enable all GravityView caps_to_check if `gravityview_full_access` is enabled |
86 | 86 | */ |
87 | - if( ! empty( $usercaps['gravityview_full_access'] ) ) { |
|
87 | + if ( ! empty( $usercaps[ 'gravityview_full_access' ] ) ) { |
|
88 | 88 | |
89 | 89 | $all_gravityview_caps = self::all_caps(); |
90 | 90 | |
91 | - foreach( $all_gravityview_caps as $gv_cap ) { |
|
91 | + foreach ( $all_gravityview_caps as $gv_cap ) { |
|
92 | 92 | $usercaps[ $gv_cap ] = true; |
93 | 93 | } |
94 | 94 | |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | $all = $administrator; |
307 | 307 | |
308 | 308 | // If role is set, return caps_to_check for just that role. |
309 | - if( $single_role ) { |
|
309 | + if ( $single_role ) { |
|
310 | 310 | $caps = isset( ${$single_role} ) ? ${$single_role} : false; |
311 | 311 | return $flat_array ? $caps : array( $single_role => $caps ); |
312 | 312 | } |
@@ -364,13 +364,13 @@ discard block |
||
364 | 364 | $caps_to_check = self::maybe_add_full_access_caps( $caps_to_check ); |
365 | 365 | |
366 | 366 | foreach ( $caps_to_check as $cap ) { |
367 | - if( ! is_null( $object_id ) ) { |
|
367 | + if ( ! is_null( $object_id ) ) { |
|
368 | 368 | $has_cap = $user_id ? user_can( $user_id, $cap, $object_id ) : current_user_can( $cap, $object_id ); |
369 | 369 | } else { |
370 | 370 | $has_cap = $user_id ? user_can( $user_id, $cap ) : current_user_can( $cap ); |
371 | 371 | } |
372 | 372 | // At the first successful response, stop checking |
373 | - if( $has_cap ) { |
|
373 | + if ( $has_cap ) { |
|
374 | 374 | break; |
375 | 375 | } |
376 | 376 | } |
@@ -394,15 +394,15 @@ discard block |
||
394 | 394 | $all_gravityview_caps = self::all_caps(); |
395 | 395 | |
396 | 396 | // Are there any $caps_to_check that are from GravityView? |
397 | - if( $has_gravityview_caps = array_intersect( $caps_to_check, $all_gravityview_caps ) ) { |
|
398 | - $caps_to_check[] = 'gravityview_full_access'; |
|
397 | + if ( $has_gravityview_caps = array_intersect( $caps_to_check, $all_gravityview_caps ) ) { |
|
398 | + $caps_to_check[ ] = 'gravityview_full_access'; |
|
399 | 399 | } |
400 | 400 | |
401 | 401 | $all_gravity_forms_caps = class_exists( 'GFCommon' ) ? GFCommon::all_caps() : array(); |
402 | 402 | |
403 | 403 | // Are there any $caps_to_check that are from Gravity Forms? |
404 | - if( $all_gravity_forms_caps = array_intersect( $caps_to_check, $all_gravity_forms_caps ) ) { |
|
405 | - $caps_to_check[] = 'gform_full_access'; |
|
404 | + if ( $all_gravity_forms_caps = array_intersect( $caps_to_check, $all_gravity_forms_caps ) ) { |
|
405 | + $caps_to_check[ ] = 'gform_full_access'; |
|
406 | 406 | } |
407 | 407 | |
408 | 408 | return array_unique( $caps_to_check ); |
@@ -424,7 +424,7 @@ discard block |
||
424 | 424 | $capabilities = self::all_caps(); |
425 | 425 | |
426 | 426 | // Loop through each role and remove GV caps_to_check |
427 | - foreach( $wp_roles->get_names() as $role_slug => $role_name ) { |
|
427 | + foreach ( $wp_roles->get_names() as $role_slug => $role_name ) { |
|
428 | 428 | foreach ( $capabilities as $cap ) { |
429 | 429 | $wp_roles->remove_cap( $role_slug, $cap ); |
430 | 430 | } |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | */ |
40 | 40 | $default_settings = apply_filters( 'gravityview_default_args', array( |
41 | 41 | 'id' => array( |
42 | - 'label' => __('View ID', 'gravityview'), |
|
42 | + 'label' => __( 'View ID', 'gravityview' ), |
|
43 | 43 | 'type' => 'number', |
44 | 44 | 'group' => 'default', |
45 | 45 | 'value' => NULL, |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | 'show_in_shortcode' => false, |
48 | 48 | ), |
49 | 49 | 'page_size' => array( |
50 | - 'label' => __('Number of entries per page', 'gravityview'), |
|
50 | + 'label' => __( 'Number of entries per page', 'gravityview' ), |
|
51 | 51 | 'type' => 'number', |
52 | 52 | 'class' => 'small-text', |
53 | 53 | 'group' => 'default', |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | 'show_in_shortcode' => true, |
56 | 56 | ), |
57 | 57 | 'offset' => array( |
58 | - 'label' => __('Offset entries starting from', 'gravityview'), |
|
58 | + 'label' => __( 'Offset entries starting from', 'gravityview' ), |
|
59 | 59 | 'type' => 'number', |
60 | 60 | 'class' => 'small-text', |
61 | 61 | 'group' => 'default', |
@@ -79,8 +79,8 @@ discard block |
||
79 | 79 | ), |
80 | 80 | 'admin_show_all_statuses' => array( |
81 | 81 | 'label' => __( 'Show all entries to administrators', 'gravityview' ), |
82 | - 'desc' => __('Administrators will be able to see entries with any approval status.', 'gravityview'), |
|
83 | - 'tooltip' => __('Logged-out visitors and non-administrators will only see approved entries, while administrators will see entries with all statuses. This makes it easier for administrators to moderate entries from a View.', 'gravityview'), |
|
82 | + 'desc' => __( 'Administrators will be able to see entries with any approval status.', 'gravityview' ), |
|
83 | + 'tooltip' => __( 'Logged-out visitors and non-administrators will only see approved entries, while administrators will see entries with all statuses. This makes it easier for administrators to moderate entries from a View.', 'gravityview' ), |
|
84 | 84 | 'requires' => 'show_only_approved', |
85 | 85 | 'type' => 'checkbox', |
86 | 86 | 'group' => 'default', |
@@ -105,40 +105,40 @@ discard block |
||
105 | 105 | 'user_edit' => array( |
106 | 106 | 'label' => __( 'Allow User Edit', 'gravityview' ), |
107 | 107 | 'group' => 'default', |
108 | - 'desc' => __('Allow logged-in users to edit entries they created.', 'gravityview'), |
|
108 | + 'desc' => __( 'Allow logged-in users to edit entries they created.', 'gravityview' ), |
|
109 | 109 | 'value' => 0, |
110 | - 'tooltip' => __('Display "Edit Entry" fields to non-administrator users if they created the entry. Edit Entry fields will always be displayed to site administrators.', 'gravityview'), |
|
110 | + 'tooltip' => __( 'Display "Edit Entry" fields to non-administrator users if they created the entry. Edit Entry fields will always be displayed to site administrators.', 'gravityview' ), |
|
111 | 111 | 'type' => 'checkbox', |
112 | 112 | 'show_in_shortcode' => true, |
113 | 113 | ), |
114 | 114 | 'user_delete' => array( |
115 | 115 | 'label' => __( 'Allow User Delete', 'gravityview' ), |
116 | 116 | 'group' => 'default', |
117 | - 'desc' => __('Allow logged-in users to delete entries they created.', 'gravityview'), |
|
117 | + 'desc' => __( 'Allow logged-in users to delete entries they created.', 'gravityview' ), |
|
118 | 118 | 'value' => 0, |
119 | - 'tooltip' => __('Display "Delete Entry" fields to non-administrator users if they created the entry. Delete Entry fields will always be displayed to site administrators.', 'gravityview'), |
|
119 | + 'tooltip' => __( 'Display "Delete Entry" fields to non-administrator users if they created the entry. Delete Entry fields will always be displayed to site administrators.', 'gravityview' ), |
|
120 | 120 | 'type' => 'checkbox', |
121 | 121 | 'show_in_shortcode' => true, |
122 | 122 | ), |
123 | 123 | 'sort_field' => array( |
124 | - 'label' => __('Sort by field', 'gravityview'), |
|
124 | + 'label' => __( 'Sort by field', 'gravityview' ), |
|
125 | 125 | 'type' => 'select', |
126 | 126 | 'value' => '', |
127 | 127 | 'group' => 'sort', |
128 | 128 | 'options' => array( |
129 | - '' => __( 'Default', 'gravityview'), |
|
130 | - 'date_created' => __( 'Date Created', 'gravityview'), |
|
129 | + '' => __( 'Default', 'gravityview' ), |
|
130 | + 'date_created' => __( 'Date Created', 'gravityview' ), |
|
131 | 131 | ), |
132 | 132 | 'show_in_shortcode' => true, |
133 | 133 | ), |
134 | 134 | 'sort_direction' => array( |
135 | - 'label' => __('Sort direction', 'gravityview'), |
|
135 | + 'label' => __( 'Sort direction', 'gravityview' ), |
|
136 | 136 | 'type' => 'select', |
137 | 137 | 'value' => 'ASC', |
138 | 138 | 'group' => 'sort', |
139 | 139 | 'options' => array( |
140 | - 'ASC' => __('ASC', 'gravityview'), |
|
141 | - 'DESC' => __('DESC', 'gravityview'), |
|
140 | + 'ASC' => __( 'ASC', 'gravityview' ), |
|
141 | + 'DESC' => __( 'DESC', 'gravityview' ), |
|
142 | 142 | //'RAND' => __('Random', 'gravityview'), |
143 | 143 | ), |
144 | 144 | 'show_in_shortcode' => true, |
@@ -154,69 +154,69 @@ discard block |
||
154 | 154 | 'show_in_template' => array( 'default_table', 'preset_business_data', 'preset_issue_tracker', 'preset_resume_board', 'preset_job_board' ), |
155 | 155 | ), |
156 | 156 | 'start_date' => array( |
157 | - 'label' => __('Filter by Start Date', 'gravityview'), |
|
157 | + 'label' => __( 'Filter by Start Date', 'gravityview' ), |
|
158 | 158 | 'class' => 'gv-datepicker', |
159 | - 'desc' => __('Show entries submitted after this date. Supports relative dates, such as "-1 week" or "-1 month".', 'gravityview' ), |
|
159 | + 'desc' => __( 'Show entries submitted after this date. Supports relative dates, such as "-1 week" or "-1 month".', 'gravityview' ), |
|
160 | 160 | 'type' => 'text', |
161 | 161 | 'value' => '', |
162 | 162 | 'group' => 'filter', |
163 | 163 | 'show_in_shortcode' => true, |
164 | 164 | ), |
165 | 165 | 'end_date' => array( |
166 | - 'label' => __('Filter by End Date', 'gravityview'), |
|
166 | + 'label' => __( 'Filter by End Date', 'gravityview' ), |
|
167 | 167 | 'class' => 'gv-datepicker', |
168 | - 'desc' => __('Show entries submitted before this date. Supports relative dates, such as "now" or "-3 days".', 'gravityview' ), |
|
168 | + 'desc' => __( 'Show entries submitted before this date. Supports relative dates, such as "now" or "-3 days".', 'gravityview' ), |
|
169 | 169 | 'type' => 'text', |
170 | 170 | 'value' => '', |
171 | 171 | 'group' => 'filter', |
172 | 172 | 'show_in_shortcode' => true, |
173 | 173 | ), |
174 | 174 | 'class' => array( |
175 | - 'label' => __('CSS Class', 'gravityview'), |
|
176 | - 'desc' => __('CSS class to add to the wrapping HTML container.', 'gravityview'), |
|
175 | + 'label' => __( 'CSS Class', 'gravityview' ), |
|
176 | + 'desc' => __( 'CSS class to add to the wrapping HTML container.', 'gravityview' ), |
|
177 | 177 | 'group' => 'default', |
178 | 178 | 'type' => 'text', |
179 | 179 | 'value' => '', |
180 | 180 | 'show_in_shortcode' => false, |
181 | 181 | ), |
182 | 182 | 'search_value' => array( |
183 | - 'label' => __('Search Value', 'gravityview'), |
|
184 | - 'desc' => __('Define a default search value for the View', 'gravityview'), |
|
183 | + 'label' => __( 'Search Value', 'gravityview' ), |
|
184 | + 'desc' => __( 'Define a default search value for the View', 'gravityview' ), |
|
185 | 185 | 'type' => 'text', |
186 | 186 | 'value' => '', |
187 | 187 | 'group' => 'filter', |
188 | 188 | 'show_in_shortcode' => false, |
189 | 189 | ), |
190 | 190 | 'search_field' => array( |
191 | - 'label' => __('Search Field', 'gravityview'), |
|
192 | - 'desc' => __('If Search Value is set, you can define a specific field to search in. Otherwise, all fields will be searched.', 'gravityview'), |
|
191 | + 'label' => __( 'Search Field', 'gravityview' ), |
|
192 | + 'desc' => __( 'If Search Value is set, you can define a specific field to search in. Otherwise, all fields will be searched.', 'gravityview' ), |
|
193 | 193 | 'type' => 'number', |
194 | 194 | 'value' => '', |
195 | 195 | 'group' => 'filter', |
196 | 196 | 'show_in_shortcode' => false, |
197 | 197 | ), |
198 | 198 | 'single_title' => array( |
199 | - 'label' => __('Single Entry Title', 'gravityview'), |
|
199 | + 'label' => __( 'Single Entry Title', 'gravityview' ), |
|
200 | 200 | 'type' => 'text', |
201 | - 'desc' => __('When viewing a single entry, change the title of the page to this setting. Otherwise, the title will not change between the Multiple Entries and Single Entry views.', 'gravityview'), |
|
201 | + 'desc' => __( 'When viewing a single entry, change the title of the page to this setting. Otherwise, the title will not change between the Multiple Entries and Single Entry views.', 'gravityview' ), |
|
202 | 202 | 'group' => 'default', |
203 | 203 | 'value' => '', |
204 | 204 | 'show_in_shortcode' => false, |
205 | 205 | 'full_width' => true, |
206 | 206 | ), |
207 | 207 | 'back_link_label' => array( |
208 | - 'label' => __('Back Link Label', 'gravityview'), |
|
208 | + 'label' => __( 'Back Link Label', 'gravityview' ), |
|
209 | 209 | 'group' => 'default', |
210 | - 'desc' => __('The text of the link that returns to the multiple entries view.', 'gravityview'), |
|
210 | + 'desc' => __( 'The text of the link that returns to the multiple entries view.', 'gravityview' ), |
|
211 | 211 | 'type' => 'text', |
212 | 212 | 'value' => '', |
213 | 213 | 'show_in_shortcode' => false, |
214 | 214 | 'full_width' => true, |
215 | 215 | ), |
216 | 216 | 'embed_only' => array( |
217 | - 'label' => __('Prevent Direct Access', 'gravityview'), |
|
217 | + 'label' => __( 'Prevent Direct Access', 'gravityview' ), |
|
218 | 218 | 'group' => 'default', |
219 | - 'desc' => __('Only allow access to this View when embedded using the shortcode.', 'gravityview'), |
|
219 | + 'desc' => __( 'Only allow access to this View when embedded using the shortcode.', 'gravityview' ), |
|
220 | 220 | 'type' => 'checkbox', |
221 | 221 | 'value' => '', |
222 | 222 | 'tooltip' => false, |
@@ -239,19 +239,19 @@ discard block |
||
239 | 239 | // By default, we only want the key => value pairing, not the whole array. |
240 | 240 | if ( ! $detailed ) { |
241 | 241 | $defaults = array(); |
242 | - foreach( $default_settings as $key => $value ) { |
|
243 | - $defaults[ $key ] = $value['value']; |
|
242 | + foreach ( $default_settings as $key => $value ) { |
|
243 | + $defaults[ $key ] = $value[ 'value' ]; |
|
244 | 244 | } |
245 | 245 | return $defaults; |
246 | 246 | |
247 | 247 | // But sometimes, we want all the details. |
248 | 248 | } else { |
249 | - foreach ($default_settings as $key => $value) { |
|
249 | + foreach ( $default_settings as $key => $value ) { |
|
250 | 250 | |
251 | 251 | // If the $group argument is set for the method, |
252 | 252 | // ignore any settings that aren't in that group. |
253 | 253 | if ( ! empty( $group ) && is_string( $group ) ) { |
254 | - if ( empty( $value['group'] ) || $value['group'] !== $group ) { |
|
254 | + if ( empty( $value[ 'group' ] ) || $value[ 'group' ] !== $group ) { |
|
255 | 255 | unset( $default_settings[ $key ] ); |
256 | 256 | } |
257 | 257 | } |
@@ -26,24 +26,24 @@ |
||
26 | 26 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
27 | 27 | |
28 | 28 | // Don't link to entry; doesn't make sense. |
29 | - unset( $field_options['show_as_link'] ); |
|
29 | + unset( $field_options[ 'show_as_link' ] ); |
|
30 | 30 | |
31 | - if( 'edit' === $context ) { |
|
31 | + if ( 'edit' === $context ) { |
|
32 | 32 | return $field_options; |
33 | 33 | } |
34 | 34 | |
35 | 35 | $add_options = array(); |
36 | - $add_options['link_to_source'] = array( |
|
36 | + $add_options[ 'link_to_source' ] = array( |
|
37 | 37 | 'type' => 'checkbox', |
38 | 38 | 'label' => __( 'Link to URL:', 'gravityview' ), |
39 | - 'desc' => __('Display as a link to the Source URL', 'gravityview'), |
|
39 | + 'desc' => __( 'Display as a link to the Source URL', 'gravityview' ), |
|
40 | 40 | 'value' => false, |
41 | 41 | 'merge_tags' => false, |
42 | 42 | ); |
43 | - $add_options['source_link_text'] = array( |
|
43 | + $add_options[ 'source_link_text' ] = array( |
|
44 | 44 | 'type' => 'text', |
45 | 45 | 'label' => __( 'Link Text:', 'gravityview' ), |
46 | - 'desc' => __('Customize the link text. If empty, the link text will be the URL.', 'gravityview'), |
|
46 | + 'desc' => __( 'Customize the link text. If empty, the link text will be the URL.', 'gravityview' ), |
|
47 | 47 | 'value' => NULL, |
48 | 48 | 'merge_tags' => true, |
49 | 49 | ); |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | */ |
41 | 41 | public static function by_id( $entry_id ) { |
42 | 42 | $entry = \GFAPI::get_entry( $entry_id ); |
43 | - if ( !$entry ) { |
|
43 | + if ( ! $entry ) { |
|
44 | 44 | return null; |
45 | 45 | } |
46 | 46 | |
@@ -55,14 +55,14 @@ discard block |
||
55 | 55 | * @return \GV\Entry|null An instance of this entry or null if not found. |
56 | 56 | */ |
57 | 57 | public static function from_entry( $entry ) { |
58 | - if ( empty( $entry['id'] ) ) { |
|
58 | + if ( empty( $entry[ 'id' ] ) ) { |
|
59 | 59 | return null; |
60 | 60 | } |
61 | 61 | |
62 | 62 | $self = new self(); |
63 | 63 | $self->entry = $entry; |
64 | 64 | |
65 | - $self->ID = $self->entry['id']; |
|
65 | + $self->ID = $self->entry[ 'id' ]; |
|
66 | 66 | |
67 | 67 | return $self; |
68 | 68 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | * @return bool Whether the offset exists or not. |
77 | 77 | */ |
78 | 78 | public function offsetExists( $offset ) { |
79 | - return isset( $this->entry[$offset] ); |
|
79 | + return isset( $this->entry[ $offset ] ); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | * @return mixed The value of the requested entry data. |
92 | 92 | */ |
93 | 93 | public function offsetGet( $offset ) { |
94 | - return $this->entry[$offset]; |
|
94 | + return $this->entry[ $offset ]; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
@@ -7,9 +7,9 @@ discard block |
||
7 | 7 | |
8 | 8 | function __construct() { |
9 | 9 | |
10 | - add_action( 'gravityview_log_error', array( $this, 'log_error'), 10, 2 ); |
|
10 | + add_action( 'gravityview_log_error', array( $this, 'log_error' ), 10, 2 ); |
|
11 | 11 | |
12 | - add_action( 'gravityview_log_debug', array( $this, 'log_debug'), 10, 2 ); |
|
12 | + add_action( 'gravityview_log_debug', array( $this, 'log_debug' ), 10, 2 ); |
|
13 | 13 | |
14 | 14 | // Enable debug with Gravity Forms Logging Add-on |
15 | 15 | add_filter( 'gform_logging_supported', array( $this, 'enable_gform_logging' ) ); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | include_once( GRAVITYVIEW_DIR . 'includes/class-debug-bar.php' ); |
35 | 35 | } |
36 | 36 | |
37 | - $panels[] = new GravityView_Debug_Bar; |
|
37 | + $panels[ ] = new GravityView_Debug_Bar; |
|
38 | 38 | |
39 | 39 | return $panels; |
40 | 40 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | * @param array $supported_plugins List of plugins |
45 | 45 | */ |
46 | 46 | public function enable_gform_logging( $supported_plugins ) { |
47 | - $supported_plugins['gravityview'] = 'GravityView'; |
|
47 | + $supported_plugins[ 'gravityview' ] = 'GravityView'; |
|
48 | 48 | return $supported_plugins; |
49 | 49 | } |
50 | 50 | |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | * @return string "print_r" or "var_export" |
73 | 73 | */ |
74 | 74 | static function get_print_function() { |
75 | - if( ob_get_level() > 0 ) { |
|
75 | + if ( ob_get_level() > 0 ) { |
|
76 | 76 | $function = 'var_export'; |
77 | 77 | } else { |
78 | 78 | $function = 'print_r'; |
@@ -90,17 +90,17 @@ discard block |
||
90 | 90 | 'data' => $data, |
91 | 91 | ); |
92 | 92 | |
93 | - if( !in_array( $notice, self::$notices ) ) { |
|
94 | - self::$notices[] = $notice; |
|
93 | + if ( ! in_array( $notice, self::$notices ) ) { |
|
94 | + self::$notices[ ] = $notice; |
|
95 | 95 | } |
96 | 96 | |
97 | - if ( class_exists("GFLogging") ) { |
|
97 | + if ( class_exists( "GFLogging" ) ) { |
|
98 | 98 | GFLogging::include_logger(); |
99 | - GFLogging::log_message( 'gravityview', $function( $message, true ) . $function($data, true), KLogger::DEBUG ); |
|
99 | + GFLogging::log_message( 'gravityview', $function( $message, true ) . $function( $data, true ), KLogger::DEBUG ); |
|
100 | 100 | } |
101 | 101 | } |
102 | 102 | |
103 | - static function log_error( $message = '', $data = null ) { |
|
103 | + static function log_error( $message = '', $data = null ) { |
|
104 | 104 | |
105 | 105 | $function = self::get_print_function(); |
106 | 106 | |
@@ -110,13 +110,13 @@ discard block |
||
110 | 110 | 'backtrace' => function_exists( 'wp_debug_backtrace_summary' ) ? wp_debug_backtrace_summary( null, 3 ) : '', |
111 | 111 | ); |
112 | 112 | |
113 | - if( !in_array( $error, self::$errors ) ) { |
|
114 | - self::$errors[] = $error; |
|
113 | + if ( ! in_array( $error, self::$errors ) ) { |
|
114 | + self::$errors[ ] = $error; |
|
115 | 115 | } |
116 | 116 | |
117 | - if ( class_exists("GFLogging") ) { |
|
117 | + if ( class_exists( "GFLogging" ) ) { |
|
118 | 118 | GFLogging::include_logger(); |
119 | - GFLogging::log_message( 'gravityview', $function ( $message, true ) . $function ( $error, true), KLogger::ERROR ); |
|
119 | + GFLogging::log_message( 'gravityview', $function( $message, true ) . $function( $error, true ), KLogger::ERROR ); |
|
120 | 120 | } |
121 | 121 | } |
122 | 122 |