@@ -50,13 +50,13 @@ discard block |
||
50 | 50 | * |
51 | 51 | * @return array Blacklist, with "total" added. If not edit context, original field blacklist. Otherwise, blacklist including total. |
52 | 52 | */ |
53 | - public function add_to_blacklist( $blacklist = array(), $context = NULL ){ |
|
53 | + public function add_to_blacklist( $blacklist = array(), $context = NULL ) { |
|
54 | 54 | |
55 | - if( empty( $context ) || $context !== 'edit' ) { |
|
55 | + if ( empty( $context ) || $context !== 'edit' ) { |
|
56 | 56 | return $blacklist; |
57 | 57 | } |
58 | 58 | |
59 | - $blacklist[] = 'total'; |
|
59 | + $blacklist[ ] = 'total'; |
|
60 | 60 | |
61 | 61 | return $blacklist; |
62 | 62 | } |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | */ |
75 | 75 | function edit_entry_recalculate_totals( $form = array(), $entry_id = 0, $Edit_Entry_Render = null ) { |
76 | 76 | |
77 | - $original_form = GFAPI::get_form( $form['id'] ); |
|
77 | + $original_form = GFAPI::get_form( $form[ 'id' ] ); |
|
78 | 78 | |
79 | 79 | $total_fields = GFCommon::get_fields_by_type( $original_form, 'total' ); |
80 | 80 | |
@@ -85,12 +85,12 @@ discard block |
||
85 | 85 | |
86 | 86 | /** @type GF_Field_Total $total_field */ |
87 | 87 | foreach ( $total_fields as $total_field ) { |
88 | - $entry["{$total_field->id}"] = GFCommon::get_order_total( $original_form, $entry ); |
|
88 | + $entry[ "{$total_field->id}" ] = GFCommon::get_order_total( $original_form, $entry ); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | $return_entry = GFAPI::update_entry( $entry ); |
92 | 92 | |
93 | - if( is_wp_error( $return_entry ) ) { |
|
93 | + if ( is_wp_error( $return_entry ) ) { |
|
94 | 94 | gravityview()->log->error( 'Updating the entry total fields failed', array( 'data' => $return_entry ) ); |
95 | 95 | } else { |
96 | 96 | gravityview()->log->debug( 'Updating the entry total fields succeeded' ); |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | function edit_entry_fix_hidden_fields( $fields ) { |
50 | 50 | |
51 | 51 | /** @type GF_Field $field */ |
52 | - foreach( $fields as &$field ) { |
|
52 | + foreach ( $fields as &$field ) { |
|
53 | 53 | |
54 | 54 | if ( 'hidden' === $field->type ) { |
55 | 55 | |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | */ |
63 | 63 | $reveal_hidden_field = apply_filters( 'gravityview/edit_entry/reveal_hidden_field', false, $field ); |
64 | 64 | |
65 | - if( ! $reveal_hidden_field ) { |
|
65 | + if ( ! $reveal_hidden_field ) { |
|
66 | 66 | continue; |
67 | 67 | } |
68 | 68 |
@@ -50,7 +50,7 @@ |
||
50 | 50 | public function edit_entry_fix_uid_fields( $fields ) { |
51 | 51 | |
52 | 52 | /** @type \GF_Field $field */ |
53 | - foreach( $fields as &$field ) { |
|
53 | + foreach ( $fields as &$field ) { |
|
54 | 54 | if ( 'uid' === $field->type ) { |
55 | 55 | |
56 | 56 | // Replace GF_Field with GF_Field_Text, copying all the data from $field |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | * @return \GV\Field The field implementation from configuration (\GV\GF_Field, \GV\Internal_Field). |
167 | 167 | */ |
168 | 168 | public static function from_configuration( $configuration ) { |
169 | - if ( empty( $configuration['id'] ) ) { |
|
169 | + if ( empty( $configuration[ 'id' ] ) ) { |
|
170 | 170 | $field = new self(); |
171 | 171 | gravityview()->log->error( 'Trying to get field from configuration without a field ID.', array( 'data' => $configuration ) ); |
172 | 172 | $field->update_configuration( $configuration ); |
@@ -179,8 +179,8 @@ discard block |
||
179 | 179 | } else { |
180 | 180 | $trace = debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ); |
181 | 181 | } |
182 | - $trace = $trace[1]; |
|
183 | - if ( $trace['function'] == 'from_configuration' && $trace['class'] == __CLASS__ ) { |
|
182 | + $trace = $trace[ 1 ]; |
|
183 | + if ( $trace[ 'function' ] == 'from_configuration' && $trace[ 'class' ] == __CLASS__ ) { |
|
184 | 184 | $field = new self(); |
185 | 185 | gravityview()->log->error( 'Infinite loop protection tripped. Returning default class here.' ); |
186 | 186 | $field->update_configuration( $configuration ); |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | } |
189 | 189 | |
190 | 190 | /** @type \GV\GF_Field|\GV\Internal_Field $field_class Determine the field implementation to use, and try to use. */ |
191 | - $field_class = is_numeric( $configuration['id'] ) ? '\GV\GF_Field' : '\GV\Internal_Field'; |
|
191 | + $field_class = is_numeric( $configuration[ 'id' ] ) ? '\GV\GF_Field' : '\GV\Internal_Field'; |
|
192 | 192 | |
193 | 193 | /** |
194 | 194 | * @filter `gravityview/field/class` Filter the field class about to be created from the configuration. |
@@ -227,24 +227,24 @@ discard block |
||
227 | 227 | public function update_configuration( $configuration ) { |
228 | 228 | $configuration = wp_parse_args( $configuration, $this->as_configuration() ); |
229 | 229 | |
230 | - if ( $this->ID != $configuration['id'] ) { |
|
230 | + if ( $this->ID != $configuration[ 'id' ] ) { |
|
231 | 231 | /** Smelling trouble here... */ |
232 | 232 | gravityview()->log->warning( 'ID is being changed for {field_class} instance, but implementation is not. Use ::from_configuration instead', array( 'field_class', __CLASS__ ) ); |
233 | 233 | } |
234 | 234 | |
235 | - $this->ID = $configuration['id']; |
|
236 | - $this->label = $configuration['label']; |
|
237 | - $this->show_label = $configuration['show_label'] == '1'; |
|
238 | - $this->custom_label = $configuration['custom_label']; |
|
239 | - $this->custom_class = $configuration['custom_class']; |
|
240 | - $this->cap = $configuration['only_loggedin'] == '1' ? $configuration['only_loggedin_cap'] : ''; |
|
241 | - $this->search_filter = $configuration['search_filter'] == '1'; |
|
242 | - $this->show_as_link = $configuration['show_as_link'] == '1'; |
|
235 | + $this->ID = $configuration[ 'id' ]; |
|
236 | + $this->label = $configuration[ 'label' ]; |
|
237 | + $this->show_label = $configuration[ 'show_label' ] == '1'; |
|
238 | + $this->custom_label = $configuration[ 'custom_label' ]; |
|
239 | + $this->custom_class = $configuration[ 'custom_class' ]; |
|
240 | + $this->cap = $configuration[ 'only_loggedin' ] == '1' ? $configuration[ 'only_loggedin_cap' ] : ''; |
|
241 | + $this->search_filter = $configuration[ 'search_filter' ] == '1'; |
|
242 | + $this->show_as_link = $configuration[ 'show_as_link' ] == '1'; |
|
243 | 243 | |
244 | 244 | /** Shared among all field types (sort of). */ |
245 | 245 | $shared_configuration_keys = array( |
246 | 246 | 'id', 'label', 'show_label', 'custom_label', 'custom_class', |
247 | - 'only_loggedin' ,'only_loggedin_cap', 'search_filter', 'show_as_link', |
|
247 | + 'only_loggedin', 'only_loggedin_cap', 'search_filter', 'show_as_link', |
|
248 | 248 | ); |
249 | 249 | |
250 | 250 | /** Everything else goes into the properties for now. @todo subclasses! */ |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | |
274 | 274 | /** A custom label is available. */ |
275 | 275 | if ( ! empty( $this->custom_label ) ) { |
276 | - return \GravityView_API::replace_variables( $this->custom_label, $source ? $source->form ? : null : null, $entry ? $entry->as_entry() : null ); |
|
276 | + return \GravityView_API::replace_variables( $this->custom_label, $source ? $source->form ?: null : null, $entry ? $entry->as_entry() : null ); |
|
277 | 277 | } |
278 | 278 | |
279 | 279 | return ''; |
@@ -359,7 +359,7 @@ discard block |
||
359 | 359 | * @return mixed|null The value for the given configuration key, null if doesn't exist. |
360 | 360 | */ |
361 | 361 | public function __get( $key ) { |
362 | - switch( $key ) { |
|
362 | + switch ( $key ) { |
|
363 | 363 | default: |
364 | 364 | if ( isset( $this->configuration[ $key ] ) ) { |
365 | 365 | return $this->configuration[ $key ]; |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | * @return boolean Whether this $key is set or not. |
378 | 378 | */ |
379 | 379 | public function __isset( $key ) { |
380 | - switch( $key ) { |
|
380 | + switch ( $key ) { |
|
381 | 381 | default: |
382 | 382 | return isset( $this->configuration[ $key ] ); |
383 | 383 | } |
@@ -52,13 +52,13 @@ discard block |
||
52 | 52 | function update_priority() { |
53 | 53 | global $wp_meta_boxes; |
54 | 54 | |
55 | - if ( ! empty( $wp_meta_boxes['gravityview'] ) ) { |
|
55 | + if ( ! empty( $wp_meta_boxes[ 'gravityview' ] ) ) { |
|
56 | 56 | foreach ( array( 'high', 'core', 'low' ) as $position ) { |
57 | - if ( isset( $wp_meta_boxes['gravityview']['normal'][ $position ] ) ) { |
|
58 | - foreach ( $wp_meta_boxes['gravityview']['normal'][ $position ] as $key => $meta_box ) { |
|
57 | + if ( isset( $wp_meta_boxes[ 'gravityview' ][ 'normal' ][ $position ] ) ) { |
|
58 | + foreach ( $wp_meta_boxes[ 'gravityview' ][ 'normal' ][ $position ] as $key => $meta_box ) { |
|
59 | 59 | if ( ! preg_match( '/^gravityview_/ism', $key ) ) { |
60 | - $wp_meta_boxes['gravityview']['advanced'][ $position ][ $key ] = $meta_box; |
|
61 | - unset( $wp_meta_boxes['gravityview']['normal'][ $position ][ $key ] ); |
|
60 | + $wp_meta_boxes[ 'gravityview' ][ 'advanced' ][ $position ][ $key ] = $meta_box; |
|
61 | + unset( $wp_meta_boxes[ 'gravityview' ][ 'normal' ][ $position ][ $key ] ); |
|
62 | 62 | } |
63 | 63 | } |
64 | 64 | } |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | |
192 | 192 | foreach ( $metaboxes as $m ) { |
193 | 193 | |
194 | - $tab = new GravityView_Metabox_Tab( $m['id'], $m['title'], $m['file'], $m['icon-class'], $m['callback'], $m['callback_args'] ); |
|
194 | + $tab = new GravityView_Metabox_Tab( $m[ 'id' ], $m[ 'title' ], $m[ 'file' ], $m[ 'icon-class' ], $m[ 'callback' ], $m[ 'callback_args' ] ); |
|
195 | 195 | |
196 | 196 | GravityView_Metabox_Tabs::add( $tab ); |
197 | 197 | |
@@ -261,13 +261,13 @@ discard block |
||
261 | 261 | |
262 | 262 | $form = gravityview_get_form( $curr_form ); |
263 | 263 | |
264 | - $get_id_backup = isset( $_GET['id'] ) ? $_GET['id'] : null; |
|
264 | + $get_id_backup = isset( $_GET[ 'id' ] ) ? $_GET[ 'id' ] : null; |
|
265 | 265 | |
266 | - if ( isset( $form['id'] ) ) { |
|
266 | + if ( isset( $form[ 'id' ] ) ) { |
|
267 | 267 | $form_script = 'var form = ' . GFCommon::json_encode( $form ) . ';'; |
268 | 268 | |
269 | 269 | // The `gf_vars()` method needs a $_GET[id] variable set with the form ID. |
270 | - $_GET['id'] = $form['id']; |
|
270 | + $_GET[ 'id' ] = $form[ 'id' ]; |
|
271 | 271 | |
272 | 272 | } else { |
273 | 273 | $form_script = 'var form = new Form();'; |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | $output = '<script type="text/javascript" data-gv-merge-tags="1">' . $form_script . "\n" . GFCommon::gf_vars( false ) . '</script>'; |
277 | 277 | |
278 | 278 | // Restore previous $_GET setting |
279 | - $_GET['id'] = $get_id_backup; |
|
279 | + $_GET[ 'id' ] = $get_id_backup; |
|
280 | 280 | |
281 | 281 | return $output; |
282 | 282 | } |
@@ -12,11 +12,11 @@ |
||
12 | 12 | extract( $gravityview_view->getCurrentField() ); |
13 | 13 | |
14 | 14 | // Only show the link to logged-in users with the right caps. |
15 | -if( !GravityView_Delete_Entry::check_user_cap_delete_entry( $entry, $field_settings ) ) { |
|
15 | +if ( ! GravityView_Delete_Entry::check_user_cap_delete_entry( $entry, $field_settings ) ) { |
|
16 | 16 | return; |
17 | 17 | } |
18 | 18 | |
19 | -$link_text = empty( $field_settings['delete_link'] ) ? __('Delete Entry', 'gravityview') : $field_settings['delete_link']; |
|
19 | +$link_text = empty( $field_settings[ 'delete_link' ] ) ? __( 'Delete Entry', 'gravityview' ) : $field_settings[ 'delete_link' ]; |
|
20 | 20 | |
21 | 21 | $link_text = apply_filters( 'gravityview_entry_link', GravityView_API::replace_variables( $link_text, $form, $entry ) ); |
22 | 22 |
@@ -83,9 +83,9 @@ discard block |
||
83 | 83 | if ( $field_id === 'delete_link' ) { |
84 | 84 | |
85 | 85 | // Remove other built-in caps. |
86 | - unset( $caps['publish_posts'], $caps['gravityforms_view_entries'], $caps['delete_others_posts'] ); |
|
86 | + unset( $caps[ 'publish_posts' ], $caps[ 'gravityforms_view_entries' ], $caps[ 'delete_others_posts' ] ); |
|
87 | 87 | |
88 | - $caps['read'] = _x( 'Entry Creator', 'User capability', 'gravityview' ); |
|
88 | + $caps[ 'read' ] = _x( 'Entry Creator', 'User capability', 'gravityview' ); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | return $caps; |
@@ -108,12 +108,12 @@ discard block |
||
108 | 108 | public function delete_link_field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
109 | 109 | |
110 | 110 | // Always a link, never a filter |
111 | - unset( $field_options['show_as_link'], $field_options['search_filter'] ); |
|
111 | + unset( $field_options[ 'show_as_link' ], $field_options[ 'search_filter' ] ); |
|
112 | 112 | |
113 | 113 | // Delete Entry link should only appear to visitors capable of editing entries |
114 | - unset( $field_options['only_loggedin'], $field_options['only_loggedin_cap'] ); |
|
114 | + unset( $field_options[ 'only_loggedin' ], $field_options[ 'only_loggedin_cap' ] ); |
|
115 | 115 | |
116 | - $add_option['delete_link'] = array( |
|
116 | + $add_option[ 'delete_link' ] = array( |
|
117 | 117 | 'type' => 'text', |
118 | 118 | 'label' => __( 'Delete Link Text', 'gravityview' ), |
119 | 119 | 'desc' => null, |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | 'merge_tags' => true, |
122 | 122 | ); |
123 | 123 | |
124 | - $field_options['allow_edit_cap'] = array( |
|
124 | + $field_options[ 'allow_edit_cap' ] = array( |
|
125 | 125 | 'type' => 'select', |
126 | 126 | 'label' => __( 'Allow the following users to delete the entry:', 'gravityview' ), |
127 | 127 | 'choices' => GravityView_Render_Settings::get_cap_choices( $template_id, $field_id, $context, $input_type ), |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | */ |
147 | 147 | public function add_available_field( $available_fields = array() ) { |
148 | 148 | |
149 | - $available_fields['delete_link'] = array( |
|
149 | + $available_fields[ 'delete_link' ] = array( |
|
150 | 150 | 'label_text' => __( 'Delete Entry', 'gravityview' ), |
151 | 151 | 'field_id' => 'delete_link', |
152 | 152 | 'label_type' => 'field', |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | public function add_default_field( $entry_default_fields, $form = array(), $zone = '' ) { |
189 | 189 | |
190 | 190 | if ( 'edit' !== $zone ) { |
191 | - $entry_default_fields['delete_link'] = array( |
|
191 | + $entry_default_fields[ 'delete_link' ] = array( |
|
192 | 192 | 'label' => __( 'Delete Entry', 'gravityview' ), |
193 | 193 | 'type' => 'delete_link', |
194 | 194 | 'desc' => __( 'A link to delete the entry. Respects the Delete Entry permissions.', 'gravityview' ), |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | |
54 | 54 | $partial_entries_addon = GF_Partial_Entries::get_instance(); |
55 | 55 | |
56 | - $feed_settings = $partial_entries_addon->get_feed_settings( $form['id'] ); |
|
56 | + $feed_settings = $partial_entries_addon->get_feed_settings( $form[ 'id' ] ); |
|
57 | 57 | |
58 | 58 | $is_enabled = \GV\Utils::get( $feed_settings, 'enable', 0 ); |
59 | 59 | |
@@ -70,14 +70,14 @@ discard block |
||
70 | 70 | } |
71 | 71 | |
72 | 72 | // Set the expected $_POST key for the Add-On to use |
73 | - $_POST['partial_entry_id'] = $partial_entry_id; |
|
73 | + $_POST[ 'partial_entry_id' ] = $partial_entry_id; |
|
74 | 74 | |
75 | 75 | gravityview()->log->debug( 'Saving partial entry (ID #{partial_entry_id}) for Entry #{entry_id}', array( |
76 | 76 | 'partial_entry_id' => $partial_entry_id, |
77 | 77 | 'entry_id' => $entry_id |
78 | 78 | ) ); |
79 | 79 | |
80 | - $partial_entries_addon->maybe_save_partial_entry( $form['id'] ); |
|
80 | + $partial_entries_addon->maybe_save_partial_entry( $form[ 'id' ] ); |
|
81 | 81 | } |
82 | 82 | } |
83 | 83 |
@@ -63,19 +63,19 @@ discard block |
||
63 | 63 | |
64 | 64 | add_shortcode( 'gv_note_add', array( 'GravityView_Field_Notes', 'get_add_note_part' ) ); |
65 | 65 | |
66 | - add_action( 'wp', array( $this, 'maybe_delete_notes'), 1000 ); |
|
67 | - add_action( 'wp_ajax_nopriv_gv_delete_notes', array( $this, 'maybe_delete_notes') ); |
|
68 | - add_action( 'wp_ajax_gv_delete_notes', array( $this, 'maybe_delete_notes') ); |
|
66 | + add_action( 'wp', array( $this, 'maybe_delete_notes' ), 1000 ); |
|
67 | + add_action( 'wp_ajax_nopriv_gv_delete_notes', array( $this, 'maybe_delete_notes' ) ); |
|
68 | + add_action( 'wp_ajax_gv_delete_notes', array( $this, 'maybe_delete_notes' ) ); |
|
69 | 69 | |
70 | - add_action( 'wp', array( $this, 'maybe_add_note'), 1000 ); |
|
71 | - add_action( 'wp_ajax_nopriv_gv_note_add', array( $this, 'maybe_add_note') ); |
|
72 | - add_action( 'wp_ajax_gv_note_add', array( $this, 'maybe_add_note') ); |
|
70 | + add_action( 'wp', array( $this, 'maybe_add_note' ), 1000 ); |
|
71 | + add_action( 'wp_ajax_nopriv_gv_note_add', array( $this, 'maybe_add_note' ) ); |
|
72 | + add_action( 'wp_ajax_gv_note_add', array( $this, 'maybe_add_note' ) ); |
|
73 | 73 | |
74 | 74 | // add template path to check for field |
75 | 75 | add_filter( 'gravityview_template_paths', array( $this, 'add_template_path' ) ); |
76 | 76 | add_filter( 'gravityview/template/fields_template_paths', array( $this, 'add_template_path' ) ); |
77 | 77 | |
78 | - add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts') ); |
|
78 | + add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) ); |
|
79 | 79 | add_action( 'gravityview/field/notes/scripts', array( $this, 'enqueue_scripts' ) ); |
80 | 80 | |
81 | 81 | add_filter( 'gravityview_entry_default_fields', array( $this, 'add_entry_default_field' ), 10, 3 ); |
@@ -97,8 +97,8 @@ discard block |
||
97 | 97 | */ |
98 | 98 | public function add_entry_default_field( $entry_default_fields, $form, $zone ) { |
99 | 99 | |
100 | - if( in_array( $zone, array( 'directory', 'single' ) ) ) { |
|
101 | - $entry_default_fields['notes'] = array( |
|
100 | + if ( in_array( $zone, array( 'directory', 'single' ) ) ) { |
|
101 | + $entry_default_fields[ 'notes' ] = array( |
|
102 | 102 | 'label' => __( 'Entry Notes', 'gravityview' ), |
103 | 103 | 'type' => 'notes', |
104 | 104 | 'desc' => __( 'Display, add, and delete notes for an entry.', 'gravityview' ), |
@@ -131,23 +131,23 @@ discard block |
||
131 | 131 | public function enqueue_scripts() { |
132 | 132 | global $wp_actions; |
133 | 133 | |
134 | - if( ! wp_script_is( 'gravityview-notes', 'enqueued' ) ) { |
|
134 | + if ( ! wp_script_is( 'gravityview-notes', 'enqueued' ) ) { |
|
135 | 135 | wp_enqueue_style( 'gravityview-notes' ); |
136 | 136 | wp_enqueue_script( 'gravityview-notes' ); |
137 | 137 | } |
138 | 138 | |
139 | - if( ! wp_script_is( 'gravityview-notes', 'done' ) ) { |
|
139 | + if ( ! wp_script_is( 'gravityview-notes', 'done' ) ) { |
|
140 | 140 | |
141 | 141 | $strings = self::strings(); |
142 | 142 | |
143 | 143 | wp_localize_script( 'gravityview-notes', 'GVNotes', array( |
144 | 144 | 'ajaxurl' => admin_url( 'admin-ajax.php' ), |
145 | 145 | 'text' => array( |
146 | - 'processing' => $strings['processing'], |
|
147 | - 'delete_confirm' => $strings['delete-confirm'], |
|
148 | - 'note_added' => $strings['added-note'], |
|
149 | - 'error_invalid' => $strings['error-invalid'], |
|
150 | - 'error_empty_note' => $strings['error-empty-note'], |
|
146 | + 'processing' => $strings[ 'processing' ], |
|
147 | + 'delete_confirm' => $strings[ 'delete-confirm' ], |
|
148 | + 'note_added' => $strings[ 'added-note' ], |
|
149 | + 'error_invalid' => $strings[ 'error-invalid' ], |
|
150 | + 'error_empty_note' => $strings[ 'error-empty-note' ], |
|
151 | 151 | ), |
152 | 152 | ) ); |
153 | 153 | } |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | * @return void |
164 | 164 | */ |
165 | 165 | function maybe_add_note() { |
166 | - if ( ! isset( $_POST['action'] ) || 'gv_note_add' !== $_POST['action'] ) { |
|
166 | + if ( ! isset( $_POST[ 'action' ] ) || 'gv_note_add' !== $_POST[ 'action' ] ) { |
|
167 | 167 | return; |
168 | 168 | } |
169 | 169 | |
@@ -176,12 +176,12 @@ discard block |
||
176 | 176 | $post = wp_unslash( $_POST ); |
177 | 177 | |
178 | 178 | if ( $this->doing_ajax ) { |
179 | - parse_str( $post['data'], $data ); |
|
179 | + parse_str( $post[ 'data' ], $data ); |
|
180 | 180 | } else { |
181 | 181 | $data = $post; |
182 | 182 | } |
183 | 183 | |
184 | - $this->process_add_note( (array) $data ); |
|
184 | + $this->process_add_note( (array)$data ); |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | /** |
@@ -207,23 +207,23 @@ discard block |
||
207 | 207 | $error = false; |
208 | 208 | $success = false; |
209 | 209 | |
210 | - if( empty( $data['entry-slug'] ) ) { |
|
210 | + if ( empty( $data[ 'entry-slug' ] ) ) { |
|
211 | 211 | |
212 | - $error = self::strings('error-invalid'); |
|
212 | + $error = self::strings( 'error-invalid' ); |
|
213 | 213 | gravityview()->log->error( 'The note is missing an Entry ID.' ); |
214 | 214 | |
215 | 215 | } else { |
216 | 216 | |
217 | - $valid = wp_verify_nonce( $data['gv_note_add'], 'gv_note_add_' . $data['entry-slug'] ); |
|
217 | + $valid = wp_verify_nonce( $data[ 'gv_note_add' ], 'gv_note_add_' . $data[ 'entry-slug' ] ); |
|
218 | 218 | |
219 | 219 | $has_cap = GVCommon::has_cap( 'gravityview_add_entry_notes' ); |
220 | 220 | |
221 | - if( ! $has_cap ) { |
|
221 | + if ( ! $has_cap ) { |
|
222 | 222 | $error = self::strings( 'error-cap-add' ); |
223 | 223 | gravityview()->log->error( 'Adding a note failed: the user does not have the "gravityview_add_entry_notes" capability.' ); |
224 | 224 | } elseif ( $valid ) { |
225 | 225 | |
226 | - $entry = gravityview_get_entry( $data['entry-slug'], true, false ); |
|
226 | + $entry = gravityview_get_entry( $data[ 'entry-slug' ], true, false ); |
|
227 | 227 | |
228 | 228 | $added = $this->add_note( $entry, $data ); |
229 | 229 | |
@@ -241,22 +241,22 @@ discard block |
||
241 | 241 | $this->maybe_send_entry_notes( $note, $entry, $data ); |
242 | 242 | |
243 | 243 | if ( $note ) { |
244 | - $success = self::display_note( $note, ! empty( $data['show-delete'] ) ); |
|
244 | + $success = self::display_note( $note, ! empty( $data[ 'show-delete' ] ) ); |
|
245 | 245 | gravityview()->log->debug( 'The note was successfully created', array( 'data' => compact( 'note', 'data' ) ) ); |
246 | 246 | } else { |
247 | - $error = self::strings('error-add-note'); |
|
247 | + $error = self::strings( 'error-add-note' ); |
|
248 | 248 | gravityview()->log->error( 'The note was not successfully created', array( 'data' => compact( 'note', 'data' ) ) ); |
249 | 249 | } |
250 | 250 | } |
251 | 251 | } else { |
252 | - $error = self::strings('error-invalid'); |
|
252 | + $error = self::strings( 'error-invalid' ); |
|
253 | 253 | gravityview()->log->error( 'Nonce validation failed; the note was not created' ); |
254 | 254 | } |
255 | 255 | } |
256 | 256 | |
257 | 257 | |
258 | - if( $this->doing_ajax ) { |
|
259 | - if( $success ) { |
|
258 | + if ( $this->doing_ajax ) { |
|
259 | + if ( $success ) { |
|
260 | 260 | wp_send_json_success( array( 'html' => $success ) ); |
261 | 261 | } else { |
262 | 262 | $error = $error ? $error : self::strings( 'error-invalid' ); |
@@ -282,11 +282,11 @@ discard block |
||
282 | 282 | return; |
283 | 283 | } |
284 | 284 | |
285 | - if ( isset( $_POST['action'] ) && 'gv_delete_notes' === $_POST['action'] ) { |
|
285 | + if ( isset( $_POST[ 'action' ] ) && 'gv_delete_notes' === $_POST[ 'action' ] ) { |
|
286 | 286 | |
287 | 287 | $post = wp_unslash( $_POST ); |
288 | 288 | if ( $this->doing_ajax ) { |
289 | - parse_str( $post['data'], $data ); |
|
289 | + parse_str( $post[ 'data' ], $data ); |
|
290 | 290 | } else { |
291 | 291 | $data = $post; |
292 | 292 | } |
@@ -317,18 +317,18 @@ discard block |
||
317 | 317 | */ |
318 | 318 | function process_delete_notes( $data ) { |
319 | 319 | |
320 | - $valid = wp_verify_nonce( $data['gv_delete_notes'], 'gv_delete_notes_' . $data['entry-slug'] ); |
|
320 | + $valid = wp_verify_nonce( $data[ 'gv_delete_notes' ], 'gv_delete_notes_' . $data[ 'entry-slug' ] ); |
|
321 | 321 | $has_cap = GVCommon::has_cap( 'gravityview_delete_entry_notes' ); |
322 | 322 | $success = false; |
323 | 323 | |
324 | 324 | if ( $valid && $has_cap ) { |
325 | - GravityView_Entry_Notes::delete_notes( $data['note'] ); |
|
325 | + GravityView_Entry_Notes::delete_notes( $data[ 'note' ] ); |
|
326 | 326 | $success = true; |
327 | 327 | } |
328 | 328 | |
329 | - if( $this->doing_ajax ) { |
|
329 | + if ( $this->doing_ajax ) { |
|
330 | 330 | |
331 | - if( $success ) { |
|
331 | + if ( $success ) { |
|
332 | 332 | wp_send_json_success(); |
333 | 333 | } else { |
334 | 334 | if ( ! $valid ) { |
@@ -361,13 +361,13 @@ discard block |
||
361 | 361 | |
362 | 362 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
363 | 363 | |
364 | - unset( $field_options['show_as_link'] ); |
|
364 | + unset( $field_options[ 'show_as_link' ] ); |
|
365 | 365 | |
366 | 366 | $notes_options = array( |
367 | 367 | 'notes' => array( |
368 | 368 | 'type' => 'checkboxes', |
369 | - 'label' => __('Note Settings', 'gravityview'), |
|
370 | - 'desc' => sprintf( _x('Only users with specific capabilities will be able to view, add and delete notes. %sRead more%s.', '%s is opening and closing HTML link', 'gravityview' ), '<a href="https://docs.gravityview.co/article/311-gravityview-capabilities">', '</a>' ), |
|
369 | + 'label' => __( 'Note Settings', 'gravityview' ), |
|
370 | + 'desc' => sprintf( _x( 'Only users with specific capabilities will be able to view, add and delete notes. %sRead more%s.', '%s is opening and closing HTML link', 'gravityview' ), '<a href="https://docs.gravityview.co/article/311-gravityview-capabilities">', '</a>' ), |
|
371 | 371 | 'options' => array( |
372 | 372 | 'view' => array( |
373 | 373 | 'label' => __( 'Display notes?', 'gravityview' ), |
@@ -419,7 +419,7 @@ discard block |
||
419 | 419 | 'processing' => __( 'Processing…', 'gravityview' ), |
420 | 420 | 'other-email' => __( 'Other email address', 'gravityview' ), |
421 | 421 | 'email-label' => __( 'Email address', 'gravityview' ), |
422 | - 'email-placeholder' => _x('[email protected]', 'Example email address used as a placeholder', 'gravityview'), |
|
422 | + 'email-placeholder' => _x( '[email protected]', 'Example email address used as a placeholder', 'gravityview' ), |
|
423 | 423 | 'subject-label' => __( 'Subject', 'gravityview' ), |
424 | 424 | 'subject' => __( 'Email subject', 'gravityview' ), |
425 | 425 | 'default-email-subject' => __( 'New entry note', 'gravityview' ), |
@@ -439,7 +439,7 @@ discard block |
||
439 | 439 | */ |
440 | 440 | $strings = gv_map_deep( apply_filters( 'gravityview/field/notes/strings', $strings ), 'esc_html' ); |
441 | 441 | |
442 | - if( $key ) { |
|
442 | + if ( $key ) { |
|
443 | 443 | return isset( $strings[ $key ] ) ? $strings[ $key ] : ''; |
444 | 444 | } |
445 | 445 | |
@@ -461,7 +461,7 @@ discard block |
||
461 | 461 | */ |
462 | 462 | static public function display_note( $note, $show_delete = false, $context = null ) { |
463 | 463 | |
464 | - if( ! is_object( $note ) ) { |
|
464 | + if ( ! is_object( $note ) ) { |
|
465 | 465 | return ''; |
466 | 466 | } |
467 | 467 | |
@@ -516,7 +516,7 @@ discard block |
||
516 | 516 | } |
517 | 517 | |
518 | 518 | $replacements = array( |
519 | - '{note_id}' => $note_content['note_id'], |
|
519 | + '{note_id}' => $note_content[ 'note_id' ], |
|
520 | 520 | '{row_class}' => 'gv-note', |
521 | 521 | '{note_detail}' => $note_detail_html |
522 | 522 | ); |
@@ -548,13 +548,13 @@ discard block |
||
548 | 548 | |
549 | 549 | $user_data = get_userdata( $current_user->ID ); |
550 | 550 | |
551 | - $note_content = trim( $data['gv-note-content'] ); |
|
551 | + $note_content = trim( $data[ 'gv-note-content' ] ); |
|
552 | 552 | |
553 | - if( empty( $note_content ) ) { |
|
553 | + if ( empty( $note_content ) ) { |
|
554 | 554 | return new WP_Error( 'gv-add-note-empty', __( 'The note is empty.', 'gravityview' ) ); |
555 | 555 | } |
556 | 556 | |
557 | - $return = GravityView_Entry_Notes::add_note( $entry['id'], $user_data->ID, $user_data->display_name, $note_content, 'gravityview/field/notes' ); |
|
557 | + $return = GravityView_Entry_Notes::add_note( $entry[ 'id' ], $user_data->ID, $user_data->display_name, $note_content, 'gravityview/field/notes' ); |
|
558 | 558 | |
559 | 559 | return $return; |
560 | 560 | } |
@@ -574,7 +574,7 @@ discard block |
||
574 | 574 | |
575 | 575 | $atts = shortcode_atts( array( 'entry' => null ), $atts ); |
576 | 576 | |
577 | - if( ! GVCommon::has_cap( 'gravityview_add_entry_notes' ) ) { |
|
577 | + if ( ! GVCommon::has_cap( 'gravityview_add_entry_notes' ) ) { |
|
578 | 578 | gravityview()->log->error( 'User does not have permission to add entry notes ("gravityview_add_entry_notes").' ); |
579 | 579 | return ''; |
580 | 580 | } |
@@ -596,8 +596,8 @@ discard block |
||
596 | 596 | |
597 | 597 | $visibility_settings = $gravityview_view->getCurrentFieldSetting( 'notes' ); |
598 | 598 | |
599 | - if ( $atts['entry'] ) { |
|
600 | - $entry = GFAPI::get_entry( $atts['entry'] ); |
|
599 | + if ( $atts[ 'entry' ] ) { |
|
600 | + $entry = GFAPI::get_entry( $atts[ 'entry' ] ); |
|
601 | 601 | } |
602 | 602 | |
603 | 603 | if ( ! isset( $entry ) || ! $entry ) { |
@@ -615,14 +615,14 @@ discard block |
||
615 | 615 | |
616 | 616 | // Only generate the dropdown if the field settings allow it |
617 | 617 | $email_fields = ''; |
618 | - if( ! empty( $visibility_settings['email'] ) ) { |
|
618 | + if ( ! empty( $visibility_settings[ 'email' ] ) ) { |
|
619 | 619 | $email_fields = self::get_note_email_fields( $entry_slug ); |
620 | 620 | } |
621 | 621 | |
622 | 622 | $add_note_html = str_replace( '{entry_slug}', $entry_slug, $add_note_html ); |
623 | 623 | $add_note_html = str_replace( '{nonce_field}', $nonce_field, $add_note_html ); |
624 | - $add_note_html = str_replace( '{show_delete}', intval( empty( $visibility_settings['delete'] ) ? 0 : $visibility_settings['delete'] ), $add_note_html ); |
|
625 | - $add_note_html = str_replace( '{email_fields}', $email_fields, $add_note_html ); |
|
624 | + $add_note_html = str_replace( '{show_delete}', intval( empty( $visibility_settings[ 'delete' ] ) ? 0 : $visibility_settings[ 'delete' ] ), $add_note_html ); |
|
625 | + $add_note_html = str_replace( '{email_fields}', $email_fields, $add_note_html ); |
|
626 | 626 | $add_note_html = str_replace( '{url}', esc_url_raw( add_query_arg( array() ) ), $add_note_html ); |
627 | 627 | |
628 | 628 | return $add_note_html; |
@@ -647,8 +647,8 @@ discard block |
||
647 | 647 | $note_emails = array(); |
648 | 648 | |
649 | 649 | foreach ( $email_fields as $email_field ) { |
650 | - if ( ! empty( $entry["{$email_field->id}"] ) && is_email( $entry["{$email_field->id}"] ) ) { |
|
651 | - $note_emails[] = $entry["{$email_field->id}"]; |
|
650 | + if ( ! empty( $entry[ "{$email_field->id}" ] ) && is_email( $entry[ "{$email_field->id}" ] ) ) { |
|
651 | + $note_emails[ ] = $entry[ "{$email_field->id}" ]; |
|
652 | 652 | } |
653 | 653 | } |
654 | 654 | |
@@ -660,7 +660,7 @@ discard block |
||
660 | 660 | */ |
661 | 661 | $note_emails = apply_filters( 'gravityview/field/notes/emails', $note_emails, $entry ); |
662 | 662 | |
663 | - return (array) $note_emails; |
|
663 | + return (array)$note_emails; |
|
664 | 664 | } |
665 | 665 | |
666 | 666 | /** |
@@ -676,7 +676,7 @@ discard block |
||
676 | 676 | */ |
677 | 677 | private static function get_note_email_fields( $entry_slug = '' ) { |
678 | 678 | |
679 | - if( ! GVCommon::has_cap( 'gravityview_email_entry_notes' ) ) { |
|
679 | + if ( ! GVCommon::has_cap( 'gravityview_email_entry_notes' ) ) { |
|
680 | 680 | gravityview()->log->error( 'User does not have permission to email entry notes ("gravityview_email_entry_notes").' ); |
681 | 681 | return ''; |
682 | 682 | } |
@@ -698,27 +698,27 @@ discard block |
||
698 | 698 | |
699 | 699 | if ( ! empty( $note_emails ) || $include_custom ) { ?> |
700 | 700 | <div class="gv-note-email-container"> |
701 | - <label for="gv-note-email-to-<?php echo $entry_slug_esc; ?>" class="screen-reader-text"><?php echo $strings['also-email']; ?></label> |
|
701 | + <label for="gv-note-email-to-<?php echo $entry_slug_esc; ?>" class="screen-reader-text"><?php echo $strings[ 'also-email' ]; ?></label> |
|
702 | 702 | <select class="gv-note-email-to" name="gv-note-to" id="gv-note-email-to-<?php echo $entry_slug_esc; ?>"> |
703 | - <option value=""><?php echo $strings['also-email']; ?></option> |
|
703 | + <option value=""><?php echo $strings[ 'also-email' ]; ?></option> |
|
704 | 704 | <?php foreach ( $note_emails as $email ) { |
705 | 705 | ?> |
706 | 706 | <option value="<?php echo esc_attr( $email ); ?>"><?php echo esc_html( $email ); ?></option> |
707 | 707 | <?php } |
708 | - if( $include_custom ) { ?> |
|
709 | - <option value="custom"><?php echo self::strings('other-email'); ?></option> |
|
708 | + if ( $include_custom ) { ?> |
|
709 | + <option value="custom"><?php echo self::strings( 'other-email' ); ?></option> |
|
710 | 710 | <?php } ?> |
711 | 711 | </select> |
712 | 712 | <fieldset class="gv-note-to-container"> |
713 | - <?php if( $include_custom ) { ?> |
|
713 | + <?php if ( $include_custom ) { ?> |
|
714 | 714 | <div class='gv-note-to-custom-container'> |
715 | - <label for="gv-note-email-to-custom-<?php echo $entry_slug_esc; ?>"><?php echo $strings['email-label']; ?></label> |
|
716 | - <input type="text" name="gv-note-to-custom" placeholder="<?php echo $strings['email-placeholder']; ?>" id="gv-note-to-custom-<?php echo $entry_slug_esc; ?>" value="" /> |
|
715 | + <label for="gv-note-email-to-custom-<?php echo $entry_slug_esc; ?>"><?php echo $strings[ 'email-label' ]; ?></label> |
|
716 | + <input type="text" name="gv-note-to-custom" placeholder="<?php echo $strings[ 'email-placeholder' ]; ?>" id="gv-note-to-custom-<?php echo $entry_slug_esc; ?>" value="" /> |
|
717 | 717 | </div> |
718 | 718 | <?php } ?> |
719 | 719 | <div class='gv-note-subject-container'> |
720 | - <label for="gv-note-subject-<?php echo $entry_slug_esc; ?>"><?php echo $strings['subject-label']; ?></label> |
|
721 | - <input type="text" name="gv-note-subject" placeholder="<?php echo $strings['subject']; ?>" id="gv-note-subject-<?php echo $entry_slug_esc; ?>" value="" /> |
|
720 | + <label for="gv-note-subject-<?php echo $entry_slug_esc; ?>"><?php echo $strings[ 'subject-label' ]; ?></label> |
|
721 | + <input type="text" name="gv-note-subject" placeholder="<?php echo $strings[ 'subject' ]; ?>" id="gv-note-subject-<?php echo $entry_slug_esc; ?>" value="" /> |
|
722 | 722 | </div> |
723 | 723 | </fieldset> |
724 | 724 | </div> |
@@ -741,7 +741,7 @@ discard block |
||
741 | 741 | */ |
742 | 742 | private function maybe_send_entry_notes( $note = false, $entry, $data ) { |
743 | 743 | |
744 | - if( ! $note || ! GVCommon::has_cap('gravityview_email_entry_notes') ) { |
|
744 | + if ( ! $note || ! GVCommon::has_cap( 'gravityview_email_entry_notes' ) ) { |
|
745 | 745 | gravityview()->log->debug( 'User doesn\'t have "gravityview_email_entry_notes" cap, or $note is empty', array( 'data' => $note ) ); |
746 | 746 | return; |
747 | 747 | } |
@@ -749,7 +749,7 @@ discard block |
||
749 | 749 | gravityview()->log->debug( '$data', array( 'data' => $data ) ); |
750 | 750 | |
751 | 751 | //emailing notes if configured |
752 | - if ( ! empty( $data['gv-note-to'] ) ) { |
|
752 | + if ( ! empty( $data[ 'gv-note-to' ] ) ) { |
|
753 | 753 | |
754 | 754 | $default_data = array( |
755 | 755 | 'gv-note-to' => '', |
@@ -759,11 +759,11 @@ discard block |
||
759 | 759 | 'current-url' => '', |
760 | 760 | ); |
761 | 761 | |
762 | - $current_user = wp_get_current_user(); |
|
762 | + $current_user = wp_get_current_user(); |
|
763 | 763 | $email_data = wp_parse_args( $data, $default_data ); |
764 | 764 | |
765 | - $from = $current_user->user_email; |
|
766 | - $to = $email_data['gv-note-to']; |
|
765 | + $from = $current_user->user_email; |
|
766 | + $to = $email_data[ 'gv-note-to' ]; |
|
767 | 767 | |
768 | 768 | /** |
769 | 769 | * Documented in get_note_email_fields |
@@ -771,8 +771,8 @@ discard block |
||
771 | 771 | */ |
772 | 772 | $include_custom = apply_filters( 'gravityview/field/notes/custom-email', true ); |
773 | 773 | |
774 | - if( 'custom' === $to && $include_custom ) { |
|
775 | - $to = $email_data['gv-note-to-custom']; |
|
774 | + if ( 'custom' === $to && $include_custom ) { |
|
775 | + $to = $email_data[ 'gv-note-to-custom' ]; |
|
776 | 776 | gravityview()->log->debug( 'Sending note to a custom email address: {to}' . array( 'to' => $to ) ); |
777 | 777 | } |
778 | 778 | |
@@ -783,13 +783,13 @@ discard block |
||
783 | 783 | |
784 | 784 | $bcc = false; |
785 | 785 | $reply_to = $from; |
786 | - $subject = trim( $email_data['gv-note-subject'] ); |
|
786 | + $subject = trim( $email_data[ 'gv-note-subject' ] ); |
|
787 | 787 | |
788 | 788 | // We use empty() here because GF uses empty to check against, too. `0` isn't a valid subject to GF |
789 | 789 | $subject = empty( $subject ) ? self::strings( 'default-email-subject' ) : $subject; |
790 | - $message = $email_data['gv-note-content']; |
|
790 | + $message = $email_data[ 'gv-note-content' ]; |
|
791 | 791 | $email_footer = self::strings( 'email-footer' ); |
792 | - $from_name = $current_user->display_name; |
|
792 | + $from_name = $current_user->display_name; |
|
793 | 793 | $message_format = 'html'; |
794 | 794 | |
795 | 795 | /** |
@@ -820,7 +820,7 @@ discard block |
||
820 | 820 | |
821 | 821 | GVCommon::send_email( $from, $to, $bcc, $reply_to, $subject, $message, $from_name, $message_format, '', $entry, false ); |
822 | 822 | |
823 | - $form = isset( $entry['form_id'] ) ? GFAPI::get_form( $entry['form_id'] ) : array(); |
|
823 | + $form = isset( $entry[ 'form_id' ] ) ? GFAPI::get_form( $entry[ 'form_id' ] ) : array(); |
|
824 | 824 | |
825 | 825 | /** |
826 | 826 | * @see https://www.gravityhelp.com/documentation/article/10146-2/ It's here for compatibility with Gravity Forms |
@@ -846,7 +846,7 @@ discard block |
||
846 | 846 | |
847 | 847 | $output = ''; |
848 | 848 | |
849 | - if( ! empty( $email_footer ) ) { |
|
849 | + if ( ! empty( $email_footer ) ) { |
|
850 | 850 | $url = \GV\Utils::get( $email_data, 'current-url' ); |
851 | 851 | $url = html_entity_decode( $url ); |
852 | 852 | $url = site_url( $url ); |