@@ -102,7 +102,7 @@ |
||
102 | 102 | $field_data = array( |
103 | 103 | 'label' => rgar( $edit_field, 'custom_label' ), |
104 | 104 | 'customLabel' => rgar( $edit_field, 'custom_label' ), |
105 | - 'content' => rgar( $edit_field, 'content' ), |
|
105 | + 'content' => rgar( $edit_field, 'content' ), |
|
106 | 106 | ); |
107 | 107 | |
108 | 108 | // Replace merge tags in the content |
@@ -329,34 +329,34 @@ discard block |
||
329 | 329 | } |
330 | 330 | |
331 | 331 | /** |
332 | - * Get the fields for a specific context |
|
333 | - * |
|
334 | - * @since 1.19.2 |
|
335 | - * |
|
332 | + * Get the fields for a specific context |
|
333 | + * |
|
334 | + * @since 1.19.2 |
|
335 | + * |
|
336 | 336 | * @param string $context [Optional] "directory", "single", or "edit" |
337 | 337 | * |
338 | 338 | * @return array Array of GravityView field layout configurations |
339 | 339 | */ |
340 | 340 | public function getContextFields( $context = '' ) { |
341 | 341 | |
342 | - if( '' === $context ) { |
|
343 | - $context = $this->getContext(); |
|
344 | - } |
|
342 | + if( '' === $context ) { |
|
343 | + $context = $this->getContext(); |
|
344 | + } |
|
345 | 345 | |
346 | 346 | $fields = $this->getFields(); |
347 | 347 | |
348 | - foreach ( (array) $fields as $key => $context_fields ) { |
|
348 | + foreach ( (array) $fields as $key => $context_fields ) { |
|
349 | 349 | |
350 | - // Formatted as `{context}_{template id}-{zone name}`, so we want just the $context to match against |
|
351 | - $matches = explode( '_', $key ); |
|
350 | + // Formatted as `{context}_{template id}-{zone name}`, so we want just the $context to match against |
|
351 | + $matches = explode( '_', $key ); |
|
352 | 352 | |
353 | - if( isset( $matches[0] ) && $matches[0] === $context ) { |
|
354 | - return $context_fields; |
|
355 | - } |
|
356 | - } |
|
353 | + if( isset( $matches[0] ) && $matches[0] === $context ) { |
|
354 | + return $context_fields; |
|
355 | + } |
|
356 | + } |
|
357 | 357 | |
358 | 358 | return array(); |
359 | - } |
|
359 | + } |
|
360 | 360 | |
361 | 361 | /** |
362 | 362 | * @param array $fields |
@@ -449,10 +449,10 @@ discard block |
||
449 | 449 | */ |
450 | 450 | public function getPaging() { |
451 | 451 | |
452 | - $default_params = array( |
|
453 | - 'offset' => 0, |
|
454 | - 'page_size' => 20, |
|
455 | - ); |
|
452 | + $default_params = array( |
|
453 | + 'offset' => 0, |
|
454 | + 'page_size' => 20, |
|
455 | + ); |
|
456 | 456 | |
457 | 457 | return wp_parse_args( $this->paging, $default_params ); |
458 | 458 | } |
@@ -509,10 +509,10 @@ discard block |
||
509 | 509 | public function getSorting() { |
510 | 510 | |
511 | 511 | $defaults_params = array( |
512 | - 'sort_field' => 'date_created', |
|
513 | - 'sort_direction' => 'ASC', |
|
514 | - 'is_numeric' => false, |
|
515 | - ); |
|
512 | + 'sort_field' => 'date_created', |
|
513 | + 'sort_direction' => 'ASC', |
|
514 | + 'is_numeric' => false, |
|
515 | + ); |
|
516 | 516 | |
517 | 517 | return wp_parse_args( $this->sorting, $defaults_params ); |
518 | 518 | } |
@@ -40,7 +40,6 @@ |
||
40 | 40 | * Get the default date format for a field based on the field ID and the time format setting |
41 | 41 | * |
42 | 42 | * @since 1.16.4 |
43 | - |
|
44 | 43 | * @param string $date_format The Gravity Forms date format for the field. Default: "mdy" |
45 | 44 | * @param int $field_id The ID of the field. Used to figure out full date/day/month/year |
46 | 45 | * |
@@ -306,12 +306,12 @@ discard block |
||
306 | 306 | } |
307 | 307 | |
308 | 308 | /** |
309 | - * @hack |
|
310 | - * In case of email/email confirmation, the input for email has the same id as the parent field |
|
311 | - */ |
|
309 | + * @hack |
|
310 | + * In case of email/email confirmation, the input for email has the same id as the parent field |
|
311 | + */ |
|
312 | 312 | if( 'email' === $field['type'] && false === strpos( $input['id'], '.' ) ) { |
313 | - continue; |
|
314 | - } |
|
313 | + continue; |
|
314 | + } |
|
315 | 315 | $fields["{$input['id']}"] = array( |
316 | 316 | 'label' => rgar( $input, 'label' ), |
317 | 317 | 'customLabel' => rgar( $input, 'customLabel' ), |
@@ -488,7 +488,7 @@ discard block |
||
488 | 488 | } elseif ( 'delete' === GFForms::get( 'action' ) ) { |
489 | 489 | $criteria['context_view_id'] = isset( $_GET['view_id'] ) ? intval( $_GET['view_id'] ) : null; |
490 | 490 | } elseif( !isset( $criteria['context_view_id'] ) ) { |
491 | - // Prevent overriding the Context View ID: Some widgets could set the context_view_id (e.g. Recent Entries widget) |
|
491 | + // Prevent overriding the Context View ID: Some widgets could set the context_view_id (e.g. Recent Entries widget) |
|
492 | 492 | $criteria['context_view_id'] = null; |
493 | 493 | } |
494 | 494 | |
@@ -1251,7 +1251,7 @@ discard block |
||
1251 | 1251 | ), |
1252 | 1252 | ); |
1253 | 1253 | |
1254 | - $fields = $date_created + $fields; |
|
1254 | + $fields = $date_created + $fields; |
|
1255 | 1255 | |
1256 | 1256 | $blacklist_field_types = apply_filters( 'gravityview_blacklist_field_types', $blacklist, NULL ); |
1257 | 1257 | |
@@ -1263,13 +1263,13 @@ discard block |
||
1263 | 1263 | } |
1264 | 1264 | } |
1265 | 1265 | |
1266 | - /** |
|
1267 | - * @filter `gravityview/common/sortable_fields` Filter the sortable fields |
|
1268 | - * @since 1.12 |
|
1269 | - * @param array $fields Sub-set of GF form fields that are sortable |
|
1270 | - * @param int $formid The Gravity Forms form ID that the fields are from |
|
1271 | - */ |
|
1272 | - $fields = apply_filters( 'gravityview/common/sortable_fields', $fields, $formid ); |
|
1266 | + /** |
|
1267 | + * @filter `gravityview/common/sortable_fields` Filter the sortable fields |
|
1268 | + * @since 1.12 |
|
1269 | + * @param array $fields Sub-set of GF form fields that are sortable |
|
1270 | + * @param int $formid The Gravity Forms form ID that the fields are from |
|
1271 | + */ |
|
1272 | + $fields = apply_filters( 'gravityview/common/sortable_fields', $fields, $formid ); |
|
1273 | 1273 | |
1274 | 1274 | return $fields; |
1275 | 1275 | } |
@@ -1561,26 +1561,26 @@ discard block |
||
1561 | 1561 | } |
1562 | 1562 | |
1563 | 1563 | |
1564 | - /** |
|
1565 | - * Display updated/error notice |
|
1566 | - * |
|
1567 | - * @since 1.19.2 Added $cap and $object_id parameters |
|
1568 | - * |
|
1569 | - * @param string $notice text/HTML of notice |
|
1570 | - * @param string $class CSS class for notice (`updated` or `error`) |
|
1571 | - * @param string $cap [Optional] Define a capability required to show a notice. If not set, displays to all caps. |
|
1572 | - * |
|
1573 | - * @return string |
|
1574 | - */ |
|
1575 | - public static function generate_notice( $notice, $class = '', $cap = '', $object_id = null ) { |
|
1576 | - |
|
1577 | - // If $cap is defined, only show notice if user has capability |
|
1578 | - if( $cap && ! GVCommon::has_cap( $cap, $object_id ) ) { |
|
1579 | - return ''; |
|
1580 | - } |
|
1581 | - |
|
1582 | - return '<div class="gv-notice '.gravityview_sanitize_html_class( $class ) .'">'. $notice .'</div>'; |
|
1583 | - } |
|
1564 | + /** |
|
1565 | + * Display updated/error notice |
|
1566 | + * |
|
1567 | + * @since 1.19.2 Added $cap and $object_id parameters |
|
1568 | + * |
|
1569 | + * @param string $notice text/HTML of notice |
|
1570 | + * @param string $class CSS class for notice (`updated` or `error`) |
|
1571 | + * @param string $cap [Optional] Define a capability required to show a notice. If not set, displays to all caps. |
|
1572 | + * |
|
1573 | + * @return string |
|
1574 | + */ |
|
1575 | + public static function generate_notice( $notice, $class = '', $cap = '', $object_id = null ) { |
|
1576 | + |
|
1577 | + // If $cap is defined, only show notice if user has capability |
|
1578 | + if( $cap && ! GVCommon::has_cap( $cap, $object_id ) ) { |
|
1579 | + return ''; |
|
1580 | + } |
|
1581 | + |
|
1582 | + return '<div class="gv-notice '.gravityview_sanitize_html_class( $class ) .'">'. $notice .'</div>'; |
|
1583 | + } |
|
1584 | 1584 | |
1585 | 1585 | /** |
1586 | 1586 | * Inspired on \GFCommon::encode_shortcodes, reverse the encoding by replacing the ascii characters by the shortcode brackets |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | |
235 | 235 | self::getInstance()->set_entry( $entry ); |
236 | 236 | |
237 | - $base = GravityView_API::directory_link( $post_id, true ); |
|
237 | + $base = GravityView_API::directory_link( $post_id, true ); |
|
238 | 238 | |
239 | 239 | if( empty( $base ) ) { |
240 | 240 | do_action( 'gravityview_log_error', __METHOD__ . ' - Post ID does not exist: '.$post_id ); |
@@ -244,13 +244,13 @@ discard block |
||
244 | 244 | // Use the slug instead of the ID for consistent security |
245 | 245 | $entry_slug = GravityView_API::get_entry_slug( $entry['id'], $entry ); |
246 | 246 | |
247 | - $view_id = empty( $view_id ) ? gravityview_get_view_id() : $view_id; |
|
247 | + $view_id = empty( $view_id ) ? gravityview_get_view_id() : $view_id; |
|
248 | 248 | |
249 | 249 | $actionurl = add_query_arg( array( |
250 | 250 | 'action' => 'delete', |
251 | 251 | 'entry_id' => $entry_slug, |
252 | 252 | 'gvid' => $view_id, |
253 | - 'view_id' => $view_id, |
|
253 | + 'view_id' => $view_id, |
|
254 | 254 | ), $base ); |
255 | 255 | |
256 | 256 | $url = wp_nonce_url( $actionurl, 'delete_'.$entry_slug, 'delete' ); |
@@ -424,7 +424,7 @@ discard block |
||
424 | 424 | * @since 1.16.4 |
425 | 425 | * @param int $entry_id ID of the Gravity Forms entry |
426 | 426 | * @param array $entry Deleted entry array |
427 | - */ |
|
427 | + */ |
|
428 | 428 | do_action( 'gravityview/delete-entry/deleted', $entry_id, $entry ); |
429 | 429 | } |
430 | 430 |
@@ -18,80 +18,80 @@ discard block |
||
18 | 18 | |
19 | 19 | class GravityView_Edit_Entry { |
20 | 20 | |
21 | - /** |
|
22 | - * @var string |
|
23 | - */ |
|
21 | + /** |
|
22 | + * @var string |
|
23 | + */ |
|
24 | 24 | static $file; |
25 | 25 | |
26 | 26 | static $instance; |
27 | 27 | |
28 | - /** |
|
29 | - * Component instances. |
|
30 | - * @var array |
|
31 | - */ |
|
32 | - public $instances = array(); |
|
28 | + /** |
|
29 | + * Component instances. |
|
30 | + * @var array |
|
31 | + */ |
|
32 | + public $instances = array(); |
|
33 | 33 | |
34 | 34 | |
35 | 35 | function __construct() { |
36 | 36 | |
37 | - self::$file = plugin_dir_path( __FILE__ ); |
|
37 | + self::$file = plugin_dir_path( __FILE__ ); |
|
38 | 38 | |
39 | - if( is_admin() ) { |
|
40 | - $this->load_components( 'admin' ); |
|
41 | - } |
|
39 | + if( is_admin() ) { |
|
40 | + $this->load_components( 'admin' ); |
|
41 | + } |
|
42 | 42 | |
43 | 43 | |
44 | - $this->load_components( 'render' ); |
|
44 | + $this->load_components( 'render' ); |
|
45 | 45 | |
46 | - // If GF User Registration Add-on exists |
|
47 | - $this->load_components( 'user-registration' ); |
|
46 | + // If GF User Registration Add-on exists |
|
47 | + $this->load_components( 'user-registration' ); |
|
48 | 48 | |
49 | - $this->add_hooks(); |
|
49 | + $this->add_hooks(); |
|
50 | 50 | |
51 | 51 | // Process hooks for addons that may or may not be present |
52 | 52 | $this->addon_specific_hooks(); |
53 | 53 | } |
54 | 54 | |
55 | 55 | |
56 | - static function getInstance() { |
|
56 | + static function getInstance() { |
|
57 | 57 | |
58 | - if( empty( self::$instance ) ) { |
|
59 | - self::$instance = new GravityView_Edit_Entry; |
|
60 | - } |
|
58 | + if( empty( self::$instance ) ) { |
|
59 | + self::$instance = new GravityView_Edit_Entry; |
|
60 | + } |
|
61 | 61 | |
62 | - return self::$instance; |
|
63 | - } |
|
62 | + return self::$instance; |
|
63 | + } |
|
64 | 64 | |
65 | 65 | |
66 | - private function load_components( $component ) { |
|
66 | + private function load_components( $component ) { |
|
67 | 67 | |
68 | - $dir = trailingslashit( self::$file ); |
|
68 | + $dir = trailingslashit( self::$file ); |
|
69 | 69 | |
70 | - $filename = $dir . 'class-edit-entry-' . $component . '.php'; |
|
71 | - $classname = 'GravityView_Edit_Entry_' . str_replace( ' ', '_', ucwords( str_replace( '-', ' ', $component ) ) ); |
|
70 | + $filename = $dir . 'class-edit-entry-' . $component . '.php'; |
|
71 | + $classname = 'GravityView_Edit_Entry_' . str_replace( ' ', '_', ucwords( str_replace( '-', ' ', $component ) ) ); |
|
72 | 72 | |
73 | - // Loads component and pass extension's instance so that component can |
|
74 | - // talk each other. |
|
75 | - require_once $filename; |
|
76 | - $this->instances[ $component ] = new $classname( $this ); |
|
77 | - $this->instances[ $component ]->load(); |
|
73 | + // Loads component and pass extension's instance so that component can |
|
74 | + // talk each other. |
|
75 | + require_once $filename; |
|
76 | + $this->instances[ $component ] = new $classname( $this ); |
|
77 | + $this->instances[ $component ]->load(); |
|
78 | 78 | |
79 | - } |
|
79 | + } |
|
80 | 80 | |
81 | - private function add_hooks() { |
|
81 | + private function add_hooks() { |
|
82 | 82 | |
83 | - // Add front-end access to Gravity Forms delete file action |
|
84 | - add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'GFForms', 'delete_file') ); |
|
83 | + // Add front-end access to Gravity Forms delete file action |
|
84 | + add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'GFForms', 'delete_file') ); |
|
85 | 85 | |
86 | - // Make sure this hook is run for non-admins |
|
87 | - add_action( 'wp_ajax_rg_delete_file', array( 'GFForms', 'delete_file') ); |
|
86 | + // Make sure this hook is run for non-admins |
|
87 | + add_action( 'wp_ajax_rg_delete_file', array( 'GFForms', 'delete_file') ); |
|
88 | 88 | |
89 | - add_filter( 'gravityview_blacklist_field_types', array( $this, 'modify_field_blacklist' ), 10, 2 ); |
|
89 | + add_filter( 'gravityview_blacklist_field_types', array( $this, 'modify_field_blacklist' ), 10, 2 ); |
|
90 | 90 | |
91 | - // add template path to check for field |
|
92 | - add_filter( 'gravityview_template_paths', array( $this, 'add_template_path' ) ); |
|
91 | + // add template path to check for field |
|
92 | + add_filter( 'gravityview_template_paths', array( $this, 'add_template_path' ) ); |
|
93 | 93 | |
94 | - } |
|
94 | + } |
|
95 | 95 | |
96 | 96 | /** |
97 | 97 | * Trigger hooks that are normally run in the admin for Addons, but need to be triggered manually because we're not in the admin |
@@ -105,73 +105,73 @@ discard block |
||
105 | 105 | |
106 | 106 | } |
107 | 107 | |
108 | - /** |
|
109 | - * Include this extension templates path |
|
110 | - * @param array $file_paths List of template paths ordered |
|
111 | - */ |
|
112 | - public function add_template_path( $file_paths ) { |
|
113 | - |
|
114 | - // Index 100 is the default GravityView template path. |
|
115 | - $file_paths[ 110 ] = self::$file; |
|
116 | - |
|
117 | - return $file_paths; |
|
118 | - } |
|
119 | - |
|
120 | - /** |
|
121 | - * |
|
122 | - * Return a well formatted nonce key according to GravityView Edit Entry protocol |
|
123 | - * |
|
124 | - * @param $view_id int GravityView view id |
|
125 | - * @param $form_id int Gravity Forms form id |
|
126 | - * @param $entry_id int Gravity Forms entry id |
|
127 | - * @return string |
|
128 | - */ |
|
129 | - public static function get_nonce_key( $view_id, $form_id, $entry_id ) { |
|
130 | - return sprintf( 'edit_%d_%d_%d', $view_id, $form_id, $entry_id ); |
|
131 | - } |
|
132 | - |
|
133 | - |
|
134 | - /** |
|
135 | - * The edit entry link creates a secure link with a nonce |
|
136 | - * |
|
137 | - * It also mimics the URL structure Gravity Forms expects to have so that |
|
138 | - * it formats the display of the edit form like it does in the backend, like |
|
139 | - * "You can edit this post from the post page" fields, for example. |
|
140 | - * |
|
141 | - * @param $entry array Gravity Forms entry object |
|
142 | - * @param $view_id int GravityView view id |
|
143 | - * @param $post_id int GravityView Post ID where View may be embedded {@since 1.9.2} |
|
144 | - * @param string|array $field_values Parameters to pass in to the Edit Entry form to prefill data. Uses the same format as Gravity Forms "Allow field to be populated dynamically" {@since 1.9.2} {@see https://www.gravityhelp.com/documentation/article/allow-field-to-be-populated-dynamically/ } |
|
145 | - * @return string |
|
146 | - */ |
|
147 | - public static function get_edit_link( $entry, $view_id, $post_id = null, $field_values = '' ) { |
|
148 | - |
|
149 | - $nonce_key = self::get_nonce_key( $view_id, $entry['form_id'], $entry['id'] ); |
|
150 | - |
|
151 | - $base = gv_entry_link( $entry, $post_id ); |
|
152 | - |
|
153 | - $url = add_query_arg( array( |
|
154 | - 'edit' => wp_create_nonce( $nonce_key ) |
|
155 | - ), $base ); |
|
156 | - |
|
157 | - /** |
|
158 | - * Allow passing params to dynamically populate entry with values |
|
159 | - * @since 1.9.2 |
|
160 | - */ |
|
161 | - if( !empty( $field_values ) ) { |
|
162 | - |
|
163 | - if( is_array( $field_values ) ) { |
|
164 | - // If already an array, no parse_str() needed |
|
165 | - $params = $field_values; |
|
166 | - } else { |
|
167 | - parse_str( $field_values, $params ); |
|
168 | - } |
|
169 | - |
|
170 | - $url = add_query_arg( $params, $url ); |
|
171 | - } |
|
172 | - |
|
173 | - return $url; |
|
174 | - } |
|
108 | + /** |
|
109 | + * Include this extension templates path |
|
110 | + * @param array $file_paths List of template paths ordered |
|
111 | + */ |
|
112 | + public function add_template_path( $file_paths ) { |
|
113 | + |
|
114 | + // Index 100 is the default GravityView template path. |
|
115 | + $file_paths[ 110 ] = self::$file; |
|
116 | + |
|
117 | + return $file_paths; |
|
118 | + } |
|
119 | + |
|
120 | + /** |
|
121 | + * |
|
122 | + * Return a well formatted nonce key according to GravityView Edit Entry protocol |
|
123 | + * |
|
124 | + * @param $view_id int GravityView view id |
|
125 | + * @param $form_id int Gravity Forms form id |
|
126 | + * @param $entry_id int Gravity Forms entry id |
|
127 | + * @return string |
|
128 | + */ |
|
129 | + public static function get_nonce_key( $view_id, $form_id, $entry_id ) { |
|
130 | + return sprintf( 'edit_%d_%d_%d', $view_id, $form_id, $entry_id ); |
|
131 | + } |
|
132 | + |
|
133 | + |
|
134 | + /** |
|
135 | + * The edit entry link creates a secure link with a nonce |
|
136 | + * |
|
137 | + * It also mimics the URL structure Gravity Forms expects to have so that |
|
138 | + * it formats the display of the edit form like it does in the backend, like |
|
139 | + * "You can edit this post from the post page" fields, for example. |
|
140 | + * |
|
141 | + * @param $entry array Gravity Forms entry object |
|
142 | + * @param $view_id int GravityView view id |
|
143 | + * @param $post_id int GravityView Post ID where View may be embedded {@since 1.9.2} |
|
144 | + * @param string|array $field_values Parameters to pass in to the Edit Entry form to prefill data. Uses the same format as Gravity Forms "Allow field to be populated dynamically" {@since 1.9.2} {@see https://www.gravityhelp.com/documentation/article/allow-field-to-be-populated-dynamically/ } |
|
145 | + * @return string |
|
146 | + */ |
|
147 | + public static function get_edit_link( $entry, $view_id, $post_id = null, $field_values = '' ) { |
|
148 | + |
|
149 | + $nonce_key = self::get_nonce_key( $view_id, $entry['form_id'], $entry['id'] ); |
|
150 | + |
|
151 | + $base = gv_entry_link( $entry, $post_id ); |
|
152 | + |
|
153 | + $url = add_query_arg( array( |
|
154 | + 'edit' => wp_create_nonce( $nonce_key ) |
|
155 | + ), $base ); |
|
156 | + |
|
157 | + /** |
|
158 | + * Allow passing params to dynamically populate entry with values |
|
159 | + * @since 1.9.2 |
|
160 | + */ |
|
161 | + if( !empty( $field_values ) ) { |
|
162 | + |
|
163 | + if( is_array( $field_values ) ) { |
|
164 | + // If already an array, no parse_str() needed |
|
165 | + $params = $field_values; |
|
166 | + } else { |
|
167 | + parse_str( $field_values, $params ); |
|
168 | + } |
|
169 | + |
|
170 | + $url = add_query_arg( $params, $url ); |
|
171 | + } |
|
172 | + |
|
173 | + return $url; |
|
174 | + } |
|
175 | 175 | |
176 | 176 | /** |
177 | 177 | * Edit mode doesn't allow certain field types. |
@@ -225,81 +225,81 @@ discard block |
||
225 | 225 | } |
226 | 226 | |
227 | 227 | |
228 | - /** |
|
229 | - * checks if user has permissions to edit a specific entry |
|
230 | - * |
|
231 | - * Needs to be used combined with GravityView_Edit_Entry::user_can_edit_entry for maximum security!! |
|
232 | - * |
|
233 | - * @param array $entry Gravity Forms entry array |
|
234 | - * @param int $view_id ID of the view you want to check visibility against {@since 1.9.2} |
|
235 | - * @return bool |
|
236 | - */ |
|
237 | - public static function check_user_cap_edit_entry( $entry, $view_id = 0 ) { |
|
228 | + /** |
|
229 | + * checks if user has permissions to edit a specific entry |
|
230 | + * |
|
231 | + * Needs to be used combined with GravityView_Edit_Entry::user_can_edit_entry for maximum security!! |
|
232 | + * |
|
233 | + * @param array $entry Gravity Forms entry array |
|
234 | + * @param int $view_id ID of the view you want to check visibility against {@since 1.9.2} |
|
235 | + * @return bool |
|
236 | + */ |
|
237 | + public static function check_user_cap_edit_entry( $entry, $view_id = 0 ) { |
|
238 | 238 | |
239 | - // No permission by default |
|
240 | - $user_can_edit = false; |
|
239 | + // No permission by default |
|
240 | + $user_can_edit = false; |
|
241 | 241 | |
242 | - // If they can edit any entries (as defined in Gravity Forms) |
|
243 | - // Or if they can edit other people's entries |
|
244 | - // Then we're good. |
|
245 | - if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry['id'] ) ) { |
|
242 | + // If they can edit any entries (as defined in Gravity Forms) |
|
243 | + // Or if they can edit other people's entries |
|
244 | + // Then we're good. |
|
245 | + if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry['id'] ) ) { |
|
246 | 246 | |
247 | - do_action('gravityview_log_debug', __METHOD__ . ' - User has ability to edit all entries.'); |
|
247 | + do_action('gravityview_log_debug', __METHOD__ . ' - User has ability to edit all entries.'); |
|
248 | 248 | |
249 | - $user_can_edit = true; |
|
249 | + $user_can_edit = true; |
|
250 | 250 | |
251 | - } else if( !isset( $entry['created_by'] ) ) { |
|
251 | + } else if( !isset( $entry['created_by'] ) ) { |
|
252 | 252 | |
253 | - do_action('gravityview_log_error', 'GravityView_Edit_Entry[check_user_cap_edit_entry] Entry `created_by` doesn\'t exist.'); |
|
253 | + do_action('gravityview_log_error', 'GravityView_Edit_Entry[check_user_cap_edit_entry] Entry `created_by` doesn\'t exist.'); |
|
254 | 254 | |
255 | - $user_can_edit = false; |
|
255 | + $user_can_edit = false; |
|
256 | 256 | |
257 | - } else { |
|
257 | + } else { |
|
258 | 258 | |
259 | - // get user_edit setting |
|
260 | - if( empty( $view_id ) || $view_id == GravityView_View::getInstance()->getViewId() ) { |
|
261 | - // if View ID not specified or is the current view |
|
262 | - $user_edit = GravityView_View::getInstance()->getAtts('user_edit'); |
|
263 | - } else { |
|
264 | - // in case is specified and not the current view |
|
265 | - $user_edit = GVCommon::get_template_setting( $view_id, 'user_edit' ); |
|
266 | - } |
|
259 | + // get user_edit setting |
|
260 | + if( empty( $view_id ) || $view_id == GravityView_View::getInstance()->getViewId() ) { |
|
261 | + // if View ID not specified or is the current view |
|
262 | + $user_edit = GravityView_View::getInstance()->getAtts('user_edit'); |
|
263 | + } else { |
|
264 | + // in case is specified and not the current view |
|
265 | + $user_edit = GVCommon::get_template_setting( $view_id, 'user_edit' ); |
|
266 | + } |
|
267 | 267 | |
268 | - $current_user = wp_get_current_user(); |
|
268 | + $current_user = wp_get_current_user(); |
|
269 | 269 | |
270 | - // User edit is disabled |
|
271 | - if( empty( $user_edit ) ) { |
|
270 | + // User edit is disabled |
|
271 | + if( empty( $user_edit ) ) { |
|
272 | 272 | |
273 | - do_action('gravityview_log_debug', 'GravityView_Edit_Entry[check_user_cap_edit_entry] User Edit is disabled. Returning false.' ); |
|
273 | + do_action('gravityview_log_debug', 'GravityView_Edit_Entry[check_user_cap_edit_entry] User Edit is disabled. Returning false.' ); |
|
274 | 274 | |
275 | - $user_can_edit = false; |
|
276 | - } |
|
275 | + $user_can_edit = false; |
|
276 | + } |
|
277 | 277 | |
278 | - // User edit is enabled and the logged-in user is the same as the user who created the entry. We're good. |
|
279 | - else if( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry['created_by'] ) ) { |
|
278 | + // User edit is enabled and the logged-in user is the same as the user who created the entry. We're good. |
|
279 | + else if( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry['created_by'] ) ) { |
|
280 | 280 | |
281 | - do_action('gravityview_log_debug', sprintf( 'GravityView_Edit_Entry[check_user_cap_edit_entry] User %s created the entry.', $current_user->ID ) ); |
|
281 | + do_action('gravityview_log_debug', sprintf( 'GravityView_Edit_Entry[check_user_cap_edit_entry] User %s created the entry.', $current_user->ID ) ); |
|
282 | 282 | |
283 | - $user_can_edit = true; |
|
283 | + $user_can_edit = true; |
|
284 | 284 | |
285 | - } else if( ! is_user_logged_in() ) { |
|
285 | + } else if( ! is_user_logged_in() ) { |
|
286 | 286 | |
287 | - do_action( 'gravityview_log_debug', __METHOD__ . ' No user defined; edit entry requires logged in user' ); |
|
288 | - } |
|
287 | + do_action( 'gravityview_log_debug', __METHOD__ . ' No user defined; edit entry requires logged in user' ); |
|
288 | + } |
|
289 | 289 | |
290 | - } |
|
290 | + } |
|
291 | 291 | |
292 | - /** |
|
293 | - * @filter `gravityview/edit_entry/user_can_edit_entry` Modify whether user can edit an entry. |
|
294 | - * @since 1.15 Added `$entry` and `$view_id` parameters |
|
295 | - * @param[in,out] boolean $user_can_edit Can the current user edit the current entry? (Default: false) |
|
296 | - * @param[in] array $entry Gravity Forms entry array {@since 1.15} |
|
297 | - * @param[in] int $view_id ID of the view you want to check visibility against {@since 1.15} |
|
298 | - */ |
|
299 | - $user_can_edit = apply_filters( 'gravityview/edit_entry/user_can_edit_entry', $user_can_edit, $entry, $view_id ); |
|
292 | + /** |
|
293 | + * @filter `gravityview/edit_entry/user_can_edit_entry` Modify whether user can edit an entry. |
|
294 | + * @since 1.15 Added `$entry` and `$view_id` parameters |
|
295 | + * @param[in,out] boolean $user_can_edit Can the current user edit the current entry? (Default: false) |
|
296 | + * @param[in] array $entry Gravity Forms entry array {@since 1.15} |
|
297 | + * @param[in] int $view_id ID of the view you want to check visibility against {@since 1.15} |
|
298 | + */ |
|
299 | + $user_can_edit = apply_filters( 'gravityview/edit_entry/user_can_edit_entry', $user_can_edit, $entry, $view_id ); |
|
300 | 300 | |
301 | - return (bool)$user_can_edit; |
|
302 | - } |
|
301 | + return (bool)$user_can_edit; |
|
302 | + } |
|
303 | 303 | |
304 | 304 | |
305 | 305 |
@@ -10,14 +10,14 @@ discard block |
||
10 | 10 | * Describes log levels. |
11 | 11 | */ |
12 | 12 | class LogLevel { |
13 | - const EMERGENCY = 'emergency'; |
|
14 | - const ALERT = 'alert'; |
|
15 | - const CRITICAL = 'critical'; |
|
16 | - const ERROR = 'error'; |
|
17 | - const WARNING = 'warning'; |
|
18 | - const NOTICE = 'notice'; |
|
19 | - const INFO = 'info'; |
|
20 | - const DEBUG = 'debug'; |
|
13 | + const EMERGENCY = 'emergency'; |
|
14 | + const ALERT = 'alert'; |
|
15 | + const CRITICAL = 'critical'; |
|
16 | + const ERROR = 'error'; |
|
17 | + const WARNING = 'warning'; |
|
18 | + const NOTICE = 'notice'; |
|
19 | + const INFO = 'info'; |
|
20 | + const DEBUG = 'debug'; |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | /** |
@@ -28,127 +28,127 @@ discard block |
||
28 | 28 | * @see https://github.com/php-fig/log/blob/master/Psr/Log/AbstractLogger.php |
29 | 29 | */ |
30 | 30 | abstract class Logger /** @todo extends Psr\Log\AbstractLogger */ { |
31 | - /** |
|
32 | - * System is unusable. |
|
33 | - * |
|
34 | - * @param string $message |
|
35 | - * @param array $context |
|
36 | - * |
|
37 | - * @return void |
|
38 | - */ |
|
39 | - public function emergency($message, array $context = array()) |
|
40 | - { |
|
41 | - $this->log(LogLevel::EMERGENCY, $message, $context); |
|
42 | - } |
|
31 | + /** |
|
32 | + * System is unusable. |
|
33 | + * |
|
34 | + * @param string $message |
|
35 | + * @param array $context |
|
36 | + * |
|
37 | + * @return void |
|
38 | + */ |
|
39 | + public function emergency($message, array $context = array()) |
|
40 | + { |
|
41 | + $this->log(LogLevel::EMERGENCY, $message, $context); |
|
42 | + } |
|
43 | 43 | |
44 | - /** |
|
45 | - * Action must be taken immediately. |
|
46 | - * |
|
47 | - * Example: Entire website down, database unavailable, etc. This should |
|
48 | - * trigger the SMS alerts and wake you up. |
|
49 | - * |
|
50 | - * @param string $message |
|
51 | - * @param array $context |
|
52 | - * |
|
53 | - * @return void |
|
54 | - */ |
|
55 | - public function alert($message, array $context = array()) |
|
56 | - { |
|
57 | - $this->log(LogLevel::ALERT, $message, $context); |
|
58 | - } |
|
44 | + /** |
|
45 | + * Action must be taken immediately. |
|
46 | + * |
|
47 | + * Example: Entire website down, database unavailable, etc. This should |
|
48 | + * trigger the SMS alerts and wake you up. |
|
49 | + * |
|
50 | + * @param string $message |
|
51 | + * @param array $context |
|
52 | + * |
|
53 | + * @return void |
|
54 | + */ |
|
55 | + public function alert($message, array $context = array()) |
|
56 | + { |
|
57 | + $this->log(LogLevel::ALERT, $message, $context); |
|
58 | + } |
|
59 | 59 | |
60 | - /** |
|
61 | - * Critical conditions. |
|
62 | - * |
|
63 | - * Example: Application component unavailable, unexpected exception. |
|
64 | - * |
|
65 | - * @param string $message |
|
66 | - * @param array $context |
|
67 | - * |
|
68 | - * @return void |
|
69 | - */ |
|
70 | - public function critical($message, array $context = array()) |
|
71 | - { |
|
72 | - $this->log(LogLevel::CRITICAL, $message, $context); |
|
73 | - } |
|
60 | + /** |
|
61 | + * Critical conditions. |
|
62 | + * |
|
63 | + * Example: Application component unavailable, unexpected exception. |
|
64 | + * |
|
65 | + * @param string $message |
|
66 | + * @param array $context |
|
67 | + * |
|
68 | + * @return void |
|
69 | + */ |
|
70 | + public function critical($message, array $context = array()) |
|
71 | + { |
|
72 | + $this->log(LogLevel::CRITICAL, $message, $context); |
|
73 | + } |
|
74 | 74 | |
75 | - /** |
|
76 | - * Runtime errors that do not require immediate action but should typically |
|
77 | - * be logged and monitored. |
|
78 | - * |
|
79 | - * @param string $message |
|
80 | - * @param array $context |
|
81 | - * |
|
82 | - * @return void |
|
83 | - */ |
|
84 | - public function error($message, array $context = array()) |
|
85 | - { |
|
86 | - $this->log(LogLevel::ERROR, $message, $context); |
|
87 | - } |
|
75 | + /** |
|
76 | + * Runtime errors that do not require immediate action but should typically |
|
77 | + * be logged and monitored. |
|
78 | + * |
|
79 | + * @param string $message |
|
80 | + * @param array $context |
|
81 | + * |
|
82 | + * @return void |
|
83 | + */ |
|
84 | + public function error($message, array $context = array()) |
|
85 | + { |
|
86 | + $this->log(LogLevel::ERROR, $message, $context); |
|
87 | + } |
|
88 | 88 | |
89 | - /** |
|
90 | - * Exceptional occurrences that are not errors. |
|
91 | - * |
|
92 | - * Example: Use of deprecated APIs, poor use of an API, undesirable things |
|
93 | - * that are not necessarily wrong. |
|
94 | - * |
|
95 | - * @param string $message |
|
96 | - * @param array $context |
|
97 | - * |
|
98 | - * @return void |
|
99 | - */ |
|
100 | - public function warning($message, array $context = array()) |
|
101 | - { |
|
102 | - $this->log(LogLevel::WARNING, $message, $context); |
|
103 | - } |
|
89 | + /** |
|
90 | + * Exceptional occurrences that are not errors. |
|
91 | + * |
|
92 | + * Example: Use of deprecated APIs, poor use of an API, undesirable things |
|
93 | + * that are not necessarily wrong. |
|
94 | + * |
|
95 | + * @param string $message |
|
96 | + * @param array $context |
|
97 | + * |
|
98 | + * @return void |
|
99 | + */ |
|
100 | + public function warning($message, array $context = array()) |
|
101 | + { |
|
102 | + $this->log(LogLevel::WARNING, $message, $context); |
|
103 | + } |
|
104 | 104 | |
105 | - /** |
|
106 | - * Normal but significant events. |
|
107 | - * |
|
108 | - * @param string $message |
|
109 | - * @param array $context |
|
110 | - * |
|
111 | - * @return void |
|
112 | - */ |
|
113 | - public function notice($message, array $context = array()) |
|
114 | - { |
|
115 | - $this->log(LogLevel::NOTICE, $message, $context); |
|
116 | - } |
|
105 | + /** |
|
106 | + * Normal but significant events. |
|
107 | + * |
|
108 | + * @param string $message |
|
109 | + * @param array $context |
|
110 | + * |
|
111 | + * @return void |
|
112 | + */ |
|
113 | + public function notice($message, array $context = array()) |
|
114 | + { |
|
115 | + $this->log(LogLevel::NOTICE, $message, $context); |
|
116 | + } |
|
117 | 117 | |
118 | - /** |
|
119 | - * Interesting events. |
|
120 | - * |
|
121 | - * Example: User logs in, SQL logs. |
|
122 | - * |
|
123 | - * @param string $message |
|
124 | - * @param array $context |
|
125 | - * |
|
126 | - * @return void |
|
127 | - */ |
|
128 | - public function info($message, array $context = array()) |
|
129 | - { |
|
130 | - $this->log(LogLevel::INFO, $message, $context); |
|
131 | - } |
|
118 | + /** |
|
119 | + * Interesting events. |
|
120 | + * |
|
121 | + * Example: User logs in, SQL logs. |
|
122 | + * |
|
123 | + * @param string $message |
|
124 | + * @param array $context |
|
125 | + * |
|
126 | + * @return void |
|
127 | + */ |
|
128 | + public function info($message, array $context = array()) |
|
129 | + { |
|
130 | + $this->log(LogLevel::INFO, $message, $context); |
|
131 | + } |
|
132 | 132 | |
133 | - /** |
|
134 | - * Detailed debug information. |
|
135 | - * |
|
136 | - * @param string $message |
|
137 | - * @param array $context |
|
138 | - * |
|
139 | - * @return void |
|
140 | - */ |
|
141 | - public function debug($message, array $context = array()) |
|
142 | - { |
|
143 | - $this->log(LogLevel::DEBUG, $message, $context); |
|
144 | - } |
|
133 | + /** |
|
134 | + * Detailed debug information. |
|
135 | + * |
|
136 | + * @param string $message |
|
137 | + * @param array $context |
|
138 | + * |
|
139 | + * @return void |
|
140 | + */ |
|
141 | + public function debug($message, array $context = array()) |
|
142 | + { |
|
143 | + $this->log(LogLevel::DEBUG, $message, $context); |
|
144 | + } |
|
145 | 145 | |
146 | 146 | /** |
147 | 147 | * Bake the context into { } placeholders in the message. |
148 | - * @param string $message |
|
149 | - * @param array $context |
|
150 | - * |
|
151 | - * @return string The baked message; |
|
148 | + * @param string $message |
|
149 | + * @param array $context |
|
150 | + * |
|
151 | + * @return string The baked message; |
|
152 | 152 | */ |
153 | 153 | protected function interpolate( $message, $context ) { |
154 | 154 | foreach ( $context as $key => $val ) { |
@@ -202,12 +202,12 @@ |
||
202 | 202 | } |
203 | 203 | |
204 | 204 | /** |
205 | - * @filter `gravityview/configuration/fields` Filter the View fields' configuration array |
|
206 | - * @since 1.6.5 |
|
207 | - * |
|
208 | - * @param $fields array Multi-array of fields with first level being the field zones |
|
209 | - * @param $view_id int The View the fields are being pulled for |
|
210 | - */ |
|
205 | + * @filter `gravityview/configuration/fields` Filter the View fields' configuration array |
|
206 | + * @since 1.6.5 |
|
207 | + * |
|
208 | + * @param $fields array Multi-array of fields with first level being the field zones |
|
209 | + * @param $view_id int The View the fields are being pulled for |
|
210 | + */ |
|
211 | 211 | $configuration = apply_filters( 'gravityview/configuration/fields', (array)$view->_gravityview_directory_fields, $view->ID ); |
212 | 212 | |
213 | 213 | /** Get all fields. */ |
@@ -50,7 +50,6 @@ |
||
50 | 50 | * Register this shortcode class with the WordPress Shortcode API. |
51 | 51 | * |
52 | 52 | * @internal |
53 | - |
|
54 | 53 | * @return \GV\Shortcode|null The only internally registered instance of this shortcode, or null on error. |
55 | 54 | */ |
56 | 55 | public static function add() { |