@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | * Try subkeys after split. |
92 | 92 | */ |
93 | 93 | if ( count( $parts = explode( '/', $key, 2 ) ) > 1 ) { |
94 | - return self::get( self::get( $array, $parts[0] ), $parts[1], $default ); |
|
94 | + return self::get( self::get( $array, $parts[ 0 ] ), $parts[ 1 ], $default ); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | return $default; |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | public static function gf_query_debug( $query ) { |
146 | 146 | $introspect = $query->_introspect(); |
147 | 147 | return array( |
148 | - 'where' => $query->_where_unwrap( $introspect['where'] ) |
|
148 | + 'where' => $query->_where_unwrap( $introspect[ 'where' ] ) |
|
149 | 149 | ); |
150 | 150 | } |
151 | 151 | } |
@@ -29,11 +29,11 @@ |
||
29 | 29 | $KWS_GF_Change_Lead_Creator = new KWS_GF_Change_Lead_Creator; |
30 | 30 | |
31 | 31 | // Now, no validation is required in the methods; let's hook in. |
32 | - remove_action('admin_init', array( $KWS_GF_Change_Lead_Creator, 'set_screen_mode' ) ); |
|
32 | + remove_action( 'admin_init', array( $KWS_GF_Change_Lead_Creator, 'set_screen_mode' ) ); |
|
33 | 33 | |
34 | - remove_action("gform_entry_info", array( $KWS_GF_Change_Lead_Creator, 'add_select' ), 10 ); |
|
34 | + remove_action( "gform_entry_info", array( $KWS_GF_Change_Lead_Creator, 'add_select' ), 10 ); |
|
35 | 35 | |
36 | - remove_action("gform_after_update_entry", array( $KWS_GF_Change_Lead_Creator, 'update_entry_creator' ), 10 ); |
|
36 | + remove_action( "gform_after_update_entry", array( $KWS_GF_Change_Lead_Creator, 'update_entry_creator' ), 10 ); |
|
37 | 37 | |
38 | 38 | } |
39 | 39 | } |
@@ -5,239 +5,239 @@ |
||
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_entry_property( (int) $entry['id'], 'created_by', (int) $user_id, false, true ); |
|
65 | - |
|
66 | - if ( false === $result ) { |
|
67 | - $status = __('Error', 'gravityview'); |
|
68 | - global $wpdb; |
|
69 | - $note = sprintf( '%s: Failed to assign User ID #%d as the entry creator (Last database error: "%s")', $status, $user_id, $wpdb->last_error ); |
|
70 | - } else { |
|
71 | - $status = __('Success', 'gravityview'); |
|
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 | - |
|
75 | - gravityview()->log->debug( 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - {note}', array( 'note' => $note ) ); |
|
76 | - |
|
77 | - /** |
|
78 | - * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator |
|
79 | - * @since 1.21.5 |
|
80 | - * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
|
81 | - */ |
|
82 | - if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
83 | - return; |
|
84 | - } |
|
85 | - |
|
86 | - GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
87 | - |
|
88 | - } |
|
89 | - |
|
90 | - /** |
|
91 | - * Disable previous functionality; use this one as the canonical. |
|
92 | - * @return void |
|
93 | - */ |
|
94 | - function prevent_conflicts() { |
|
95 | - |
|
96 | - // Plugin that was provided here: |
|
97 | - // @link https://gravityview.co/support/documentation/201991205/ |
|
98 | - remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
99 | - remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
100 | - |
|
101 | - } |
|
102 | - |
|
103 | - /** |
|
104 | - * @since 3.6.3 |
|
105 | - * @return void |
|
106 | - */ |
|
107 | - function load() { |
|
108 | - |
|
109 | - // Does GF exist? |
|
110 | - if( !class_exists('GFCommon') ) { |
|
111 | - return; |
|
112 | - } |
|
113 | - |
|
114 | - // Can the user edit entries? |
|
115 | - if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
116 | - return; |
|
117 | - } |
|
118 | - |
|
119 | - // If screen mode isn't set, then we're in the wrong place. |
|
120 | - if( empty( $_REQUEST['screen_mode'] ) ) { |
|
121 | - return; |
|
122 | - } |
|
123 | - |
|
124 | - // Now, no validation is required in the methods; let's hook in. |
|
125 | - add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
126 | - |
|
127 | - add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
128 | - |
|
129 | - add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
130 | - |
|
131 | - } |
|
132 | - |
|
133 | - /** |
|
134 | - * Allows for edit links to work with a link instead of a form (GET instead of POST) |
|
135 | - * @return void |
|
136 | - */ |
|
137 | - function set_screen_mode() { |
|
138 | - |
|
139 | - // If $_GET['screen_mode'] is set to edit, set $_POST value |
|
140 | - if( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) { |
|
141 | - $_POST["screen_mode"] = 'edit'; |
|
142 | - } |
|
143 | - |
|
144 | - } |
|
145 | - |
|
146 | - /** |
|
147 | - * When the entry creator is changed, add a note to the entry |
|
148 | - * @param array $form GF entry array |
|
149 | - * @param int $entry_id Entry ID |
|
150 | - * @return void |
|
151 | - */ |
|
152 | - function update_entry_creator($form, $entry_id) { |
|
153 | - global $current_user; |
|
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_entry_property( (int) $entry['id'], 'created_by', (int) $user_id, false, true ); |
|
65 | + |
|
66 | + if ( false === $result ) { |
|
67 | + $status = __('Error', 'gravityview'); |
|
68 | + global $wpdb; |
|
69 | + $note = sprintf( '%s: Failed to assign User ID #%d as the entry creator (Last database error: "%s")', $status, $user_id, $wpdb->last_error ); |
|
70 | + } else { |
|
71 | + $status = __('Success', 'gravityview'); |
|
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 | + |
|
75 | + gravityview()->log->debug( 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - {note}', array( 'note' => $note ) ); |
|
76 | + |
|
77 | + /** |
|
78 | + * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator |
|
79 | + * @since 1.21.5 |
|
80 | + * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
|
81 | + */ |
|
82 | + if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
83 | + return; |
|
84 | + } |
|
85 | + |
|
86 | + GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
87 | + |
|
88 | + } |
|
89 | + |
|
90 | + /** |
|
91 | + * Disable previous functionality; use this one as the canonical. |
|
92 | + * @return void |
|
93 | + */ |
|
94 | + function prevent_conflicts() { |
|
95 | + |
|
96 | + // Plugin that was provided here: |
|
97 | + // @link https://gravityview.co/support/documentation/201991205/ |
|
98 | + remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
99 | + remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
100 | + |
|
101 | + } |
|
102 | + |
|
103 | + /** |
|
104 | + * @since 3.6.3 |
|
105 | + * @return void |
|
106 | + */ |
|
107 | + function load() { |
|
108 | + |
|
109 | + // Does GF exist? |
|
110 | + if( !class_exists('GFCommon') ) { |
|
111 | + return; |
|
112 | + } |
|
113 | + |
|
114 | + // Can the user edit entries? |
|
115 | + if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
116 | + return; |
|
117 | + } |
|
118 | + |
|
119 | + // If screen mode isn't set, then we're in the wrong place. |
|
120 | + if( empty( $_REQUEST['screen_mode'] ) ) { |
|
121 | + return; |
|
122 | + } |
|
123 | + |
|
124 | + // Now, no validation is required in the methods; let's hook in. |
|
125 | + add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
126 | + |
|
127 | + add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
128 | + |
|
129 | + add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
130 | + |
|
131 | + } |
|
132 | + |
|
133 | + /** |
|
134 | + * Allows for edit links to work with a link instead of a form (GET instead of POST) |
|
135 | + * @return void |
|
136 | + */ |
|
137 | + function set_screen_mode() { |
|
138 | + |
|
139 | + // If $_GET['screen_mode'] is set to edit, set $_POST value |
|
140 | + if( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) { |
|
141 | + $_POST["screen_mode"] = 'edit'; |
|
142 | + } |
|
143 | + |
|
144 | + } |
|
145 | + |
|
146 | + /** |
|
147 | + * When the entry creator is changed, add a note to the entry |
|
148 | + * @param array $form GF entry array |
|
149 | + * @param int $entry_id Entry ID |
|
150 | + * @return void |
|
151 | + */ |
|
152 | + function update_entry_creator($form, $entry_id) { |
|
153 | + global $current_user; |
|
154 | 154 | |
155 | - // Update the entry |
|
156 | - $created_by = absint( \GV\Utils::_POST( 'created_by') ); |
|
155 | + // Update the entry |
|
156 | + $created_by = absint( \GV\Utils::_POST( 'created_by') ); |
|
157 | 157 | |
158 | - RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
158 | + RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
159 | 159 | |
160 | - // If the creator has changed, let's add a note about who it used to be. |
|
161 | - $originally_created_by = \GV\Utils::_POST( 'originally_created_by' ); |
|
160 | + // If the creator has changed, let's add a note about who it used to be. |
|
161 | + $originally_created_by = \GV\Utils::_POST( 'originally_created_by' ); |
|
162 | 162 | |
163 | - // If there's no owner and there didn't used to be, keep going |
|
164 | - if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
165 | - return; |
|
166 | - } |
|
163 | + // If there's no owner and there didn't used to be, keep going |
|
164 | + if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
165 | + return; |
|
166 | + } |
|
167 | 167 | |
168 | - // If the values have changed |
|
169 | - if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
168 | + // If the values have changed |
|
169 | + if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
170 | 170 | |
171 | - $user_data = get_userdata($current_user->ID); |
|
171 | + $user_data = get_userdata($current_user->ID); |
|
172 | 172 | |
173 | - $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
173 | + $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
174 | 174 | |
175 | - $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'); |
|
175 | + $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'); |
|
176 | 176 | |
177 | - if( !empty( $originally_created_by ) ) { |
|
178 | - $originally_created_by_user_data = get_userdata($originally_created_by); |
|
179 | - $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
180 | - } |
|
177 | + if( !empty( $originally_created_by ) ) { |
|
178 | + $originally_created_by_user_data = get_userdata($originally_created_by); |
|
179 | + $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
180 | + } |
|
181 | 181 | |
182 | - if( !empty( $created_by ) ) { |
|
183 | - $created_by_user_data = get_userdata($created_by); |
|
184 | - $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
185 | - } |
|
182 | + if( !empty( $created_by ) ) { |
|
183 | + $created_by_user_data = get_userdata($created_by); |
|
184 | + $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
185 | + } |
|
186 | 186 | |
187 | - 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' ); |
|
188 | - } |
|
187 | + 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' ); |
|
188 | + } |
|
189 | 189 | |
190 | - } |
|
190 | + } |
|
191 | 191 | |
192 | - /** |
|
193 | - * Output the select to change the entry creator |
|
194 | - * @param int $form_id GF Form ID |
|
195 | - * @param array $entry GF entry array |
|
196 | - * @return void |
|
197 | - */ |
|
198 | - function add_select($form_id, $entry ) { |
|
192 | + /** |
|
193 | + * Output the select to change the entry creator |
|
194 | + * @param int $form_id GF Form ID |
|
195 | + * @param array $entry GF entry array |
|
196 | + * @return void |
|
197 | + */ |
|
198 | + function add_select($form_id, $entry ) { |
|
199 | 199 | |
200 | - if( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) { |
|
201 | - return; |
|
202 | - } |
|
200 | + if( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) { |
|
201 | + return; |
|
202 | + } |
|
203 | 203 | |
204 | - $created_by_id = \GV\Utils::get( $entry, 'created_by' ); |
|
204 | + $created_by_id = \GV\Utils::get( $entry, 'created_by' ); |
|
205 | 205 | |
206 | - $users = GVCommon::get_users( 'change_entry_creator' ); |
|
206 | + $users = GVCommon::get_users( 'change_entry_creator' ); |
|
207 | 207 | |
208 | - $is_created_by_in_users = wp_list_filter( $users, array( 'ID' => $created_by_id ) ); |
|
208 | + $is_created_by_in_users = wp_list_filter( $users, array( 'ID' => $created_by_id ) ); |
|
209 | 209 | |
210 | - // Make sure that the entry creator is included in the users list. If not, add them. |
|
211 | - if ( ! empty( $created_by_id ) && empty( $is_created_by_in_users ) ) { |
|
210 | + // Make sure that the entry creator is included in the users list. If not, add them. |
|
211 | + if ( ! empty( $created_by_id ) && empty( $is_created_by_in_users ) ) { |
|
212 | 212 | |
213 | - if ( $created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) ) ) { |
|
214 | - $users = array_merge( $users, $created_by_user ); |
|
215 | - } |
|
216 | - } |
|
213 | + if ( $created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) ) ) { |
|
214 | + $users = array_merge( $users, $created_by_user ); |
|
215 | + } |
|
216 | + } |
|
217 | 217 | |
218 | - $output = '<label for="change_created_by">'; |
|
219 | - $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
220 | - $output .= '</label>'; |
|
218 | + $output = '<label for="change_created_by">'; |
|
219 | + $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
220 | + $output .= '</label>'; |
|
221 | 221 | |
222 | - // If there are users who are not being shown, show a warning. |
|
223 | - // TODO: Use AJAX instead of <select> |
|
224 | - $count_users = count_users(); |
|
225 | - if( sizeof( $users ) < $count_users['total_users'] ) { |
|
226 | - $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>'; |
|
227 | - } |
|
222 | + // If there are users who are not being shown, show a warning. |
|
223 | + // TODO: Use AJAX instead of <select> |
|
224 | + $count_users = count_users(); |
|
225 | + if( sizeof( $users ) < $count_users['total_users'] ) { |
|
226 | + $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>'; |
|
227 | + } |
|
228 | 228 | |
229 | - $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
|
230 | - $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
231 | - foreach($users as $user) { |
|
232 | - $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
233 | - } |
|
234 | - $output .= '</select>'; |
|
235 | - $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
229 | + $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
|
230 | + $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
231 | + foreach($users as $user) { |
|
232 | + $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
233 | + } |
|
234 | + $output .= '</select>'; |
|
235 | + $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
236 | 236 | |
237 | - unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
|
237 | + unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
|
238 | 238 | |
239 | - echo $output; |
|
240 | - } |
|
239 | + echo $output; |
|
240 | + } |
|
241 | 241 | |
242 | 242 | } |
243 | 243 |
@@ -10,17 +10,17 @@ discard block |
||
10 | 10 | /** |
11 | 11 | * @since 1.5.1 |
12 | 12 | */ |
13 | - add_action('gform_user_registered', array( $this, 'assign_new_user_to_lead'), 10, 4 ); |
|
13 | + add_action( 'gform_user_registered', array( $this, 'assign_new_user_to_lead' ), 10, 4 ); |
|
14 | 14 | |
15 | 15 | // ONLY ADMIN FROM HERE ON. |
16 | - if( !is_admin() ) { return; } |
|
16 | + if ( ! is_admin() ) { return; } |
|
17 | 17 | |
18 | 18 | /** |
19 | 19 | * @filter `gravityview_disable_change_entry_creator` Disable the Change Entry Creator functionality |
20 | 20 | * @since 1.7.4 |
21 | 21 | * @param boolean $disable Disable the Change Entry Creator functionality. Default: false. |
22 | 22 | */ |
23 | - if( apply_filters('gravityview_disable_change_entry_creator', false ) ) { |
|
23 | + if ( apply_filters( 'gravityview_disable_change_entry_creator', false ) ) { |
|
24 | 24 | return; |
25 | 25 | } |
26 | 26 | |
@@ -28,9 +28,9 @@ discard block |
||
28 | 28 | * Use `init` to fix bbPress warning |
29 | 29 | * @see https://bbpress.trac.wordpress.org/ticket/2309 |
30 | 30 | */ |
31 | - add_action('init', array( $this, 'load'), 100 ); |
|
31 | + add_action( 'init', array( $this, 'load' ), 100 ); |
|
32 | 32 | |
33 | - add_action('plugins_loaded', array( $this, 'prevent_conflicts') ); |
|
33 | + add_action( 'plugins_loaded', array( $this, 'prevent_conflicts' ) ); |
|
34 | 34 | |
35 | 35 | } |
36 | 36 | |
@@ -56,20 +56,20 @@ discard block |
||
56 | 56 | $assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry ); |
57 | 57 | |
58 | 58 | // If filter returns false, do not process |
59 | - if( empty( $assign_to_lead ) ) { |
|
59 | + if ( empty( $assign_to_lead ) ) { |
|
60 | 60 | return; |
61 | 61 | } |
62 | 62 | |
63 | 63 | // Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing |
64 | - $result = RGFormsModel::update_entry_property( (int) $entry['id'], 'created_by', (int) $user_id, false, true ); |
|
64 | + $result = RGFormsModel::update_entry_property( (int)$entry[ 'id' ], 'created_by', (int)$user_id, false, true ); |
|
65 | 65 | |
66 | 66 | if ( false === $result ) { |
67 | - $status = __('Error', 'gravityview'); |
|
67 | + $status = __( 'Error', 'gravityview' ); |
|
68 | 68 | global $wpdb; |
69 | 69 | $note = sprintf( '%s: Failed to assign User ID #%d as the entry creator (Last database error: "%s")', $status, $user_id, $wpdb->last_error ); |
70 | 70 | } else { |
71 | - $status = __('Success', 'gravityview'); |
|
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 ); |
|
71 | + $status = __( 'Success', 'gravityview' ); |
|
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 | 73 | } |
74 | 74 | |
75 | 75 | gravityview()->log->debug( 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - {note}', array( 'note' => $note ) ); |
@@ -79,11 +79,11 @@ discard block |
||
79 | 79 | * @since 1.21.5 |
80 | 80 | * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
81 | 81 | */ |
82 | - if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
82 | + if ( apply_filters( 'gravityview_disable_change_entry_creator_note', false ) ) { |
|
83 | 83 | return; |
84 | 84 | } |
85 | 85 | |
86 | - GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
86 | + GravityView_Entry_Notes::add_note( $entry[ 'id' ], -1, 'GravityView', $note, 'gravityview' ); |
|
87 | 87 | |
88 | 88 | } |
89 | 89 | |
@@ -95,8 +95,8 @@ discard block |
||
95 | 95 | |
96 | 96 | // Plugin that was provided here: |
97 | 97 | // @link https://gravityview.co/support/documentation/201991205/ |
98 | - remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
99 | - remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
98 | + remove_action( "gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
99 | + remove_action( "gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
100 | 100 | |
101 | 101 | } |
102 | 102 | |
@@ -107,26 +107,26 @@ discard block |
||
107 | 107 | function load() { |
108 | 108 | |
109 | 109 | // Does GF exist? |
110 | - if( !class_exists('GFCommon') ) { |
|
110 | + if ( ! class_exists( 'GFCommon' ) ) { |
|
111 | 111 | return; |
112 | 112 | } |
113 | 113 | |
114 | 114 | // Can the user edit entries? |
115 | - if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
115 | + if ( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
116 | 116 | return; |
117 | 117 | } |
118 | 118 | |
119 | 119 | // If screen mode isn't set, then we're in the wrong place. |
120 | - if( empty( $_REQUEST['screen_mode'] ) ) { |
|
120 | + if ( empty( $_REQUEST[ 'screen_mode' ] ) ) { |
|
121 | 121 | return; |
122 | 122 | } |
123 | 123 | |
124 | 124 | // Now, no validation is required in the methods; let's hook in. |
125 | - add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
125 | + add_action( 'admin_init', array( &$this, 'set_screen_mode' ) ); |
|
126 | 126 | |
127 | - add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
127 | + add_action( "gform_entry_info", array( &$this, 'add_select' ), 10, 2 ); |
|
128 | 128 | |
129 | - add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
129 | + add_action( "gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2 ); |
|
130 | 130 | |
131 | 131 | } |
132 | 132 | |
@@ -137,8 +137,8 @@ discard block |
||
137 | 137 | function set_screen_mode() { |
138 | 138 | |
139 | 139 | // If $_GET['screen_mode'] is set to edit, set $_POST value |
140 | - if( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) { |
|
141 | - $_POST["screen_mode"] = 'edit'; |
|
140 | + if ( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) { |
|
141 | + $_POST[ "screen_mode" ] = 'edit'; |
|
142 | 142 | } |
143 | 143 | |
144 | 144 | } |
@@ -149,11 +149,11 @@ discard block |
||
149 | 149 | * @param int $entry_id Entry ID |
150 | 150 | * @return void |
151 | 151 | */ |
152 | - function update_entry_creator($form, $entry_id) { |
|
152 | + function update_entry_creator( $form, $entry_id ) { |
|
153 | 153 | global $current_user; |
154 | 154 | |
155 | 155 | // Update the entry |
156 | - $created_by = absint( \GV\Utils::_POST( 'created_by') ); |
|
156 | + $created_by = absint( \GV\Utils::_POST( 'created_by' ) ); |
|
157 | 157 | |
158 | 158 | RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
159 | 159 | |
@@ -161,30 +161,30 @@ discard block |
||
161 | 161 | $originally_created_by = \GV\Utils::_POST( 'originally_created_by' ); |
162 | 162 | |
163 | 163 | // If there's no owner and there didn't used to be, keep going |
164 | - if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
164 | + if ( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
165 | 165 | return; |
166 | 166 | } |
167 | 167 | |
168 | 168 | // If the values have changed |
169 | - if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
169 | + if ( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
170 | 170 | |
171 | - $user_data = get_userdata($current_user->ID); |
|
171 | + $user_data = get_userdata( $current_user->ID ); |
|
172 | 172 | |
173 | - $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
173 | + $user_format = _x( '%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview' ); |
|
174 | 174 | |
175 | - $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'); |
|
175 | + $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' ); |
|
176 | 176 | |
177 | - if( !empty( $originally_created_by ) ) { |
|
178 | - $originally_created_by_user_data = get_userdata($originally_created_by); |
|
177 | + if ( ! empty( $originally_created_by ) ) { |
|
178 | + $originally_created_by_user_data = get_userdata( $originally_created_by ); |
|
179 | 179 | $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
180 | 180 | } |
181 | 181 | |
182 | - if( !empty( $created_by ) ) { |
|
183 | - $created_by_user_data = get_userdata($created_by); |
|
182 | + if ( ! empty( $created_by ) ) { |
|
183 | + $created_by_user_data = get_userdata( $created_by ); |
|
184 | 184 | $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
185 | 185 | } |
186 | 186 | |
187 | - 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' ); |
|
187 | + 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' ); |
|
188 | 188 | } |
189 | 189 | |
190 | 190 | } |
@@ -195,9 +195,9 @@ discard block |
||
195 | 195 | * @param array $entry GF entry array |
196 | 196 | * @return void |
197 | 197 | */ |
198 | - function add_select($form_id, $entry ) { |
|
198 | + function add_select( $form_id, $entry ) { |
|
199 | 199 | |
200 | - if( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) { |
|
200 | + if ( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) { |
|
201 | 201 | return; |
202 | 202 | } |
203 | 203 | |
@@ -216,23 +216,23 @@ discard block |
||
216 | 216 | } |
217 | 217 | |
218 | 218 | $output = '<label for="change_created_by">'; |
219 | - $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
219 | + $output .= esc_html__( 'Change Entry Creator:', 'gravityview' ); |
|
220 | 220 | $output .= '</label>'; |
221 | 221 | |
222 | 222 | // If there are users who are not being shown, show a warning. |
223 | 223 | // TODO: Use AJAX instead of <select> |
224 | 224 | $count_users = count_users(); |
225 | - if( sizeof( $users ) < $count_users['total_users'] ) { |
|
225 | + if ( sizeof( $users ) < $count_users[ 'total_users' ] ) { |
|
226 | 226 | $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>'; |
227 | 227 | } |
228 | 228 | |
229 | 229 | $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
230 | - $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
231 | - foreach($users as $user) { |
|
232 | - $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
230 | + $output .= '<option value="' . selected( $entry[ 'created_by' ], '0', false ) . '"> — ' . esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview' ) . ' — </option>'; |
|
231 | + foreach ( $users as $user ) { |
|
232 | + $output .= '<option value="' . $user->ID . '"' . selected( $entry[ 'created_by' ], $user->ID, false ) . '>' . esc_attr( $user->display_name . ' (' . $user->user_nicename . ')' ) . '</option>'; |
|
233 | 233 | } |
234 | 234 | $output .= '</select>'; |
235 | - $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
235 | + $output .= '<input name="originally_created_by" value="' . esc_attr( $entry[ 'created_by' ] ) . '" type="hidden" />'; |
|
236 | 236 | |
237 | 237 | unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
238 | 238 |
@@ -109,11 +109,11 @@ discard block |
||
109 | 109 | * This allows us to fake it till we make it. |
110 | 110 | */ |
111 | 111 | $parameters = $view->settings->as_atts(); |
112 | - if ( ! empty( $parameters['sort_field'] ) && is_array( $parameters['sort_field'] ) ) { |
|
112 | + if ( ! empty( $parameters[ 'sort_field' ] ) && is_array( $parameters[ 'sort_field' ] ) ) { |
|
113 | 113 | $has_multisort = true; |
114 | - $parameters['sort_field'] = reset( $parameters['sort_field'] ); |
|
115 | - if ( ! empty( $parameters['sort_direction'] ) && is_array( $parameters['sort_direction'] ) ) { |
|
116 | - $parameters['sort_direction'] = reset( $parameters['sort_direction'] ); |
|
114 | + $parameters[ 'sort_field' ] = reset( $parameters[ 'sort_field' ] ); |
|
115 | + if ( ! empty( $parameters[ 'sort_direction' ] ) && is_array( $parameters[ 'sort_direction' ] ) ) { |
|
116 | + $parameters[ 'sort_direction' ] = reset( $parameters[ 'sort_direction' ] ); |
|
117 | 117 | } |
118 | 118 | } |
119 | 119 | |
@@ -128,8 +128,8 @@ discard block |
||
128 | 128 | 'entries' => $entries, |
129 | 129 | 'request' => $request, |
130 | 130 | ), empty( $parameters ) ? array() : array( |
131 | - 'paging' => $parameters['paging'], |
|
132 | - 'sorting' => $parameters['sorting'], |
|
131 | + 'paging' => $parameters[ 'paging' ], |
|
132 | + 'sorting' => $parameters[ 'sorting' ], |
|
133 | 133 | ), empty( $post ) ? array() : array( |
134 | 134 | 'post' => $post, |
135 | 135 | ) ) ); |
@@ -16,7 +16,7 @@ |
||
16 | 16 | } |
17 | 17 | |
18 | 18 | if( is_array( $search_field['value'] ) ) { |
19 | - gravityview()->log->debug( 'search-field-select.php - Array values passed; using first value.' ); |
|
19 | + gravityview()->log->debug( 'search-field-select.php - Array values passed; using first value.' ); |
|
20 | 20 | $search_field['value'] = reset( $search_field['value'] ); |
21 | 21 | } |
22 | 22 |
@@ -10,14 +10,14 @@ discard block |
||
10 | 10 | $search_field = $gravityview_view->search_field; |
11 | 11 | |
12 | 12 | // Make sure that there are choices to display |
13 | -if( empty( $search_field['choices'] ) ) { |
|
13 | +if ( empty( $search_field[ 'choices' ] ) ) { |
|
14 | 14 | gravityview()->log->debug( 'search-field-select.php - No choices for field' ); |
15 | 15 | return; |
16 | 16 | } |
17 | 17 | |
18 | -if( is_array( $search_field['value'] ) ) { |
|
18 | +if ( is_array( $search_field[ 'value' ] ) ) { |
|
19 | 19 | gravityview()->log->debug( 'search-field-select.php - Array values passed; using first value.' ); |
20 | - $search_field['value'] = reset( $search_field['value'] ); |
|
20 | + $search_field[ 'value' ] = reset( $search_field[ 'value' ] ); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | /** |
@@ -26,26 +26,26 @@ discard block |
||
26 | 26 | * @param string $default_option Default: `—` (—) |
27 | 27 | * @param string $field_type Field type: "select" or "multiselect" |
28 | 28 | */ |
29 | -$default_option = apply_filters('gravityview/extension/search/select_default', '—', 'select' ); |
|
29 | +$default_option = apply_filters( 'gravityview/extension/search/select_default', '—', 'select' ); |
|
30 | 30 | |
31 | 31 | ?> |
32 | 32 | <div class="gv-search-box gv-search-field-select"> |
33 | - <?php if( ! gv_empty( $search_field['label'], false, false ) ) { ?> |
|
34 | - <label for="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"><?php echo esc_html( $search_field['label'] ); ?></label> |
|
33 | + <?php if ( ! gv_empty( $search_field[ 'label' ], false, false ) ) { ?> |
|
34 | + <label for="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"><?php echo esc_html( $search_field[ 'label' ] ); ?></label> |
|
35 | 35 | <?php } ?> |
36 | 36 | <p> |
37 | - <select name="<?php echo esc_attr( $search_field['name'] ); ?>" id="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"> |
|
38 | - <option value="" <?php gv_selected( '', $search_field['value'], true ); ?>><?php echo esc_html( $default_option ); ?></option> |
|
37 | + <select name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>" id="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"> |
|
38 | + <option value="" <?php gv_selected( '', $search_field[ 'value' ], true ); ?>><?php echo esc_html( $default_option ); ?></option> |
|
39 | 39 | <?php |
40 | - foreach( $search_field['choices'] as $choice ) { ?> |
|
41 | - <?php if ( is_array( $choice['value'] ) ) { ?> |
|
42 | - <optgroup label="<?php echo esc_attr( $choice['text'] ); ?>"> |
|
43 | - <?php foreach ( $choice['value'] as $subchoice ): ?> |
|
44 | - <option value="<?php echo esc_attr( $subchoice['value'] ); ?>"><?php echo esc_html( $subchoice['text'] ); ?></option> |
|
40 | + foreach ( $search_field[ 'choices' ] as $choice ) { ?> |
|
41 | + <?php if ( is_array( $choice[ 'value' ] ) ) { ?> |
|
42 | + <optgroup label="<?php echo esc_attr( $choice[ 'text' ] ); ?>"> |
|
43 | + <?php foreach ( $choice[ 'value' ] as $subchoice ): ?> |
|
44 | + <option value="<?php echo esc_attr( $subchoice[ 'value' ] ); ?>"><?php echo esc_html( $subchoice[ 'text' ] ); ?></option> |
|
45 | 45 | <?php endforeach; ?> |
46 | 46 | </optgroup> |
47 | 47 | <?php } else { ?> |
48 | - <option value="<?php echo esc_attr( $choice['value'] ); ?>" <?php gv_selected( esc_attr( $choice['value'] ), esc_attr( $search_field['value'] ), true ); ?>><?php echo esc_html( $choice['text'] ); ?></option> |
|
48 | + <option value="<?php echo esc_attr( $choice[ 'value' ] ); ?>" <?php gv_selected( esc_attr( $choice[ 'value' ] ), esc_attr( $search_field[ 'value' ] ), true ); ?>><?php echo esc_html( $choice[ 'text' ] ); ?></option> |
|
49 | 49 | <?php } ?> |
50 | 50 | <?php } ?> |
51 | 51 | </select> |
@@ -15,34 +15,34 @@ |
||
15 | 15 | $field_info_items = array(); |
16 | 16 | |
17 | 17 | // Fields with IDs, not like Source URL or Entry ID |
18 | - if( is_numeric( $this->id ) ) { |
|
18 | + if ( is_numeric( $this->id ) ) { |
|
19 | 19 | |
20 | - $field_type_title = GFCommon::get_field_type_title( $this->item['input_type'] ); |
|
20 | + $field_type_title = GFCommon::get_field_type_title( $this->item[ 'input_type' ] ); |
|
21 | 21 | |
22 | - $field_info_items[] = array( |
|
23 | - 'value' => sprintf( __('Type: %s', 'gravityview'), $field_type_title ) |
|
22 | + $field_info_items[ ] = array( |
|
23 | + 'value' => sprintf( __( 'Type: %s', 'gravityview' ), $field_type_title ) |
|
24 | 24 | ); |
25 | 25 | |
26 | - $field_info_items[] = array( |
|
27 | - 'value' => sprintf( __('Field ID: %s', 'gravityview'), $this->id ), |
|
26 | + $field_info_items[ ] = array( |
|
27 | + 'value' => sprintf( __( 'Field ID: %s', 'gravityview' ), $this->id ), |
|
28 | 28 | ); |
29 | 29 | } |
30 | 30 | |
31 | - if( !empty( $this->item['desc'] ) ) { |
|
32 | - $field_info_items[] = array( |
|
33 | - 'value' => $this->item['desc'] |
|
31 | + if ( ! empty( $this->item[ 'desc' ] ) ) { |
|
32 | + $field_info_items[ ] = array( |
|
33 | + 'value' => $this->item[ 'desc' ] |
|
34 | 34 | ); |
35 | 35 | } |
36 | 36 | |
37 | - if( !empty( $this->item['adminLabel'] ) ) { |
|
38 | - $field_info_items[] = array( |
|
39 | - 'value' => sprintf( __('Admin Label: %s', 'gravityview' ), $this->item['adminLabel'] ), |
|
37 | + if ( ! empty( $this->item[ 'adminLabel' ] ) ) { |
|
38 | + $field_info_items[ ] = array( |
|
39 | + 'value' => sprintf( __( 'Admin Label: %s', 'gravityview' ), $this->item[ 'adminLabel' ] ), |
|
40 | 40 | 'class' => 'gv-sublabel' |
41 | 41 | ); |
42 | 42 | } |
43 | 43 | |
44 | - $field_info_items[] = array( |
|
45 | - 'value' => sprintf( __('Form ID: %s', 'gravityview' ), $this->form_id ), |
|
44 | + $field_info_items[ ] = array( |
|
45 | + 'value' => sprintf( __( 'Form ID: %s', 'gravityview' ), $this->form_id ), |
|
46 | 46 | 'hide_in_picker' => true, |
47 | 47 | ); |
48 | 48 |
@@ -44,12 +44,12 @@ discard block |
||
44 | 44 | */ |
45 | 45 | protected $form_id; |
46 | 46 | |
47 | - function __construct( $title = '', $item_id, $item = array(), $settings = array(), $form_id = null) { |
|
47 | + function __construct( $title = '', $item_id, $item = array(), $settings = array(), $form_id = null ) { |
|
48 | 48 | |
49 | 49 | // Backward compat |
50 | - if ( ! empty( $item['type'] ) ) { |
|
51 | - $item['input_type'] = $item['type']; |
|
52 | - unset( $item['type'] ); |
|
50 | + if ( ! empty( $item[ 'type' ] ) ) { |
|
51 | + $item[ 'input_type' ] = $item[ 'type' ]; |
|
52 | + unset( $item[ 'type' ] ); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | // Prevent items from not having index set |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | $this->id = $item_id; |
72 | 72 | $this->form_id = $form_id; |
73 | 73 | $this->settings = $settings; |
74 | - $this->label_type = $item['label_type']; |
|
74 | + $this->label_type = $item[ 'label_type' ]; |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
@@ -115,14 +115,14 @@ discard block |
||
115 | 115 | |
116 | 116 | foreach ( $field_info_items as $item ) { |
117 | 117 | |
118 | - if( \GV\Utils::get( $item, 'hide_in_picker', false ) ) { |
|
118 | + if ( \GV\Utils::get( $item, 'hide_in_picker', false ) ) { |
|
119 | 119 | continue; |
120 | 120 | } |
121 | 121 | |
122 | - $class = isset( $item['class'] ) ? sanitize_html_class( $item['class'] ) . ' description' : 'description'; |
|
122 | + $class = isset( $item[ 'class' ] ) ? sanitize_html_class( $item[ 'class' ] ) . ' description' : 'description'; |
|
123 | 123 | // Add the title in case the value's long, in which case, it'll be truncated by CSS. |
124 | 124 | $output .= '<span class="' . $class . '">'; |
125 | - $output .= esc_html( $item['value'] ); |
|
125 | + $output .= esc_html( $item[ 'value' ] ); |
|
126 | 126 | $output .= '</span>'; |
127 | 127 | } |
128 | 128 | |
@@ -150,29 +150,29 @@ discard block |
||
150 | 150 | |
151 | 151 | // $settings_html will just be hidden inputs if empty. Otherwise, it'll have an <ul>. Ugly hack, I know. |
152 | 152 | // TODO: Un-hack this |
153 | - $hide_settings_link = ( empty( $this->item['settings_html'] ) || strpos( $this->item['settings_html'], '<!-- No Options -->' ) > 0 ) ? 'hide-if-js' : ''; |
|
153 | + $hide_settings_link = ( empty( $this->item[ 'settings_html' ] ) || strpos( $this->item[ 'settings_html' ], '<!-- No Options -->' ) > 0 ) ? 'hide-if-js' : ''; |
|
154 | 154 | $settings_link = sprintf( '<a href="#settings" class="dashicons-admin-generic dashicons %s" title="%s"></a>', $hide_settings_link, esc_attr( $settings_title ) ); |
155 | 155 | |
156 | 156 | // Should we show the icon that the field is being used as a link to single entry? |
157 | - $hide_show_as_link_class = empty( $this->settings['show_as_link'] ) ? 'hide-if-js' : ''; |
|
157 | + $hide_show_as_link_class = empty( $this->settings[ 'show_as_link' ] ) ? 'hide-if-js' : ''; |
|
158 | 158 | $show_as_link = '<span class="dashicons dashicons-admin-links ' . $hide_show_as_link_class . '" title="' . esc_attr( $single_link_title ) . '"></span>'; |
159 | 159 | |
160 | 160 | // When a field label is empty, use the Field ID |
161 | 161 | $label = empty( $this->title ) ? sprintf( _x( 'Field #%s (No Label)', 'Label in field picker for empty label', 'gravityview' ), $this->id ) : $this->title; |
162 | 162 | |
163 | 163 | // If there's a custom label, and show label is checked, use that as the field heading |
164 | - if ( ! empty( $this->settings['custom_label'] ) && ! empty( $this->settings['show_label'] ) ) { |
|
165 | - $label = $this->settings['custom_label']; |
|
166 | - } else if ( ! empty( $this->item['customLabel'] ) ) { |
|
167 | - $label = $this->item['customLabel']; |
|
164 | + if ( ! empty( $this->settings[ 'custom_label' ] ) && ! empty( $this->settings[ 'show_label' ] ) ) { |
|
165 | + $label = $this->settings[ 'custom_label' ]; |
|
166 | + } else if ( ! empty( $this->item[ 'customLabel' ] ) ) { |
|
167 | + $label = $this->item[ 'customLabel' ]; |
|
168 | 168 | } |
169 | 169 | |
170 | 170 | $output = '<h5 class="selectable gfield field-id-' . esc_attr( $this->id ) . '">'; |
171 | 171 | |
172 | 172 | $label = esc_attr( $label ); |
173 | 173 | |
174 | - if ( ! empty( $this->item['parent'] ) ) { |
|
175 | - $label .= ' <small>(' . esc_attr( $this->item['parent']['label'] ) . ')</small>'; |
|
174 | + if ( ! empty( $this->item[ 'parent' ] ) ) { |
|
175 | + $label .= ' <small>(' . esc_attr( $this->item[ 'parent' ][ 'label' ] ) . ')</small>'; |
|
176 | 176 | } |
177 | 177 | |
178 | 178 | // Name of field / widget |
@@ -188,10 +188,10 @@ discard block |
||
188 | 188 | |
189 | 189 | $output .= '</h5>'; |
190 | 190 | |
191 | - $container_class = ! empty( $this->item['parent'] ) ? ' gv-child-field' : ''; |
|
192 | - $data_form_id = ! empty( $this->form_id ) ? 'data-formid="' . esc_attr( $this->form_id ) . '"' : ''; |
|
191 | + $container_class = ! empty( $this->item[ 'parent' ] ) ? ' gv-child-field' : ''; |
|
192 | + $data_form_id = ! empty( $this->form_id ) ? 'data-formid="' . esc_attr( $this->form_id ) . '"' : ''; |
|
193 | 193 | |
194 | - $output = '<div data-fieldid="' . esc_attr( $this->id ) . '" ' . $data_form_id . ' data-inputtype="' . esc_attr( $this->item['input_type'] ) . '" class="gv-fields' . $container_class . '">' . $output . $this->item['settings_html'] . '</div>'; |
|
194 | + $output = '<div data-fieldid="' . esc_attr( $this->id ) . '" ' . $data_form_id . ' data-inputtype="' . esc_attr( $this->item[ 'input_type' ] ) . '" class="gv-fields' . $container_class . '">' . $output . $this->item[ 'settings_html' ] . '</div>'; |
|
195 | 195 | |
196 | 196 | return $output; |
197 | 197 | } |
@@ -58,16 +58,16 @@ |
||
58 | 58 | if ( $view->joins ) { |
59 | 59 | $form_ids = array(); |
60 | 60 | foreach ( $view->joins as $join ) { |
61 | - $form_ids[] = $join->join->ID; |
|
62 | - $form_ids[] = $join->join_on->ID; |
|
61 | + $form_ids[ ] = $join->join->ID; |
|
62 | + $form_ids[ ] = $join->join_on->ID; |
|
63 | 63 | } |
64 | 64 | foreach ( $entry->entries as $e ) { |
65 | - if ( ! in_array( $e['form_id'], $form_ids ) ) { |
|
65 | + if ( ! in_array( $e[ 'form_id' ], $form_ids ) ) { |
|
66 | 66 | gravityview()->log->error( 'The requested entry does not belong to this View. Entry #{entry_id}, #View {view_id}', array( 'entry_id' => $e->ID, 'view_id' => $view->ID ) ); |
67 | 67 | return null; |
68 | 68 | } |
69 | 69 | } |
70 | - } else if ( $view->form && $view->form->ID != $entry['form_id'] ) { |
|
70 | + } else if ( $view->form && $view->form->ID != $entry[ 'form_id' ] ) { |
|
71 | 71 | gravityview()->log->error( 'The requested entry does not belong to this View. Entry #{entry_id}, #View {view_id}', array( 'entry_id' => $entry->ID, 'view_id' => $view->ID ) ); |
72 | 72 | return null; |
73 | 73 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | if ( ! $entry instanceof Entry ) { |
45 | 45 | continue; |
46 | 46 | } |
47 | - $_entry->entries[ $entry['form_id'] ] = &$entry; |
|
47 | + $_entry->entries[ $entry[ 'form_id' ] ] = &$entry; |
|
48 | 48 | } |
49 | 49 | return $_entry; |
50 | 50 | } |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | |
66 | 66 | foreach ( $this->entries as $entry ) { |
67 | 67 | $entry = $entry->as_entry(); |
68 | - $_entry['_multi'][ $entry['form_id'] ] = $entry; |
|
68 | + $_entry[ '_multi' ][ $entry[ 'form_id' ] ] = $entry; |
|
69 | 69 | } |
70 | 70 | } |
71 | 71 | |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | public function get_permalink( \GV\View $view = null, \GV\Request $request = null, $track_directory = true ) { |
88 | 88 | $slugs = array(); |
89 | 89 | add_filter( 'gravityview/entry/slug', $callback = function( $slug ) use ( &$slugs ) { |
90 | - $slugs[] = $slug; |
|
90 | + $slugs[ ] = $slug; |
|
91 | 91 | return implode( ',', $slugs ); |
92 | 92 | }, 10, 1 ); |
93 | 93 |