@@ -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() { |
@@ -5,251 +5,251 @@ |
||
5 | 5 | */ |
6 | 6 | class GravityView_Change_Entry_Creator { |
7 | 7 | |
8 | - function __construct() { |
|
9 | - |
|
10 | - /** |
|
11 | - * @since 1.5.1 |
|
12 | - */ |
|
13 | - add_action('gform_user_registered', array( $this, 'assign_new_user_to_lead'), 10, 4 ); |
|
14 | - |
|
15 | - // ONLY ADMIN FROM HERE ON. |
|
16 | - if( !is_admin() ) { return; } |
|
17 | - |
|
18 | - /** |
|
19 | - * @filter `gravityview_disable_change_entry_creator` Disable the Change Entry Creator functionality |
|
20 | - * @since 1.7.4 |
|
21 | - * @param boolean $disable Disable the Change Entry Creator functionality. Default: false. |
|
22 | - */ |
|
23 | - if( apply_filters('gravityview_disable_change_entry_creator', false ) ) { |
|
24 | - return; |
|
25 | - } |
|
26 | - |
|
27 | - /** |
|
28 | - * Use `init` to fix bbPress warning |
|
29 | - * @see https://bbpress.trac.wordpress.org/ticket/2309 |
|
30 | - */ |
|
31 | - add_action('init', array( $this, 'load'), 100 ); |
|
32 | - |
|
33 | - add_action('plugins_loaded', array( $this, 'prevent_conflicts') ); |
|
34 | - |
|
35 | - } |
|
36 | - |
|
37 | - /** |
|
38 | - * When an user is created using the User Registration add-on, assign the entry to them |
|
39 | - * |
|
40 | - * @since 1.5.1 |
|
41 | - * @uses RGFormsModel::update_lead_property() Modify the entry `created_by` field |
|
42 | - * @param int $user_id WordPress User ID |
|
43 | - * @param array $config User registration feed configuration |
|
44 | - * @param array $entry GF Entry array |
|
45 | - * @param string $password User password |
|
46 | - * @return void |
|
47 | - */ |
|
48 | - function assign_new_user_to_lead( $user_id, $config, $entry = array(), $password = '' ) { |
|
49 | - |
|
50 | - /** |
|
51 | - * Disable assigning the new user to the entry by returning false. |
|
52 | - * @param int $user_id WordPress User ID |
|
53 | - * @param array $config User registration feed configuration |
|
54 | - * @param array $entry GF Entry array |
|
55 | - */ |
|
56 | - $assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry ); |
|
57 | - |
|
58 | - // If filter returns false, do not process |
|
59 | - if( empty( $assign_to_lead ) ) { |
|
60 | - return; |
|
61 | - } |
|
62 | - |
|
63 | - // Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing |
|
64 | - $result = RGFormsModel::update_lead_property( $entry['id'], 'created_by', $user_id, false, true ); |
|
65 | - |
|
66 | - if( empty( $result ) ) { |
|
67 | - $status = __('Error', 'gravityview'); |
|
68 | - } else { |
|
69 | - $status = __('Success', 'gravityview'); |
|
70 | - } |
|
71 | - |
|
72 | - $note = sprintf( _x('%s: Assigned User ID #%d as the entry creator.', 'First parameter: Success or error of the action. Second: User ID number', 'gravityview'), $status, $user_id ); |
|
73 | - |
|
74 | - do_action( 'gravityview_log_debug', 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - '.$note ); |
|
75 | - |
|
76 | - /** |
|
77 | - * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator |
|
78 | - * @since 1.21.5 |
|
79 | - * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
|
80 | - */ |
|
81 | - if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
82 | - return; |
|
83 | - } |
|
84 | - |
|
85 | - GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
8 | + function __construct() { |
|
9 | + |
|
10 | + /** |
|
11 | + * @since 1.5.1 |
|
12 | + */ |
|
13 | + add_action('gform_user_registered', array( $this, 'assign_new_user_to_lead'), 10, 4 ); |
|
14 | + |
|
15 | + // ONLY ADMIN FROM HERE ON. |
|
16 | + if( !is_admin() ) { return; } |
|
17 | + |
|
18 | + /** |
|
19 | + * @filter `gravityview_disable_change_entry_creator` Disable the Change Entry Creator functionality |
|
20 | + * @since 1.7.4 |
|
21 | + * @param boolean $disable Disable the Change Entry Creator functionality. Default: false. |
|
22 | + */ |
|
23 | + if( apply_filters('gravityview_disable_change_entry_creator', false ) ) { |
|
24 | + return; |
|
25 | + } |
|
26 | + |
|
27 | + /** |
|
28 | + * Use `init` to fix bbPress warning |
|
29 | + * @see https://bbpress.trac.wordpress.org/ticket/2309 |
|
30 | + */ |
|
31 | + add_action('init', array( $this, 'load'), 100 ); |
|
32 | + |
|
33 | + add_action('plugins_loaded', array( $this, 'prevent_conflicts') ); |
|
34 | + |
|
35 | + } |
|
36 | + |
|
37 | + /** |
|
38 | + * When an user is created using the User Registration add-on, assign the entry to them |
|
39 | + * |
|
40 | + * @since 1.5.1 |
|
41 | + * @uses RGFormsModel::update_lead_property() Modify the entry `created_by` field |
|
42 | + * @param int $user_id WordPress User ID |
|
43 | + * @param array $config User registration feed configuration |
|
44 | + * @param array $entry GF Entry array |
|
45 | + * @param string $password User password |
|
46 | + * @return void |
|
47 | + */ |
|
48 | + function assign_new_user_to_lead( $user_id, $config, $entry = array(), $password = '' ) { |
|
49 | + |
|
50 | + /** |
|
51 | + * Disable assigning the new user to the entry by returning false. |
|
52 | + * @param int $user_id WordPress User ID |
|
53 | + * @param array $config User registration feed configuration |
|
54 | + * @param array $entry GF Entry array |
|
55 | + */ |
|
56 | + $assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry ); |
|
57 | + |
|
58 | + // If filter returns false, do not process |
|
59 | + if( empty( $assign_to_lead ) ) { |
|
60 | + return; |
|
61 | + } |
|
62 | + |
|
63 | + // Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing |
|
64 | + $result = RGFormsModel::update_lead_property( $entry['id'], 'created_by', $user_id, false, true ); |
|
65 | + |
|
66 | + if( empty( $result ) ) { |
|
67 | + $status = __('Error', 'gravityview'); |
|
68 | + } else { |
|
69 | + $status = __('Success', 'gravityview'); |
|
70 | + } |
|
71 | + |
|
72 | + $note = sprintf( _x('%s: Assigned User ID #%d as the entry creator.', 'First parameter: Success or error of the action. Second: User ID number', 'gravityview'), $status, $user_id ); |
|
73 | + |
|
74 | + do_action( 'gravityview_log_debug', 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - '.$note ); |
|
75 | + |
|
76 | + /** |
|
77 | + * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator |
|
78 | + * @since 1.21.5 |
|
79 | + * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
|
80 | + */ |
|
81 | + if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
82 | + return; |
|
83 | + } |
|
84 | + |
|
85 | + GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
86 | 86 | |
87 | - } |
|
87 | + } |
|
88 | 88 | |
89 | - /** |
|
90 | - * Disable previous functionality; use this one as the canonical. |
|
91 | - * @return void |
|
92 | - */ |
|
93 | - function prevent_conflicts() { |
|
89 | + /** |
|
90 | + * Disable previous functionality; use this one as the canonical. |
|
91 | + * @return void |
|
92 | + */ |
|
93 | + function prevent_conflicts() { |
|
94 | 94 | |
95 | - // Plugin that was provided here: |
|
96 | - // @link https://gravityview.co/support/documentation/201991205/ |
|
97 | - remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
98 | - remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
99 | - |
|
100 | - // Disable for Gravity Forms Add-ons 3.6.2 and lower |
|
101 | - if( class_exists( 'KWS_GF_Change_Lead_Creator' ) ) { |
|
95 | + // Plugin that was provided here: |
|
96 | + // @link https://gravityview.co/support/documentation/201991205/ |
|
97 | + remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
98 | + remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
99 | + |
|
100 | + // Disable for Gravity Forms Add-ons 3.6.2 and lower |
|
101 | + if( class_exists( 'KWS_GF_Change_Lead_Creator' ) ) { |
|
102 | 102 | |
103 | - $Old_Lead_Creator = new KWS_GF_Change_Lead_Creator; |
|
103 | + $Old_Lead_Creator = new KWS_GF_Change_Lead_Creator; |
|
104 | 104 | |
105 | - // Now, no validation is required in the methods; let's hook in. |
|
106 | - remove_action('admin_init', array( $Old_Lead_Creator, 'set_screen_mode' ) ); |
|
107 | - |
|
108 | - remove_action("gform_entry_info", array( $Old_Lead_Creator, 'add_select' ), 10 ); |
|
109 | - |
|
110 | - remove_action("gform_after_update_entry", array( $Old_Lead_Creator, 'update_entry_creator' ), 10 ); |
|
111 | - } |
|
112 | - |
|
113 | - } |
|
114 | - |
|
115 | - /** |
|
116 | - * @since 3.6.3 |
|
117 | - * @return void |
|
118 | - */ |
|
119 | - function load() { |
|
105 | + // Now, no validation is required in the methods; let's hook in. |
|
106 | + remove_action('admin_init', array( $Old_Lead_Creator, 'set_screen_mode' ) ); |
|
107 | + |
|
108 | + remove_action("gform_entry_info", array( $Old_Lead_Creator, 'add_select' ), 10 ); |
|
109 | + |
|
110 | + remove_action("gform_after_update_entry", array( $Old_Lead_Creator, 'update_entry_creator' ), 10 ); |
|
111 | + } |
|
112 | + |
|
113 | + } |
|
114 | + |
|
115 | + /** |
|
116 | + * @since 3.6.3 |
|
117 | + * @return void |
|
118 | + */ |
|
119 | + function load() { |
|
120 | 120 | |
121 | - // Does GF exist? |
|
122 | - if( !class_exists('GFCommon') ) { |
|
123 | - return; |
|
124 | - } |
|
121 | + // Does GF exist? |
|
122 | + if( !class_exists('GFCommon') ) { |
|
123 | + return; |
|
124 | + } |
|
125 | 125 | |
126 | - // Can the user edit entries? |
|
127 | - if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
128 | - return; |
|
129 | - } |
|
126 | + // Can the user edit entries? |
|
127 | + if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
128 | + return; |
|
129 | + } |
|
130 | 130 | |
131 | - // If screen mode isn't set, then we're in the wrong place. |
|
132 | - if( empty( $_REQUEST['screen_mode'] ) ) { |
|
133 | - return; |
|
134 | - } |
|
131 | + // If screen mode isn't set, then we're in the wrong place. |
|
132 | + if( empty( $_REQUEST['screen_mode'] ) ) { |
|
133 | + return; |
|
134 | + } |
|
135 | 135 | |
136 | - // Now, no validation is required in the methods; let's hook in. |
|
137 | - add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
136 | + // Now, no validation is required in the methods; let's hook in. |
|
137 | + add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
138 | 138 | |
139 | - add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
139 | + add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
140 | 140 | |
141 | - add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
141 | + add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
142 | 142 | |
143 | - } |
|
143 | + } |
|
144 | 144 | |
145 | - /** |
|
146 | - * Allows for edit links to work with a link instead of a form (GET instead of POST) |
|
147 | - * @return void |
|
148 | - */ |
|
149 | - function set_screen_mode() { |
|
145 | + /** |
|
146 | + * Allows for edit links to work with a link instead of a form (GET instead of POST) |
|
147 | + * @return void |
|
148 | + */ |
|
149 | + function set_screen_mode() { |
|
150 | 150 | |
151 | - // If $_GET['screen_mode'] is set to edit, set $_POST value |
|
152 | - if( rgget('screen_mode') === 'edit' ) { |
|
153 | - $_POST["screen_mode"] = 'edit'; |
|
154 | - } |
|
151 | + // If $_GET['screen_mode'] is set to edit, set $_POST value |
|
152 | + if( rgget('screen_mode') === 'edit' ) { |
|
153 | + $_POST["screen_mode"] = 'edit'; |
|
154 | + } |
|
155 | 155 | |
156 | - } |
|
156 | + } |
|
157 | 157 | |
158 | - /** |
|
159 | - * When the entry creator is changed, add a note to the entry |
|
160 | - * @param array $form GF entry array |
|
161 | - * @param int $entry_id Entry ID |
|
162 | - * @return void |
|
163 | - */ |
|
164 | - function update_entry_creator($form, $entry_id) { |
|
165 | - global $current_user; |
|
158 | + /** |
|
159 | + * When the entry creator is changed, add a note to the entry |
|
160 | + * @param array $form GF entry array |
|
161 | + * @param int $entry_id Entry ID |
|
162 | + * @return void |
|
163 | + */ |
|
164 | + function update_entry_creator($form, $entry_id) { |
|
165 | + global $current_user; |
|
166 | 166 | |
167 | - // Update the entry |
|
168 | - $created_by = absint( rgpost('created_by') ); |
|
167 | + // Update the entry |
|
168 | + $created_by = absint( rgpost('created_by') ); |
|
169 | 169 | |
170 | - RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
170 | + RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
171 | 171 | |
172 | - // If the creator has changed, let's add a note about who it used to be. |
|
173 | - $originally_created_by = rgpost('originally_created_by'); |
|
172 | + // If the creator has changed, let's add a note about who it used to be. |
|
173 | + $originally_created_by = rgpost('originally_created_by'); |
|
174 | 174 | |
175 | - // If there's no owner and there didn't used to be, keep going |
|
176 | - if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
177 | - return; |
|
178 | - } |
|
175 | + // If there's no owner and there didn't used to be, keep going |
|
176 | + if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
177 | + return; |
|
178 | + } |
|
179 | 179 | |
180 | - // If the values have changed |
|
181 | - if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
180 | + // If the values have changed |
|
181 | + if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
182 | 182 | |
183 | - $user_data = get_userdata($current_user->ID); |
|
183 | + $user_data = get_userdata($current_user->ID); |
|
184 | 184 | |
185 | - $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
185 | + $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
186 | 186 | |
187 | - $original_name = $created_by_name = esc_attr_x( 'No User', 'To show that the entry was unassigned from an actual user to no user.', 'gravityview'); |
|
187 | + $original_name = $created_by_name = esc_attr_x( 'No User', 'To show that the entry was unassigned from an actual user to no user.', 'gravityview'); |
|
188 | 188 | |
189 | - if( !empty( $originally_created_by ) ) { |
|
190 | - $originally_created_by_user_data = get_userdata($originally_created_by); |
|
191 | - $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
192 | - } |
|
189 | + if( !empty( $originally_created_by ) ) { |
|
190 | + $originally_created_by_user_data = get_userdata($originally_created_by); |
|
191 | + $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
192 | + } |
|
193 | 193 | |
194 | - if( !empty( $created_by ) ) { |
|
195 | - $created_by_user_data = get_userdata($created_by); |
|
196 | - $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
197 | - } |
|
194 | + if( !empty( $created_by ) ) { |
|
195 | + $created_by_user_data = get_userdata($created_by); |
|
196 | + $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
197 | + } |
|
198 | 198 | |
199 | - GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $user_data->display_name, sprintf( __('Changed entry creator from %s to %s', 'gravityview'), $original_name, $created_by_name ), 'note' ); |
|
200 | - } |
|
199 | + GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $user_data->display_name, sprintf( __('Changed entry creator from %s to %s', 'gravityview'), $original_name, $created_by_name ), 'note' ); |
|
200 | + } |
|
201 | 201 | |
202 | - } |
|
202 | + } |
|
203 | 203 | |
204 | - /** |
|
205 | - * Output the select to change the entry creator |
|
206 | - * @param int $form_id GF Form ID |
|
207 | - * @param array $entry GF entry array |
|
208 | - * @return void |
|
209 | - */ |
|
210 | - function add_select($form_id, $entry ) { |
|
204 | + /** |
|
205 | + * Output the select to change the entry creator |
|
206 | + * @param int $form_id GF Form ID |
|
207 | + * @param array $entry GF entry array |
|
208 | + * @return void |
|
209 | + */ |
|
210 | + function add_select($form_id, $entry ) { |
|
211 | 211 | |
212 | - if( rgpost('screen_mode') !== 'edit' ) { |
|
213 | - return; |
|
214 | - } |
|
212 | + if( rgpost('screen_mode') !== 'edit' ) { |
|
213 | + return; |
|
214 | + } |
|
215 | 215 | |
216 | - $created_by_id = rgar( $entry, 'created_by' ); |
|
216 | + $created_by_id = rgar( $entry, 'created_by' ); |
|
217 | 217 | |
218 | - $users = GVCommon::get_users( 'change_entry_creator' ); |
|
218 | + $users = GVCommon::get_users( 'change_entry_creator' ); |
|
219 | 219 | |
220 | - $is_created_by_in_users = wp_list_filter( $users, array( 'ID' => $created_by_id ) ); |
|
220 | + $is_created_by_in_users = wp_list_filter( $users, array( 'ID' => $created_by_id ) ); |
|
221 | 221 | |
222 | - // Make sure that the entry creator is included in the users list. If not, add them. |
|
223 | - if ( ! empty( $created_by_id ) && empty( $is_created_by_in_users ) ) { |
|
222 | + // Make sure that the entry creator is included in the users list. If not, add them. |
|
223 | + if ( ! empty( $created_by_id ) && empty( $is_created_by_in_users ) ) { |
|
224 | 224 | |
225 | - if ( $created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) ) ) { |
|
226 | - $users = array_merge( $users, $created_by_user ); |
|
227 | - } |
|
228 | - } |
|
225 | + if ( $created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) ) ) { |
|
226 | + $users = array_merge( $users, $created_by_user ); |
|
227 | + } |
|
228 | + } |
|
229 | 229 | |
230 | - $output = '<label for="change_created_by">'; |
|
231 | - $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
232 | - $output .= '</label>'; |
|
230 | + $output = '<label for="change_created_by">'; |
|
231 | + $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
232 | + $output .= '</label>'; |
|
233 | 233 | |
234 | - // If there are users who are not being shown, show a warning. |
|
235 | - // TODO: Use AJAX instead of <select> |
|
236 | - $count_users = count_users(); |
|
237 | - if( sizeof( $users ) < $count_users['total_users'] ) { |
|
238 | - $output .= '<p><i class="dashicons dashicons-warning"></i> ' . sprintf( esc_html__( 'The displayed list of users has been trimmed due to the large number of users. %sLearn how to remove this limit%s.', 'gravityview' ), '<a href="https://docs.gravityview.co/article/251-i-only-see-some-users-in-the-change-entry-creator-dropdown" rel="external">', '</a>' ) . '</p>'; |
|
239 | - } |
|
234 | + // If there are users who are not being shown, show a warning. |
|
235 | + // TODO: Use AJAX instead of <select> |
|
236 | + $count_users = count_users(); |
|
237 | + if( sizeof( $users ) < $count_users['total_users'] ) { |
|
238 | + $output .= '<p><i class="dashicons dashicons-warning"></i> ' . sprintf( esc_html__( 'The displayed list of users has been trimmed due to the large number of users. %sLearn how to remove this limit%s.', 'gravityview' ), '<a href="https://docs.gravityview.co/article/251-i-only-see-some-users-in-the-change-entry-creator-dropdown" rel="external">', '</a>' ) . '</p>'; |
|
239 | + } |
|
240 | 240 | |
241 | - $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
|
242 | - $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
243 | - foreach($users as $user) { |
|
244 | - $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
245 | - } |
|
246 | - $output .= '</select>'; |
|
247 | - $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
241 | + $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
|
242 | + $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
243 | + foreach($users as $user) { |
|
244 | + $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
245 | + } |
|
246 | + $output .= '</select>'; |
|
247 | + $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
248 | 248 | |
249 | - unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
|
249 | + unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
|
250 | 250 | |
251 | - echo $output; |
|
252 | - } |
|
251 | + echo $output; |
|
252 | + } |
|
253 | 253 | |
254 | 254 | } |
255 | 255 |