@@ -17,7 +17,7 @@ |
||
17 | 17 | return self::$instance; |
18 | 18 | } |
19 | 19 | |
20 | - public function shortcode( $atts, $content = '', $tag = '') { |
|
20 | + public function shortcode( $atts, $content = '', $tag = '' ) { |
|
21 | 21 | $shortcode = new \GV\Shortcodes\gvlogic(); |
22 | 22 | return $shortcode->callback( $atts, $content, $tag ); |
23 | 23 | } |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | 'total' => wp_count_posts( 'gravityview' )->publish, |
64 | 64 | ); |
65 | 65 | foreach ( $items as $item ) { |
66 | - $data['views'][] = $this->prepare_view_for_response( $item, $request ); |
|
66 | + $data[ 'views' ][ ] = $this->prepare_view_for_response( $item, $request ); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | return new \WP_REST_Response( $data, 200 ); |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | |
83 | 83 | $url = $request->get_url_params(); |
84 | 84 | |
85 | - $view_id = intval( $url['id'] ); |
|
85 | + $view_id = intval( $url[ 'id' ] ); |
|
86 | 86 | |
87 | 87 | $item = get_post( $view_id ); |
88 | 88 | |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | // Only output the fields that should be displayed. |
115 | 115 | $allowed = array(); |
116 | 116 | foreach ( $view->fields->by_position( "{$context}_*" )->by_visible( $view )->all() as $field ) { |
117 | - $allowed[] = $field; |
|
117 | + $allowed[ ] = $field; |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | |
134 | 134 | // Tack on additional fields if needed |
135 | 135 | foreach ( array_diff( $allowed_field_ids, wp_list_pluck( $allowed, 'ID' ) ) as $field_id ) { |
136 | - $allowed[] = is_numeric( $field_id ) ? \GV\GF_Field::by_id( $view->form, $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
|
136 | + $allowed[ ] = is_numeric( $field_id ) ? \GV\GF_Field::by_id( $view->form, $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | $r = new Request( $request ); |
@@ -211,10 +211,10 @@ discard block |
||
211 | 211 | public function get_sub_items( $request ) { |
212 | 212 | |
213 | 213 | $url = $request->get_url_params(); |
214 | - $view_id = intval( $url['id'] ); |
|
214 | + $view_id = intval( $url[ 'id' ] ); |
|
215 | 215 | $format = \GV\Utils::get( $url, 'format', 'json' ); |
216 | 216 | |
217 | - if( $post_id = $request->get_param('post_id') ) { |
|
217 | + if ( $post_id = $request->get_param( 'post_id' ) ) { |
|
218 | 218 | global $post; |
219 | 219 | |
220 | 220 | $post = get_post( $post_id ); |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | |
320 | 320 | $data = array( 'entries' => $entries->all(), 'total' => $entries->total() ); |
321 | 321 | |
322 | - foreach ( $data['entries'] as &$entry ) { |
|
322 | + foreach ( $data[ 'entries' ] as &$entry ) { |
|
323 | 323 | $entry = $this->prepare_entry_for_response( $view, $entry, $request, 'directory' ); |
324 | 324 | } |
325 | 325 | |
@@ -338,8 +338,8 @@ discard block |
||
338 | 338 | */ |
339 | 339 | public function get_sub_item( $request ) { |
340 | 340 | $url = $request->get_url_params(); |
341 | - $view_id = intval( $url['id'] ); |
|
342 | - $entry_id = intval( $url['s_id'] ); |
|
341 | + $view_id = intval( $url[ 'id' ] ); |
|
342 | + $entry_id = intval( $url[ 's_id' ] ); |
|
343 | 343 | $format = \GV\Utils::get( $url, 'format', 'json' ); |
344 | 344 | |
345 | 345 | $view = \GV\View::by_id( $view_id ); |
@@ -374,32 +374,32 @@ discard block |
||
374 | 374 | // Add all the WP_Post data |
375 | 375 | $view_post = $view_post->to_array(); |
376 | 376 | |
377 | - unset( $view_post['to_ping'], $view_post['ping_status'], $view_post['pinged'], $view_post['post_type'], $view_post['filter'], $view_post['post_category'], $view_post['tags_input'], $view_post['post_content'], $view_post['post_content_filtered'] ); |
|
377 | + unset( $view_post[ 'to_ping' ], $view_post[ 'ping_status' ], $view_post[ 'pinged' ], $view_post[ 'post_type' ], $view_post[ 'filter' ], $view_post[ 'post_category' ], $view_post[ 'tags_input' ], $view_post[ 'post_content' ], $view_post[ 'post_content_filtered' ] ); |
|
378 | 378 | |
379 | 379 | $return = wp_parse_args( $item, $view_post ); |
380 | 380 | |
381 | - $return['title'] = $return['post_title']; |
|
381 | + $return[ 'title' ] = $return[ 'post_title' ]; |
|
382 | 382 | |
383 | - $return['settings'] = isset( $return['atts'] ) ? $return['atts'] : array(); |
|
384 | - unset( $return['atts'], $return['view_id'] ); |
|
383 | + $return[ 'settings' ] = isset( $return[ 'atts' ] ) ? $return[ 'atts' ] : array(); |
|
384 | + unset( $return[ 'atts' ], $return[ 'view_id' ] ); |
|
385 | 385 | |
386 | - $return['search_criteria'] = array( |
|
386 | + $return[ 'search_criteria' ] = array( |
|
387 | 387 | 'page_size' => rgars( $return, 'settings/page_size' ), |
388 | 388 | 'sort_field' => rgars( $return, 'settings/sort_field' ), |
389 | 389 | 'sort_direction' => rgars( $return, 'settings/sort_direction' ), |
390 | 390 | 'offset' => rgars( $return, 'settings/offset' ), |
391 | 391 | ); |
392 | 392 | |
393 | - unset( $return['settings']['page_size'], $return['settings']['sort_field'], $return['settings']['sort_direction'] ); |
|
393 | + unset( $return[ 'settings' ][ 'page_size' ], $return[ 'settings' ][ 'sort_field' ], $return[ 'settings' ][ 'sort_direction' ] ); |
|
394 | 394 | |
395 | 395 | // Redact for non-logged ins |
396 | 396 | if ( ! \GVCommon::has_cap( 'edit_others_gravityviews' ) ) { |
397 | - unset( $return['settings'] ); |
|
398 | - unset( $return['search_criteria'] ); |
|
397 | + unset( $return[ 'settings' ] ); |
|
398 | + unset( $return[ 'search_criteria' ] ); |
|
399 | 399 | } |
400 | 400 | |
401 | 401 | if ( ! \GFCommon::current_user_can_any( 'gravityforms_edit_forms' ) ) { |
402 | - unset( $return['form'] ); |
|
402 | + unset( $return[ 'form' ] ); |
|
403 | 403 | } |
404 | 404 | |
405 | 405 | return $return; |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | $view_id = func_get_arg( 1 ); // $view_id override |
416 | 416 | } else { |
417 | 417 | $url = $request->get_url_params(); |
418 | - $view_id = intval( $url['id'] ); |
|
418 | + $view_id = intval( $url[ 'id' ] ); |
|
419 | 419 | } |
420 | 420 | |
421 | 421 | if ( ! $view = \GV\View::by_id( $view_id ) ) { |
@@ -461,8 +461,8 @@ discard block |
||
461 | 461 | } |
462 | 462 | |
463 | 463 | $url = $request->get_url_params(); |
464 | - $view_id = intval( $url['id'] ); |
|
465 | - $entry_id = intval( $url['s_id'] ); |
|
464 | + $view_id = intval( $url[ 'id' ] ); |
|
465 | + $entry_id = intval( $url[ 's_id' ] ); |
|
466 | 466 | |
467 | 467 | $view = \GV\View::by_id( $view_id ); |
468 | 468 | |
@@ -470,11 +470,11 @@ discard block |
||
470 | 470 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
471 | 471 | } |
472 | 472 | |
473 | - if ( $entry['form_id'] != $view->form->ID ) { |
|
473 | + if ( $entry[ 'form_id' ] != $view->form->ID ) { |
|
474 | 474 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
475 | 475 | } |
476 | 476 | |
477 | - if ( $entry['status'] != 'active' ) { |
|
477 | + if ( $entry[ 'status' ] != 'active' ) { |
|
478 | 478 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
479 | 479 | } |
480 | 480 | |
@@ -482,10 +482,10 @@ discard block |
||
482 | 482 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
483 | 483 | } |
484 | 484 | |
485 | - $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap('gravityview_moderate_entries', $view->ID ); |
|
485 | + $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap( 'gravityview_moderate_entries', $view->ID ); |
|
486 | 486 | |
487 | 487 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
488 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
488 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
489 | 489 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
490 | 490 | } |
491 | 491 | } |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * |
88 | 88 | * @param array $file_paths List of template paths ordered |
89 | 89 | * |
90 | - * @return array File paths, with duplicate field path added at index 117 |
|
90 | + * @return string[] File paths, with duplicate field path added at index 117 |
|
91 | 91 | */ |
92 | 92 | public function add_template_path( $file_paths ) { |
93 | 93 | |
@@ -193,7 +193,6 @@ discard block |
||
193 | 193 | * @since 2.5 |
194 | 194 | * |
195 | 195 | * @param array $visibility_caps Array of capabilities to display in field dropdown. |
196 | - * @param string $field_type Type of field options to render (`field` or `widget`) |
|
197 | 196 | * @param string $template_id Table slug |
198 | 197 | * @param float|string $field_id GF Field ID - Example: `3`, `5.2`, `entry_link`, `created_by` |
199 | 198 | * @param string $context What context are we in? Example: `single` or `directory` |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | */ |
247 | 247 | public static function get_duplicate_link( $entry, $view_id, $post_id = null ) { |
248 | 248 | |
249 | - $base = GravityView_API::directory_link( $post_id ? : $view_id, true ); |
|
249 | + $base = GravityView_API::directory_link( $post_id ? : $view_id, true ); |
|
250 | 250 | |
251 | 251 | if ( empty( $base ) ) { |
252 | 252 | gravityview()->log->error( 'Post ID does not exist: {post_id}', array( 'post_id' => $post_id ) ); |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | 'action' => 'duplicate', |
258 | 258 | 'entry_id' => $entry['id'], |
259 | 259 | 'gvid' => $view_id, |
260 | - 'view_id' => $view_id, |
|
260 | + 'view_id' => $view_id, |
|
261 | 261 | ), $base ); |
262 | 262 | |
263 | 263 | return add_query_arg( 'duplicate', wp_create_nonce( self::get_nonce_key( $entry['id'] ) ), $actionurl ); |
@@ -460,7 +460,7 @@ discard block |
||
460 | 460 | * @since 2.5 |
461 | 461 | * @param array $duplicated_entry The duplicated entry |
462 | 462 | * @param array $entry The original entry |
463 | - */ |
|
463 | + */ |
|
464 | 464 | do_action( 'gravityview/duplicate-entry/duplicated', $duplicated_entry, $entry ); |
465 | 465 | |
466 | 466 | gravityview()->log->debug( 'Duplicate response: {duplicate_response}', array( 'duplicate_response' => $duplicate_response ) ); |
@@ -115,12 +115,12 @@ discard block |
||
115 | 115 | public function duplicate_link_field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
116 | 116 | |
117 | 117 | // Always a link, never a filter, always same window |
118 | - unset( $field_options['show_as_link'], $field_options['search_filter'], $field_options['new_window'] ); |
|
118 | + unset( $field_options[ 'show_as_link' ], $field_options[ 'search_filter' ], $field_options[ 'new_window' ] ); |
|
119 | 119 | |
120 | 120 | // Duplicate Entry link should only appear to visitors capable of editing entries |
121 | - unset( $field_options['only_loggedin'], $field_options['only_loggedin_cap'] ); |
|
121 | + unset( $field_options[ 'only_loggedin' ], $field_options[ 'only_loggedin_cap' ] ); |
|
122 | 122 | |
123 | - $add_option['duplicate_link'] = array( |
|
123 | + $add_option[ 'duplicate_link' ] = array( |
|
124 | 124 | 'type' => 'text', |
125 | 125 | 'label' => __( 'Duplicate Link Text', 'gravityview' ), |
126 | 126 | 'desc' => NULL, |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | 'merge_tags' => true, |
129 | 129 | ); |
130 | 130 | |
131 | - $field_options['allow_duplicate_cap'] = array( |
|
131 | + $field_options[ 'allow_duplicate_cap' ] = array( |
|
132 | 132 | 'type' => 'select', |
133 | 133 | 'label' => __( 'Allow the following users to duplicate the entry:', 'gravityview' ), |
134 | 134 | 'choices' => GravityView_Render_Settings::get_cap_choices( $template_id, $field_id, $context, $input_type ), |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | public function add_default_field( $entry_default_fields, $form = array(), $zone = '' ) { |
156 | 156 | |
157 | 157 | if ( 'edit' !== $zone ) { |
158 | - $entry_default_fields['duplicate_link'] = array( |
|
158 | + $entry_default_fields[ 'duplicate_link' ] = array( |
|
159 | 159 | 'label' => __( 'Duplicate Entry', 'gravityview' ), |
160 | 160 | 'type' => 'duplicate_link', |
161 | 161 | 'desc' => __( 'A link to duplicate the entry. Respects the Duplicate Entry permissions.', 'gravityview' ), |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | */ |
177 | 177 | public function add_available_field( $available_fields = array() ) { |
178 | 178 | |
179 | - $available_fields['duplicate_link'] = array( |
|
179 | + $available_fields[ 'duplicate_link' ] = array( |
|
180 | 180 | 'label_text' => __( 'Duplicate Entry', 'gravityview' ), |
181 | 181 | 'field_id' => 'duplicate_link', |
182 | 182 | 'label_type' => 'field', |
@@ -209,9 +209,9 @@ discard block |
||
209 | 209 | if ( 'duplicate_link' === $field_id ) { |
210 | 210 | |
211 | 211 | // Remove other built-in caps. |
212 | - unset( $caps['publish_posts'], $caps['gravityforms_view_entries'], $caps['duplicate_others_posts'] ); |
|
212 | + unset( $caps[ 'publish_posts' ], $caps[ 'gravityforms_view_entries' ], $caps[ 'duplicate_others_posts' ] ); |
|
213 | 213 | |
214 | - $caps['read'] = _x( 'Entry Creator', 'User capability', 'gravityview' ); |
|
214 | + $caps[ 'read' ] = _x( 'Entry Creator', 'User capability', 'gravityview' ); |
|
215 | 215 | } |
216 | 216 | |
217 | 217 | return $caps; |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | */ |
247 | 247 | public static function get_duplicate_link( $entry, $view_id, $post_id = null ) { |
248 | 248 | |
249 | - $base = GravityView_API::directory_link( $post_id ? : $view_id, true ); |
|
249 | + $base = GravityView_API::directory_link( $post_id ?: $view_id, true ); |
|
250 | 250 | |
251 | 251 | if ( empty( $base ) ) { |
252 | 252 | gravityview()->log->error( 'Post ID does not exist: {post_id}', array( 'post_id' => $post_id ) ); |
@@ -255,12 +255,12 @@ discard block |
||
255 | 255 | |
256 | 256 | $actionurl = add_query_arg( array( |
257 | 257 | 'action' => 'duplicate', |
258 | - 'entry_id' => $entry['id'], |
|
258 | + 'entry_id' => $entry[ 'id' ], |
|
259 | 259 | 'gvid' => $view_id, |
260 | 260 | 'view_id' => $view_id, |
261 | 261 | ), $base ); |
262 | 262 | |
263 | - return add_query_arg( 'duplicate', wp_create_nonce( self::get_nonce_key( $entry['id'] ) ), $actionurl ); |
|
263 | + return add_query_arg( 'duplicate', wp_create_nonce( self::get_nonce_key( $entry[ 'id' ] ) ), $actionurl ); |
|
264 | 264 | } |
265 | 265 | |
266 | 266 | /** |
@@ -281,12 +281,12 @@ discard block |
||
281 | 281 | public function process_duplicate() { |
282 | 282 | |
283 | 283 | // If the form is submitted |
284 | - if ( ( ! isset( $_GET['action'] ) ) || 'duplicate' !== $_GET['action'] || ( ! isset( $_GET['entry_id'] ) ) ) { |
|
284 | + if ( ( ! isset( $_GET[ 'action' ] ) ) || 'duplicate' !== $_GET[ 'action' ] || ( ! isset( $_GET[ 'entry_id' ] ) ) ) { |
|
285 | 285 | return; |
286 | 286 | } |
287 | 287 | |
288 | 288 | // Make sure it's a GravityView request |
289 | - $valid_nonce_key = wp_verify_nonce( \GV\Utils::_GET( 'duplicate' ), self::get_nonce_key( $_GET['entry_id'] ) ); |
|
289 | + $valid_nonce_key = wp_verify_nonce( \GV\Utils::_GET( 'duplicate' ), self::get_nonce_key( $_GET[ 'entry_id' ] ) ); |
|
290 | 290 | |
291 | 291 | if ( ! $valid_nonce_key ) { |
292 | 292 | gravityview()->log->debug( 'Duplicate entry not processed: nonce validation failed.' ); |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | } |
295 | 295 | |
296 | 296 | // Get the entry slug |
297 | - $entry_slug = esc_attr( $_GET['entry_id'] ); |
|
297 | + $entry_slug = esc_attr( $_GET[ 'entry_id' ] ); |
|
298 | 298 | |
299 | 299 | // See if there's an entry there |
300 | 300 | $entry = gravityview_get_entry( $entry_slug, true, false ); |
@@ -388,17 +388,17 @@ discard block |
||
388 | 388 | return new WP_Error( 'gravityview-duplicate-entry-missing', __( 'The entry does not exist.', 'gravityview' ) ); |
389 | 389 | } |
390 | 390 | |
391 | - $form = GFAPI::get_form( $entry['form_id'] ); |
|
391 | + $form = GFAPI::get_form( $entry[ 'form_id' ] ); |
|
392 | 392 | |
393 | - $row['id'] = null; |
|
394 | - $row['date_created'] = date( 'Y-m-d H:i:s', time() ); |
|
395 | - $row['date_updated'] = $row['date_created']; |
|
396 | - $row['is_starred'] = false; |
|
397 | - $row['is_read'] = false; |
|
398 | - $row['ip'] = rgars( $form, 'personalData/preventIP' ) ? '' : GFFormsModel::get_ip(); |
|
399 | - $row['source_url'] = esc_url_raw( remove_query_arg( array( 'action', 'gvid', 'result', 'duplicate', 'entry_id' ) ) ); |
|
400 | - $row['user_agent'] = \GV\Utils::_SERVER( 'HTTP_USER_AGENT' ); |
|
401 | - $row['created_by'] = wp_get_current_user()->ID; |
|
393 | + $row[ 'id' ] = null; |
|
394 | + $row[ 'date_created' ] = date( 'Y-m-d H:i:s', time() ); |
|
395 | + $row[ 'date_updated' ] = $row[ 'date_created' ]; |
|
396 | + $row[ 'is_starred' ] = false; |
|
397 | + $row[ 'is_read' ] = false; |
|
398 | + $row[ 'ip' ] = rgars( $form, 'personalData/preventIP' ) ? '' : GFFormsModel::get_ip(); |
|
399 | + $row[ 'source_url' ] = esc_url_raw( remove_query_arg( array( 'action', 'gvid', 'result', 'duplicate', 'entry_id' ) ) ); |
|
400 | + $row[ 'user_agent' ] = \GV\Utils::_SERVER( 'HTTP_USER_AGENT' ); |
|
401 | + $row[ 'created_by' ] = wp_get_current_user()->ID; |
|
402 | 402 | |
403 | 403 | /** |
404 | 404 | * @filter `gravityview/entry/duplicate/details` Modify the new entry details before it's created. |
@@ -426,15 +426,15 @@ discard block |
||
426 | 426 | |
427 | 427 | $save_this_meta = array(); |
428 | 428 | foreach ( $duplicate_meta->get_output() as $m ) { |
429 | - $save_this_meta[] = array( |
|
430 | - 'meta_key' => $m['meta_key'], |
|
431 | - 'meta_value' => $m['meta_value'], |
|
432 | - 'item_index' => $m['item_index'], |
|
429 | + $save_this_meta[ ] = array( |
|
430 | + 'meta_key' => $m[ 'meta_key' ], |
|
431 | + 'meta_value' => $m[ 'meta_value' ], |
|
432 | + 'item_index' => $m[ 'item_index' ], |
|
433 | 433 | ); |
434 | 434 | } |
435 | 435 | |
436 | 436 | // Update the row ID for later usage |
437 | - $row['id'] = $duplicated_id; |
|
437 | + $row[ 'id' ] = $duplicated_id; |
|
438 | 438 | |
439 | 439 | /** |
440 | 440 | * @filter `gravityview/entry/duplicate/meta` Modify the new entry meta details. |
@@ -445,8 +445,8 @@ discard block |
||
445 | 445 | $save_this_meta = apply_filters( 'gravityview/entry/duplicate/meta', $save_this_meta, $row, $entry ); |
446 | 446 | |
447 | 447 | foreach ( $save_this_meta as $data ) { |
448 | - $data['form_id'] = $entry['form_id']; |
|
449 | - $data['entry_id'] = $duplicated_id; |
|
448 | + $data[ 'form_id' ] = $entry[ 'form_id' ]; |
|
449 | + $data[ 'entry_id' ] = $duplicated_id; |
|
450 | 450 | |
451 | 451 | if ( ! $wpdb->insert( $entry_meta_table, $data ) ) { |
452 | 452 | return new WP_Error( 'gravityview-duplicate-entry-db-meta', __( 'There was an error duplicating the entry.', 'gravityview' ) ); |
@@ -480,13 +480,13 @@ discard block |
||
480 | 480 | public function verify_nonce() { |
481 | 481 | |
482 | 482 | // No duplicate entry request was made |
483 | - if ( empty( $_GET['entry_id'] ) || empty( $_GET['duplicate'] ) ) { |
|
483 | + if ( empty( $_GET[ 'entry_id' ] ) || empty( $_GET[ 'duplicate' ] ) ) { |
|
484 | 484 | return false; |
485 | 485 | } |
486 | 486 | |
487 | - $nonce_key = self::get_nonce_key( $_GET['entry_id'] ); |
|
487 | + $nonce_key = self::get_nonce_key( $_GET[ 'entry_id' ] ); |
|
488 | 488 | |
489 | - $valid = wp_verify_nonce( $_GET['duplicate'], $nonce_key ); |
|
489 | + $valid = wp_verify_nonce( $_GET[ 'duplicate' ], $nonce_key ); |
|
490 | 490 | |
491 | 491 | /** |
492 | 492 | * @filter `gravityview/duplicate-entry/verify_nonce` Override Duplicate Entry nonce validation. Return true to declare nonce valid. |
@@ -522,7 +522,7 @@ discard block |
||
522 | 522 | return ''; |
523 | 523 | } |
524 | 524 | |
525 | - return 'return window.confirm(\''. esc_js( $confirm ) .'\');'; |
|
525 | + return 'return window.confirm(\'' . esc_js( $confirm ) . '\');'; |
|
526 | 526 | } |
527 | 527 | |
528 | 528 | /** |
@@ -576,7 +576,7 @@ discard block |
||
576 | 576 | public static function check_user_cap_duplicate_entry( $entry, $field = array(), $view_id = 0 ) { |
577 | 577 | $current_user = wp_get_current_user(); |
578 | 578 | |
579 | - $entry_id = isset( $entry['id'] ) ? $entry['id'] : null; |
|
579 | + $entry_id = isset( $entry[ 'id' ] ) ? $entry[ 'id' ] : null; |
|
580 | 580 | |
581 | 581 | // Or if they can duplicate any entries (as defined in Gravity Forms), we're good. |
582 | 582 | if ( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gform_full_access', 'gravityview_full_access' ), $entry_id ) ) { |
@@ -591,17 +591,17 @@ discard block |
||
591 | 591 | if ( ! empty( $field ) ) { |
592 | 592 | |
593 | 593 | // If capability is not defined, something is not right! |
594 | - if ( empty( $field['allow_duplicate_cap'] ) ) { |
|
594 | + if ( empty( $field[ 'allow_duplicate_cap' ] ) ) { |
|
595 | 595 | |
596 | 596 | gravityview()->log->error( 'Cannot read duplicate entry field caps', array( 'data' => $field ) ); |
597 | 597 | |
598 | 598 | return false; |
599 | 599 | } |
600 | 600 | |
601 | - if ( GVCommon::has_cap( $field['allow_duplicate_cap'] ) ) { |
|
601 | + if ( GVCommon::has_cap( $field[ 'allow_duplicate_cap' ] ) ) { |
|
602 | 602 | |
603 | 603 | // Do not return true if cap is read, as we need to check if the current user created the entry |
604 | - if ( 'read' !== $field['allow_duplicate_cap'] ) { |
|
604 | + if ( 'read' !== $field[ 'allow_duplicate_cap' ] ) { |
|
605 | 605 | return true; |
606 | 606 | } |
607 | 607 | |
@@ -614,7 +614,7 @@ discard block |
||
614 | 614 | |
615 | 615 | } |
616 | 616 | |
617 | - if ( ! isset( $entry['created_by'] ) ) { |
|
617 | + if ( ! isset( $entry[ 'created_by' ] ) ) { |
|
618 | 618 | |
619 | 619 | gravityview()->log->error( 'Cannot duplicate entry; entry `created_by` doesn\'t exist.' ); |
620 | 620 | |
@@ -639,7 +639,7 @@ discard block |
||
639 | 639 | } |
640 | 640 | |
641 | 641 | // If the logged-in user is the same as the user who created the entry, we're good. |
642 | - if ( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry['created_by'] ) ) { |
|
642 | + if ( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry[ 'created_by' ] ) ) { |
|
643 | 643 | |
644 | 644 | gravityview()->log->debug( 'User {user_id} created the entry.', array( 'user_id' => $current_user->ID ) ); |
645 | 645 | |
@@ -663,12 +663,12 @@ discard block |
||
663 | 663 | * @return void |
664 | 664 | */ |
665 | 665 | public function maybe_display_message( $current_view_id = 0 ) { |
666 | - if ( empty( $_GET['status'] ) || ! self::verify_nonce() ) { |
|
666 | + if ( empty( $_GET[ 'status' ] ) || ! self::verify_nonce() ) { |
|
667 | 667 | return; |
668 | 668 | } |
669 | 669 | |
670 | 670 | // Entry wasn't duplicated from current View |
671 | - if ( isset( $_GET['view_id'] ) && ( intval( $_GET['view_id'] ) !== intval( $current_view_id ) ) ) { |
|
671 | + if ( isset( $_GET[ 'view_id' ] ) && ( intval( $_GET[ 'view_id' ] ) !== intval( $current_view_id ) ) ) { |
|
672 | 672 | return; |
673 | 673 | } |
674 | 674 | |
@@ -676,11 +676,11 @@ discard block |
||
676 | 676 | } |
677 | 677 | |
678 | 678 | public function display_message() { |
679 | - if ( empty( $_GET['status'] ) || empty( $_GET['duplicate'] ) ) { |
|
679 | + if ( empty( $_GET[ 'status' ] ) || empty( $_GET[ 'duplicate' ] ) ) { |
|
680 | 680 | return; |
681 | 681 | } |
682 | 682 | |
683 | - $status = esc_attr( $_GET['status'] ); |
|
683 | + $status = esc_attr( $_GET[ 'status' ] ); |
|
684 | 684 | $message_from_url = \GV\Utils::_GET( 'message' ); |
685 | 685 | $message_from_url = rawurldecode( stripslashes_deep( $message_from_url ) ); |
686 | 686 | $class = ''; |
@@ -706,7 +706,7 @@ discard block |
||
706 | 706 | $message = apply_filters( 'gravityview/duplicate-entry/message', esc_attr( $message ), $status, $message_from_url ); |
707 | 707 | |
708 | 708 | // DISPLAY ERROR/SUCCESS MESSAGE |
709 | - echo '<div class="gv-notice' . esc_attr( $class ) .'">'. $message .'</div>'; |
|
709 | + echo '<div class="gv-notice' . esc_attr( $class ) . '">' . $message . '</div>'; |
|
710 | 710 | } |
711 | 711 | |
712 | 712 | /** |
@@ -737,7 +737,7 @@ discard block |
||
737 | 737 | ?> |
738 | 738 | <span class="gv-duplicate"> |
739 | 739 | | |
740 | - <a href="<?php echo wp_nonce_url( add_query_arg( 'entry_id', $entry['id'] ), self::get_nonce_key( $entry['id'] ), 'duplicate' ); ?>"><?php esc_html_e( 'Duplicate', 'gravityview' ); ?></a> |
|
740 | + <a href="<?php echo wp_nonce_url( add_query_arg( 'entry_id', $entry[ 'id' ] ), self::get_nonce_key( $entry[ 'id' ] ), 'duplicate' ); ?>"><?php esc_html_e( 'Duplicate', 'gravityview' ); ?></a> |
|
741 | 741 | </span> |
742 | 742 | <?php |
743 | 743 | } |
@@ -759,9 +759,9 @@ discard block |
||
759 | 759 | |
760 | 760 | if ( 'success' === \GV\Utils::_GET( 'result' ) ) { |
761 | 761 | add_filter( 'gform_admin_messages', function( $messages ) { |
762 | - $messages = (array) $messages; |
|
762 | + $messages = (array)$messages; |
|
763 | 763 | |
764 | - $messages[] = esc_html__( 'Entry duplicated.', 'gravityview' ); |
|
764 | + $messages[ ] = esc_html__( 'Entry duplicated.', 'gravityview' ); |
|
765 | 765 | return $messages; |
766 | 766 | } ); |
767 | 767 | } |
@@ -772,7 +772,7 @@ discard block |
||
772 | 772 | |
773 | 773 | $check_logs_message = ''; |
774 | 774 | |
775 | - if( $is_logging_active ) { |
|
775 | + if ( $is_logging_active ) { |
|
776 | 776 | $check_logs_message = sprintf( ' <a href="%s">%s</a>', |
777 | 777 | esc_url( admin_url( 'admin.php?page=gf_settings&subview=gravityformslogging' ) ), |
778 | 778 | esc_html_x( 'Check the GravityView logs for more information.', 'Error message links to logging page', 'gravityview' ) |
@@ -780,9 +780,9 @@ discard block |
||
780 | 780 | } |
781 | 781 | |
782 | 782 | add_filter( 'gform_admin_error_messages', function( $messages ) use ( $check_logs_message ) { |
783 | - $messages = (array) $messages; |
|
783 | + $messages = (array)$messages; |
|
784 | 784 | |
785 | - $messages[] = esc_html__( 'There was an error duplicating the entry.', 'gravityview' ) . $check_logs_message; |
|
785 | + $messages[ ] = esc_html__( 'There was an error duplicating the entry.', 'gravityview' ) . $check_logs_message; |
|
786 | 786 | |
787 | 787 | return $messages; |
788 | 788 | } ); |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | |
19 | 19 | public function __construct() { |
20 | 20 | $this->label = esc_html__( 'Unsubscribe', 'gravityview' ); |
21 | - $this->description = esc_attr__( 'Unsubscribe from a Payment-based entry.', 'gravityview' ); |
|
21 | + $this->description = esc_attr__( 'Unsubscribe from a Payment-based entry.', 'gravityview' ); |
|
22 | 22 | |
23 | 23 | $this->add_hooks(); |
24 | 24 | |
@@ -57,13 +57,13 @@ discard block |
||
57 | 57 | */ |
58 | 58 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
59 | 59 | |
60 | - unset( $field_options['only_loggedin'] ); |
|
60 | + unset( $field_options[ 'only_loggedin' ] ); |
|
61 | 61 | |
62 | - unset( $field_options['new_window'] ); |
|
62 | + unset( $field_options[ 'new_window' ] ); |
|
63 | 63 | |
64 | - unset( $field_options['show_as_link'] ); |
|
64 | + unset( $field_options[ 'show_as_link' ] ); |
|
65 | 65 | |
66 | - $add_options['unsub_all'] = array( |
|
66 | + $add_options[ 'unsub_all' ] = array( |
|
67 | 67 | 'type' => 'checkbox', |
68 | 68 | 'label' => __( 'Allow admins to unsubscribe', 'gravityview' ), |
69 | 69 | 'desc' => __( 'Allow users with `gravityforms_edit_entries` to cancel subscriptions', 'gravityview' ), |
@@ -130,9 +130,9 @@ discard block |
||
130 | 130 | } |
131 | 131 | |
132 | 132 | foreach ( $feeds as $feed ) { |
133 | - if ( isset( $subscription_addons[ $feed['addon_slug'] ] ) && 'subscription' === \GV\Utils::get( $feed, 'meta/transactionType' ) ) { |
|
134 | - if ( ! isset( $entry_default_fields["{$this->name}"] ) && 'edit' !== $context ) { |
|
135 | - $entry_default_fields["{$this->name}"] = array( |
|
133 | + if ( isset( $subscription_addons[ $feed[ 'addon_slug' ] ] ) && 'subscription' === \GV\Utils::get( $feed, 'meta/transactionType' ) ) { |
|
134 | + if ( ! isset( $entry_default_fields[ "{$this->name}" ] ) && 'edit' !== $context ) { |
|
135 | + $entry_default_fields[ "{$this->name}" ] = array( |
|
136 | 136 | 'label' => $this->label, |
137 | 137 | 'desc' => $this->description, |
138 | 138 | 'type' => $this->name, |
@@ -163,10 +163,10 @@ discard block |
||
163 | 163 | return $output; |
164 | 164 | } |
165 | 165 | |
166 | - $can_current_user_edit = is_numeric( $entry['created_by'] ) && ( wp_get_current_user()->ID === intval( $entry['created_by'] ) ); |
|
166 | + $can_current_user_edit = is_numeric( $entry[ 'created_by' ] ) && ( wp_get_current_user()->ID === intval( $entry[ 'created_by' ] ) ); |
|
167 | 167 | |
168 | 168 | if ( ! $can_current_user_edit ) { |
169 | - if ( empty( $field_settings['unsub_all'] ) || ! \GVCommon::has_cap( 'gravityforms_edit_entries', $entry['id'] ) ) { |
|
169 | + if ( empty( $field_settings[ 'unsub_all' ] ) || ! \GVCommon::has_cap( 'gravityforms_edit_entries', $entry[ 'id' ] ) ) { |
|
170 | 170 | return $output; |
171 | 171 | } |
172 | 172 | } |
@@ -179,21 +179,21 @@ discard block |
||
179 | 179 | // @todo Also make sure we check caps if moved from here |
180 | 180 | // @todo Also make sure test_GravityView_Field_Unsubscribe_unsubscribe_permissions is rewritten |
181 | 181 | if ( $entry = $this->maybe_unsubscribe( $entry ) ) { |
182 | - if ( $entry['payment_status'] !== $status ) { |
|
182 | + if ( $entry[ 'payment_status' ] !== $status ) { |
|
183 | 183 | // @todo Probably __( 'Unsubscribed', 'gravityview' ); |
184 | - return $entry['payment_status']; |
|
184 | + return $entry[ 'payment_status' ]; |
|
185 | 185 | } |
186 | 186 | } |
187 | 187 | |
188 | - if ( 'active' !== mb_strtolower( $entry['payment_status'] ) ) { |
|
188 | + if ( 'active' !== mb_strtolower( $entry[ 'payment_status' ] ) ) { |
|
189 | 189 | return $output; |
190 | 190 | } |
191 | 191 | |
192 | 192 | global $wp; |
193 | 193 | $current_url = add_query_arg( $wp->query_string, '', home_url( $wp->request ) ); |
194 | 194 | |
195 | - $link = add_query_arg( 'unsubscribe', wp_create_nonce( 'unsubscribe_' . $entry['id'] ), $current_url ); |
|
196 | - $link = add_query_arg( 'uid', $entry['id'], $link ); |
|
195 | + $link = add_query_arg( 'unsubscribe', wp_create_nonce( 'unsubscribe_' . $entry[ 'id' ] ), $current_url ); |
|
196 | + $link = add_query_arg( 'uid', $entry[ 'id' ], $link ); |
|
197 | 197 | |
198 | 198 | return sprintf( '<a href="%s">%s</a>', esc_url( $link ), esc_html__( 'Unsubscribe', 'gravityview' ) ); |
199 | 199 | } |
@@ -213,11 +213,11 @@ discard block |
||
213 | 213 | */ |
214 | 214 | private function maybe_unsubscribe( $entry ) { |
215 | 215 | |
216 | - if ( ! wp_verify_nonce( \GV\Utils::_REQUEST( 'unsubscribe' ), 'unsubscribe_' . $entry['id'] ) ) { |
|
216 | + if ( ! wp_verify_nonce( \GV\Utils::_REQUEST( 'unsubscribe' ), 'unsubscribe_' . $entry[ 'id' ] ) ) { |
|
217 | 217 | return $entry; |
218 | 218 | } |
219 | 219 | |
220 | - if ( ( ! $uid = \GV\Utils::_REQUEST( 'uid' ) ) || ! is_numeric( $uid ) || ( intval( $uid ) !== intval( $entry['id'] ) ) ) { |
|
220 | + if ( ( ! $uid = \GV\Utils::_REQUEST( 'uid' ) ) || ! is_numeric( $uid ) || ( intval( $uid ) !== intval( $entry[ 'id' ] ) ) ) { |
|
221 | 221 | return $entry; |
222 | 222 | } |
223 | 223 | |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | |
260 | 260 | $subscription_addons[ $slug ]->cancel_subscription( $entry, $feed ); |
261 | 261 | |
262 | - return \GFAPI::get_entry( $entry['id'] ); |
|
262 | + return \GFAPI::get_entry( $entry[ 'id' ] ); |
|
263 | 263 | } |
264 | 264 | } |
265 | 265 | } |
@@ -262,6 +262,8 @@ |
||
262 | 262 | /** |
263 | 263 | * Process the attributes passed to the shortcode. Make sure they're valid |
264 | 264 | * |
265 | + * @param string $content |
|
266 | + * @param string $tag |
|
265 | 267 | * @return array Array of attributes parsed for the shortcode |
266 | 268 | */ |
267 | 269 | private function parse_atts( $atts, $content, $tag ) { |
@@ -58,13 +58,13 @@ discard block |
||
58 | 58 | $value = $this->get_value( $atts ); |
59 | 59 | |
60 | 60 | if ( false === $operator && is_null( $value ) ) { |
61 | - if ( false !== $atts['if'] ) { // Only-if test |
|
62 | - $match = $authed && ! in_array( strtolower( $atts['if'] ), array( '', '0', 'false', 'no' ) ); |
|
61 | + if ( false !== $atts[ 'if' ] ) { // Only-if test |
|
62 | + $match = $authed && ! in_array( strtolower( $atts[ 'if' ] ), array( '', '0', 'false', 'no' ) ); |
|
63 | 63 | } else { |
64 | 64 | $match = $authed; // Just login test |
65 | 65 | } |
66 | 66 | } else { // Regular test |
67 | - $match = $authed && \GVCommon::matches_operation( $atts['if'], $value, $operator ); |
|
67 | + $match = $authed && \GVCommon::matches_operation( $atts[ 'if' ], $value, $operator ); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | $output = $this->get_output( $match, $atts, $content ); |
@@ -150,8 +150,8 @@ discard block |
||
150 | 150 | * @return string The output. |
151 | 151 | */ |
152 | 152 | private function get_output( $match, $atts, $content ) { |
153 | - if ( ! $match && ! empty( $atts['else'] ) ) { |
|
154 | - return $atts['else']; // Attributized else is easy :) |
|
153 | + if ( ! $match && ! empty( $atts[ 'else' ] ) ) { |
|
154 | + return $atts[ 'else' ]; // Attributized else is easy :) |
|
155 | 155 | } |
156 | 156 | |
157 | 157 | $if = ''; |
@@ -278,18 +278,18 @@ discard block |
||
278 | 278 | $atts = array_intersect_key( $supplied_atts, $atts ); |
279 | 279 | |
280 | 280 | // Strip whitespace if it's not default false |
281 | - if ( isset( $atts['if'] ) && is_string( $atts['if'] ) ) { |
|
282 | - $atts['if'] = trim( $atts['if'] ); |
|
281 | + if ( isset( $atts[ 'if' ] ) && is_string( $atts[ 'if' ] ) ) { |
|
282 | + $atts[ 'if' ] = trim( $atts[ 'if' ] ); |
|
283 | 283 | } else { |
284 | - $atts['if'] = false; |
|
284 | + $atts[ 'if' ] = false; |
|
285 | 285 | } |
286 | 286 | |
287 | - if ( isset( $atts['logged_in'] ) ) { |
|
287 | + if ( isset( $atts[ 'logged_in' ] ) ) { |
|
288 | 288 | // Truthy |
289 | - if ( in_array( strtolower( $atts['logged_in'] ), array( '0', 'false', 'no' ) ) ) { |
|
290 | - $atts['logged_in'] = false; |
|
289 | + if ( in_array( strtolower( $atts[ 'logged_in' ] ), array( '0', 'false', 'no' ) ) ) { |
|
290 | + $atts[ 'logged_in' ] = false; |
|
291 | 291 | } else { |
292 | - $atts['logged_in'] = true; |
|
292 | + $atts[ 'logged_in' ] = true; |
|
293 | 293 | } |
294 | 294 | } |
295 | 295 |
@@ -58,12 +58,14 @@ discard block |
||
58 | 58 | $value = $this->get_value( $atts ); |
59 | 59 | |
60 | 60 | if ( false === $operator && is_null( $value ) ) { |
61 | - if ( false !== $atts['if'] ) { // Only-if test |
|
61 | + if ( false !== $atts['if'] ) { |
|
62 | +// Only-if test |
|
62 | 63 | $match = $authed && ! in_array( strtolower( $atts['if'] ), array( '', '0', 'false', 'no' ) ); |
63 | 64 | } else { |
64 | 65 | $match = $authed; // Just login test |
65 | 66 | } |
66 | - } else { // Regular test |
|
67 | + } else { |
|
68 | +// Regular test |
|
67 | 69 | $match = $authed && \GVCommon::matches_operation( $atts['if'], $value, $operator ); |
68 | 70 | } |
69 | 71 | |
@@ -160,12 +162,15 @@ discard block |
||
160 | 162 | $opens = 0; // inner opens |
161 | 163 | $found = false; // found split position |
162 | 164 | |
163 | - while ( $content ) { // scan |
|
165 | + while ( $content ) { |
|
166 | +// scan |
|
164 | 167 | |
165 | 168 | if ( ! preg_match( '#(.*?)(\[\/?(gvlogic|else).*?])(.*)#s', $content, $matches ) ) { |
166 | - if ( ! $found ) { // We're still iffing. |
|
169 | + if ( ! $found ) { |
|
170 | +// We're still iffing. |
|
167 | 171 | $if .= $content; |
168 | - } else { // We are elsing |
|
172 | + } else { |
|
173 | +// We are elsing |
|
169 | 174 | $else .= $content; |
170 | 175 | } |
171 | 176 | break; // No more shortcodes |
@@ -173,9 +178,11 @@ discard block |
||
173 | 178 | |
174 | 179 | list( $_, $before_shortcode, $shortcode, $_, $after_shortcode ) = $matches; |
175 | 180 | |
176 | - if ( ! $found ) { // We're still iffing. |
|
181 | + if ( ! $found ) { |
|
182 | +// We're still iffing. |
|
177 | 183 | $if .= $before_shortcode; |
178 | - } else { // We are elsing |
|
184 | + } else { |
|
185 | +// We are elsing |
|
179 | 186 | $else .= $before_shortcode; |
180 | 187 | } |
181 | 188 | |
@@ -199,9 +206,11 @@ discard block |
||
199 | 206 | } |
200 | 207 | |
201 | 208 | // Tack on the shortcode |
202 | - if ( ! $found ) { // We're still iffing. |
|
209 | + if ( ! $found ) { |
|
210 | +// We're still iffing. |
|
203 | 211 | $if .= $shortcode; |
204 | - } else { // We are elsing |
|
212 | + } else { |
|
213 | +// We are elsing |
|
205 | 214 | $else .= $shortcode; |
206 | 215 | } |
207 | 216 | } |
@@ -9,9 +9,9 @@ discard block |
||
9 | 9 | $gravityview_view = GravityView_View::getInstance(); |
10 | 10 | |
11 | 11 | $visibility_settings = $gravityview_view->getCurrentFieldSetting( 'notes' ); |
12 | -$show_notes_logged_out = ( ! empty( $visibility_settings['view'] ) && ! empty( $visibility_settings['view_loggedout'] ) ); |
|
12 | +$show_notes_logged_out = ( ! empty( $visibility_settings[ 'view' ] ) && ! empty( $visibility_settings[ 'view_loggedout' ] ) ); |
|
13 | 13 | |
14 | -if( ! GVCommon::has_cap( array( 'gravityview_view_entry_notes', 'gravityview_add_entry_notes', 'gravityview_delete_entry_notes' ) ) && ! $show_notes_logged_out ) { |
|
14 | +if ( ! GVCommon::has_cap( array( 'gravityview_view_entry_notes', 'gravityview_add_entry_notes', 'gravityview_delete_entry_notes' ) ) && ! $show_notes_logged_out ) { |
|
15 | 15 | return; |
16 | 16 | } |
17 | 17 | |
@@ -25,20 +25,20 @@ discard block |
||
25 | 25 | do_action( 'gravityview/field/notes/scripts' ); |
26 | 26 | |
27 | 27 | $entry = $gravityview_view->getCurrentEntry(); |
28 | -$notes = (array) GravityView_Entry_Notes::get_notes( $entry['id'] ); |
|
28 | +$notes = (array)GravityView_Entry_Notes::get_notes( $entry[ 'id' ] ); |
|
29 | 29 | $strings = GravityView_Field_Notes::strings(); |
30 | -$entry_slug = GravityView_API::get_entry_slug( $entry['id'], $entry ); |
|
30 | +$entry_slug = GravityView_API::get_entry_slug( $entry[ 'id' ], $entry ); |
|
31 | 31 | |
32 | -$show_add = ! empty( $visibility_settings['add'] ); |
|
33 | -$show_delete = ( ! empty( $visibility_settings['delete'] ) && GVCommon::has_cap( 'gravityview_delete_entry_notes' ) ); |
|
34 | -$show_notes = $show_notes_logged_out || ( ! empty( $visibility_settings['view'] ) && GVCommon::has_cap( 'gravityview_view_entry_notes' ) ); |
|
32 | +$show_add = ! empty( $visibility_settings[ 'add' ] ); |
|
33 | +$show_delete = ( ! empty( $visibility_settings[ 'delete' ] ) && GVCommon::has_cap( 'gravityview_delete_entry_notes' ) ); |
|
34 | +$show_notes = $show_notes_logged_out || ( ! empty( $visibility_settings[ 'view' ] ) && GVCommon::has_cap( 'gravityview_view_entry_notes' ) ); |
|
35 | 35 | |
36 | 36 | $container_class = ( sizeof( $notes ) > 0 ? 'gv-has-notes' : 'gv-no-notes' ); |
37 | 37 | $container_class .= $show_notes ? ' gv-show-notes' : ' gv-hide-notes'; |
38 | 38 | ?> |
39 | 39 | <div class="gv-notes <?php echo $container_class; ?>"> |
40 | 40 | <?php |
41 | - if( $show_notes ) { |
|
41 | + if ( $show_notes ) { |
|
42 | 42 | ?> |
43 | 43 | <form method="post" class="gv-notes-list"> |
44 | 44 | <?php if ( $show_delete ) { wp_nonce_field( 'gv_delete_notes_' . $entry_slug, 'gv_delete_notes' ); } ?> |
@@ -46,21 +46,21 @@ discard block |
||
46 | 46 | <input type="hidden" name="action" value="gv_delete_notes" /> |
47 | 47 | <input type="hidden" name="entry-slug" value="<?php echo esc_attr( $entry_slug ); ?>" /> |
48 | 48 | <table> |
49 | - <caption><?php echo $strings['caption']; ?></caption> |
|
49 | + <caption><?php echo $strings[ 'caption' ]; ?></caption> |
|
50 | 50 | <?php |
51 | 51 | if ( $show_delete ) { |
52 | 52 | ?> |
53 | 53 | <thead> |
54 | 54 | <tr> |
55 | 55 | <th colspan="2"> |
56 | - <label><input type="checkbox" value="" class="gv-notes-toggle" title="<?php echo $strings['toggle-notes']; ?>"><span class="screen-reader-text"><?php echo $strings['toggle-notes']; ?></span></label> |
|
57 | - <button type="submit" class="button button-small gv-notes-delete"><?php echo $strings['delete']; ?></button> |
|
56 | + <label><input type="checkbox" value="" class="gv-notes-toggle" title="<?php echo $strings[ 'toggle-notes' ]; ?>"><span class="screen-reader-text"><?php echo $strings[ 'toggle-notes' ]; ?></span></label> |
|
57 | + <button type="submit" class="button button-small gv-notes-delete"><?php echo $strings[ 'delete' ]; ?></button> |
|
58 | 58 | </th> |
59 | 59 | </tr> |
60 | 60 | </thead> |
61 | 61 | <?php } ?> |
62 | 62 | <tbody> |
63 | - <tr class="gv-notes-no-notes"><td colspan="2"><?php echo $strings['no-notes']; ?></td></tr> |
|
63 | + <tr class="gv-notes-no-notes"><td colspan="2"><?php echo $strings[ 'no-notes' ]; ?></td></tr> |
|
64 | 64 | <?php |
65 | 65 | foreach ( $notes as $note ) { |
66 | 66 | echo GravityView_Field_Notes::display_note( $note, $show_delete ); |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | <?php |
74 | 74 | } // End if can view notes |
75 | 75 | |
76 | - if( $show_add ) { |
|
76 | + if ( $show_add ) { |
|
77 | 77 | echo do_shortcode( '[gv_note_add]' ); |
78 | 78 | } |
79 | 79 | ?> |
@@ -31,11 +31,11 @@ discard block |
||
31 | 31 | |
32 | 32 | <?php |
33 | 33 | |
34 | - do_action('gravityview_render_widgets_active_areas', $curr_template, 'footer', $post->ID ); |
|
34 | + do_action('gravityview_render_widgets_active_areas', $curr_template, 'footer', $post->ID ); |
|
35 | 35 | |
36 | - do_action('gravityview_render_field_pickers', 'directory' ); |
|
36 | + do_action('gravityview_render_field_pickers', 'directory' ); |
|
37 | 37 | |
38 | - ?> |
|
38 | + ?> |
|
39 | 39 | |
40 | 40 | <?php // list of available widgets to be shown in the popup ?> |
41 | 41 | <div id="directory-available-widgets" class="hide-if-js gv-tooltip"> |
@@ -60,13 +60,13 @@ discard block |
||
60 | 60 | |
61 | 61 | <div id="single-active-fields" class="gv-grid"> |
62 | 62 | <?php |
63 | - if(!empty( $curr_template ) ) { |
|
64 | - do_action('gravityview_render_directory_active_areas', $curr_template, 'single', $post->ID, true ); |
|
65 | - } |
|
66 | - ?> |
|
63 | + if(!empty( $curr_template ) ) { |
|
64 | + do_action('gravityview_render_directory_active_areas', $curr_template, 'single', $post->ID, true ); |
|
65 | + } |
|
66 | + ?> |
|
67 | 67 | </div> |
68 | 68 | <?php |
69 | - do_action('gravityview_render_field_pickers', 'single' ); |
|
69 | + do_action('gravityview_render_field_pickers', 'single' ); |
|
70 | 70 | ?> |
71 | 71 | </div> |
72 | 72 | |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | </div> |
86 | 86 | |
87 | 87 | <?php |
88 | - do_action('gravityview_render_field_pickers', 'edit' ); |
|
88 | + do_action('gravityview_render_field_pickers', 'edit' ); |
|
89 | 89 | ?> |
90 | 90 | |
91 | 91 | </div> |
@@ -15,32 +15,32 @@ discard block |
||
15 | 15 | |
16 | 16 | <div id="directory-fields" class="gv-section"> |
17 | 17 | |
18 | - <h4><?php esc_html_e( 'Above Entries Widgets', 'gravityview'); ?> <span><?php esc_html_e( 'These widgets will be shown above entries.', 'gravityview'); ?></span></h4> |
|
18 | + <h4><?php esc_html_e( 'Above Entries Widgets', 'gravityview' ); ?> <span><?php esc_html_e( 'These widgets will be shown above entries.', 'gravityview' ); ?></span></h4> |
|
19 | 19 | |
20 | - <?php do_action('gravityview_render_widgets_active_areas', $curr_template, 'header', $post->ID ); ?> |
|
20 | + <?php do_action( 'gravityview_render_widgets_active_areas', $curr_template, 'header', $post->ID ); ?> |
|
21 | 21 | |
22 | - <h4><?php esc_html_e( 'Entries Fields', 'gravityview'); ?> <span><?php esc_html_e( 'These fields will be shown for each entry.', 'gravityview'); ?></span></h4> |
|
22 | + <h4><?php esc_html_e( 'Entries Fields', 'gravityview' ); ?> <span><?php esc_html_e( 'These fields will be shown for each entry.', 'gravityview' ); ?></span></h4> |
|
23 | 23 | |
24 | 24 | <div id="directory-active-fields" class="gv-grid"> |
25 | - <?php if(!empty( $curr_template ) ) { |
|
26 | - do_action('gravityview_render_directory_active_areas', $curr_template, 'directory', $post->ID, true ); |
|
25 | + <?php if ( ! empty( $curr_template ) ) { |
|
26 | + do_action( 'gravityview_render_directory_active_areas', $curr_template, 'directory', $post->ID, true ); |
|
27 | 27 | } ?> |
28 | 28 | </div> |
29 | 29 | |
30 | - <h4><?php esc_html_e( 'Below Entries Widgets', 'gravityview'); ?> <span><?php esc_html_e( 'These widgets will be shown below entries.', 'gravityview'); ?></span></h4> |
|
30 | + <h4><?php esc_html_e( 'Below Entries Widgets', 'gravityview' ); ?> <span><?php esc_html_e( 'These widgets will be shown below entries.', 'gravityview' ); ?></span></h4> |
|
31 | 31 | |
32 | 32 | <?php |
33 | 33 | |
34 | - do_action('gravityview_render_widgets_active_areas', $curr_template, 'footer', $post->ID ); |
|
34 | + do_action( 'gravityview_render_widgets_active_areas', $curr_template, 'footer', $post->ID ); |
|
35 | 35 | |
36 | - do_action('gravityview_render_field_pickers', 'directory' ); |
|
36 | + do_action( 'gravityview_render_field_pickers', 'directory' ); |
|
37 | 37 | |
38 | 38 | ?> |
39 | 39 | |
40 | 40 | <?php // list of available widgets to be shown in the popup ?> |
41 | 41 | <div id="directory-available-widgets" class="hide-if-js gv-tooltip"> |
42 | 42 | <span class="close" role="button" aria-label="<?php esc_html_e( 'Close', 'gravityview' ); ?>"><i class="dashicons dashicons-dismiss"></i></span> |
43 | - <?php do_action('gravityview_render_available_widgets' ); ?> |
|
43 | + <?php do_action( 'gravityview_render_available_widgets' ); ?> |
|
44 | 44 | </div> |
45 | 45 | |
46 | 46 | </div> |
@@ -56,17 +56,17 @@ discard block |
||
56 | 56 | |
57 | 57 | <div id="single-fields" class="gv-section"> |
58 | 58 | |
59 | - <h4><?php esc_html_e( 'These fields will be shown in Single Entry view.', 'gravityview'); ?></h4> |
|
59 | + <h4><?php esc_html_e( 'These fields will be shown in Single Entry view.', 'gravityview' ); ?></h4> |
|
60 | 60 | |
61 | 61 | <div id="single-active-fields" class="gv-grid"> |
62 | 62 | <?php |
63 | - if(!empty( $curr_template ) ) { |
|
64 | - do_action('gravityview_render_directory_active_areas', $curr_template, 'single', $post->ID, true ); |
|
63 | + if ( ! empty( $curr_template ) ) { |
|
64 | + do_action( 'gravityview_render_directory_active_areas', $curr_template, 'single', $post->ID, true ); |
|
65 | 65 | } |
66 | 66 | ?> |
67 | 67 | </div> |
68 | 68 | <?php |
69 | - do_action('gravityview_render_field_pickers', 'single' ); |
|
69 | + do_action( 'gravityview_render_field_pickers', 'single' ); |
|
70 | 70 | ?> |
71 | 71 | </div> |
72 | 72 | |
@@ -76,16 +76,16 @@ discard block |
||
76 | 76 | |
77 | 77 | <div id="edit-fields" class="gv-section"> |
78 | 78 | |
79 | - <h4><?php esc_html_e( 'Fields shown when editing an entry.', 'gravityview'); ?> <span><?php esc_html_e('If not configured, all form fields will be displayed.', 'gravityview'); ?></span></h4> |
|
79 | + <h4><?php esc_html_e( 'Fields shown when editing an entry.', 'gravityview' ); ?> <span><?php esc_html_e( 'If not configured, all form fields will be displayed.', 'gravityview' ); ?></span></h4> |
|
80 | 80 | |
81 | 81 | <div id="edit-active-fields" class="gv-grid"> |
82 | 82 | <?php |
83 | - do_action('gravityview_render_directory_active_areas', apply_filters( 'gravityview/template/edit', 'default_table_edit' ), 'edit', $post->ID, true ); |
|
83 | + do_action( 'gravityview_render_directory_active_areas', apply_filters( 'gravityview/template/edit', 'default_table_edit' ), 'edit', $post->ID, true ); |
|
84 | 84 | ?> |
85 | 85 | </div> |
86 | 86 | |
87 | 87 | <?php |
88 | - do_action('gravityview_render_field_pickers', 'edit' ); |
|
88 | + do_action( 'gravityview_render_field_pickers', 'edit' ); |
|
89 | 89 | ?> |
90 | 90 | |
91 | 91 | </div> |
@@ -22,27 +22,27 @@ |
||
22 | 22 | |
23 | 23 | <?php // list all the available templates (type= fresh or custom ) ?> |
24 | 24 | <div class="gv-grid"> |
25 | - <?php foreach( $templates as $id => $template ) { |
|
25 | + <?php foreach ( $templates as $id => $template ) { |
|
26 | 26 | $selected = ( $id == $current_template ) ? ' gv-selected' : ''; ?> |
27 | 27 | |
28 | 28 | <div class="gv-grid-col-1-3"> |
29 | - <div class="gv-view-types-module<?php echo $selected; ?>" data-filter="<?php echo esc_attr( $template['type'] ); ?>"> |
|
29 | + <div class="gv-view-types-module<?php echo $selected; ?>" data-filter="<?php echo esc_attr( $template[ 'type' ] ); ?>"> |
|
30 | 30 | <div class="gv-view-types-hover"> |
31 | 31 | <div> |
32 | - <?php if( !empty( $template['buy_source'] ) ) { ?> |
|
33 | - <p><a href="<?php echo esc_url( $template['buy_source'] ); ?>" class="button-primary button-buy-now"><?php esc_html_e( 'Buy Now', 'gravityview'); ?></a></p> |
|
32 | + <?php if ( ! empty( $template[ 'buy_source' ] ) ) { ?> |
|
33 | + <p><a href="<?php echo esc_url( $template[ 'buy_source' ] ); ?>" class="button-primary button-buy-now"><?php esc_html_e( 'Buy Now', 'gravityview' ); ?></a></p> |
|
34 | 34 | <?php } else { ?> |
35 | - <p><button href="#gv_select_template" class="gv_select_template button button-hero button-primary" data-templateid="<?php echo esc_attr( $id ); ?>"><?php esc_html_e( 'Select', 'gravityview'); ?></button></p> |
|
36 | - <?php if( !empty( $template['preview'] ) ) { ?> |
|
37 | - <a href="<?php echo esc_url( $template['preview'] ); ?>" rel="external" class="gv-site-preview"><i class="dashicons dashicons-admin-links" title="<?php esc_html_e( 'View a live demo of this preset', 'gravityview'); ?>"></i></a> |
|
35 | + <p><button href="#gv_select_template" class="gv_select_template button button-hero button-primary" data-templateid="<?php echo esc_attr( $id ); ?>"><?php esc_html_e( 'Select', 'gravityview' ); ?></button></p> |
|
36 | + <?php if ( ! empty( $template[ 'preview' ] ) ) { ?> |
|
37 | + <a href="<?php echo esc_url( $template[ 'preview' ] ); ?>" rel="external" class="gv-site-preview"><i class="dashicons dashicons-admin-links" title="<?php esc_html_e( 'View a live demo of this preset', 'gravityview' ); ?>"></i></a> |
|
38 | 38 | <?php } ?> |
39 | 39 | <?php } ?> |
40 | 40 | </div> |
41 | 41 | </div> |
42 | 42 | <div class="gv-view-types-normal"> |
43 | - <img src="<?php echo esc_url( $template['logo'] ); ?>" alt="<?php echo esc_attr( $template['label'] ); ?>"> |
|
44 | - <h5><?php echo esc_html( $template['label'] ); ?></h5> |
|
45 | - <p class="description"><?php echo esc_html( $template['description'] ); ?></p> |
|
43 | + <img src="<?php echo esc_url( $template[ 'logo' ] ); ?>" alt="<?php echo esc_attr( $template[ 'label' ] ); ?>"> |
|
44 | + <h5><?php echo esc_html( $template[ 'label' ] ); ?></h5> |
|
45 | + <p class="description"><?php echo esc_html( $template[ 'description' ] ); ?></p> |
|
46 | 46 | </div> |
47 | 47 | </div> |
48 | 48 | </div> |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | wp_embed_register_handler( 'gravityview_entry', self::get_entry_regex(), array( __CLASS__, 'render' ), 20000 ); |
27 | 27 | wp_oembed_add_provider( self::get_entry_regex(), self::$provider_url, true ); |
28 | 28 | |
29 | - if ( ! empty( $_GET['gv_oembed_provider'] ) && ! empty( $_GET['url'] ) ) { |
|
29 | + if ( ! empty( $_GET[ 'gv_oembed_provider' ] ) && ! empty( $_GET[ 'url' ] ) ) { |
|
30 | 30 | add_action( 'template_redirect', array( __CLASS__, 'render_provider_request' ) ); |
31 | 31 | } |
32 | 32 | |
@@ -43,8 +43,8 @@ discard block |
||
43 | 43 | * @return void |
44 | 44 | */ |
45 | 45 | public static function render_provider_request() { |
46 | - if ( ! empty( $_GET['url'] ) ) { |
|
47 | - $url = $_GET['url']; |
|
46 | + if ( ! empty( $_GET[ 'url' ] ) ) { |
|
47 | + $url = $_GET[ 'url' ]; |
|
48 | 48 | } else { |
49 | 49 | header( 'HTTP/1.0 404 Not Found' ); |
50 | 50 | exit; |
@@ -111,18 +111,18 @@ discard block |
||
111 | 111 | */ |
112 | 112 | private static function parse_matches( $matches, $url ) { |
113 | 113 | // If not using permalinks, re-assign values for matching groups |
114 | - if ( ! empty( $matches['entry_slug2'] ) ) { |
|
115 | - $matches['is_cpt'] = $matches['is_cpt2']; |
|
116 | - $matches['slug'] = $matches['slug2']; |
|
117 | - $matches['entry_slug'] = $matches['entry_slug2']; |
|
118 | - unset( $matches['is_cpt2'], $matches['slug2'], $matches['entry_slug2'] ); |
|
114 | + if ( ! empty( $matches[ 'entry_slug2' ] ) ) { |
|
115 | + $matches[ 'is_cpt' ] = $matches[ 'is_cpt2' ]; |
|
116 | + $matches[ 'slug' ] = $matches[ 'slug2' ]; |
|
117 | + $matches[ 'entry_slug' ] = $matches[ 'entry_slug2' ]; |
|
118 | + unset( $matches[ 'is_cpt2' ], $matches[ 'slug2' ], $matches[ 'entry_slug2' ] ); |
|
119 | 119 | } |
120 | 120 | |
121 | - if ( empty( $matches['entry_slug'] ) ) { |
|
121 | + if ( empty( $matches[ 'entry_slug' ] ) ) { |
|
122 | 122 | gravityview()->log->error( 'Entry slug not parsed by regex.', array( 'data' => $matches ) ); |
123 | 123 | return null; |
124 | 124 | } else { |
125 | - $entry_id = $matches['entry_slug']; |
|
125 | + $entry_id = $matches[ 'entry_slug' ]; |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | if ( ! $entry = \GV\GF_Entry::by_id( $entry_id ) ) { |
@@ -140,12 +140,12 @@ discard block |
||
140 | 140 | if ( ! $view ) { |
141 | 141 | |
142 | 142 | // If the slug doesn't work, maybe using Plain permalinks and not the slug, only ID |
143 | - if( is_numeric( $matches['slug'] ) ) { |
|
144 | - $view = \GV\View::by_id( $matches['slug'] ); |
|
143 | + if ( is_numeric( $matches[ 'slug' ] ) ) { |
|
144 | + $view = \GV\View::by_id( $matches[ 'slug' ] ); |
|
145 | 145 | } |
146 | 146 | |
147 | - if( ! $view ) { |
|
148 | - $view = \GV\View::from_post( get_page_by_path( $matches['slug'], OBJECT, 'gravityview' ) ); |
|
147 | + if ( ! $view ) { |
|
148 | + $view = \GV\View::from_post( get_page_by_path( $matches[ 'slug' ], OBJECT, 'gravityview' ) ); |
|
149 | 149 | } |
150 | 150 | } |
151 | 151 | |
@@ -176,9 +176,9 @@ discard block |
||
176 | 176 | |
177 | 177 | return ' |
178 | 178 | <div class="loading-placeholder" style="background-color:#e6f0f5;"> |
179 | - <h3 style="margin:0; padding:0; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\', sans-serif;">'.$image.$embed_heading.'</h3> |
|
179 | + <h3 style="margin:0; padding:0; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\', sans-serif;">'.$image . $embed_heading . '</h3> |
|
180 | 180 | <p style="margin:0; padding:0; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\', sans-serif;"> |
181 | - '.$embed_text.' |
|
181 | + '.$embed_text . ' |
|
182 | 182 | </p> |
183 | 183 | <br style="clear: both;"> |
184 | 184 | </div>'; |
@@ -192,8 +192,8 @@ discard block |
||
192 | 192 | private static function render_preview_notice() { |
193 | 193 | $floaty = \GravityView_Admin::get_floaty(); |
194 | 194 | $title = esc_html__( 'This will look better when it is embedded.', 'gravityview' ); |
195 | - $message = esc_html__( 'Styles don\'t get loaded when being previewed, so the content below will look strange. Don\'t be concerned!', 'gravityview'); |
|
196 | - return '<div class="updated notice">'.$floaty.'<h3>'.$title.'</h3><p>'.$message.'</p><br style="clear:both;" /></div>'; |
|
195 | + $message = esc_html__( 'Styles don\'t get loaded when being previewed, so the content below will look strange. Don\'t be concerned!', 'gravityview' ); |
|
196 | + return '<div class="updated notice">' . $floaty . '<h3>' . $title . '</h3><p>' . $message . '</p><br style="clear:both;" /></div>'; |
|
197 | 197 | } |
198 | 198 | |
199 | 199 | /** |
@@ -212,13 +212,13 @@ discard block |
||
212 | 212 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
213 | 213 | } |
214 | 214 | |
215 | - if ( $entry && 'active' !== $entry['status'] ) { |
|
215 | + if ( $entry && 'active' !== $entry[ 'status' ] ) { |
|
216 | 216 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) ); |
217 | 217 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
218 | 218 | } |
219 | 219 | |
220 | 220 | if ( $view->settings->get( 'show_only_approved' ) ) { |
221 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
221 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
222 | 222 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) ); |
223 | 223 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
224 | 224 | } |
@@ -249,9 +249,9 @@ discard block |
||
249 | 249 | * Mocks old context, etc. |
250 | 250 | */ |
251 | 251 | $loader = \GravityView_Edit_Entry::getInstance(); |
252 | - $render = $loader->instances['render']; |
|
252 | + $render = $loader->instances[ 'render' ]; |
|
253 | 253 | |
254 | - $form = \GFAPI::get_form( $entry['form_id'] ); |
|
254 | + $form = \GFAPI::get_form( $entry[ 'form_id' ] ); |
|
255 | 255 | |
256 | 256 | // @todo We really need to rewrite Edit Entry soon |
257 | 257 | \GravityView_View::$instance = null; |
@@ -260,13 +260,13 @@ discard block |
||
260 | 260 | $data = \GravityView_View_Data::getInstance( get_post( $view->ID ) ); |
261 | 261 | $template = \GravityView_View::getInstance( array( |
262 | 262 | 'form' => $form, |
263 | - 'form_id' => $form['id'], |
|
263 | + 'form_id' => $form[ 'id' ], |
|
264 | 264 | 'view_id' => $view->ID, |
265 | 265 | 'entries' => array( $entry->as_entry() ), |
266 | 266 | 'atts' => \GVCommon::get_template_settings( $view->ID ), |
267 | 267 | ) ); |
268 | 268 | |
269 | - ob_start() && $render->init( $data, \GV\Entry::by_id( $entry['id'] ), $view ); |
|
269 | + ob_start() && $render->init( $data, \GV\Entry::by_id( $entry[ 'id' ] ), $view ); |
|
270 | 270 | $output = ob_get_clean(); // Render :) |
271 | 271 | } else { |
272 | 272 | /** Remove the back link. */ |
@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | // Catch either |
311 | 311 | $match_regex = "(?:{$using_permalinks}|{$not_using_permalinks})"; |
312 | 312 | |
313 | - return '#'.$match_regex.'#i'; |
|
313 | + return '#' . $match_regex . '#i'; |
|
314 | 314 | } |
315 | 315 | |
316 | 316 | /** |