Completed
Pull Request — develop (#1523)
by
unknown
18:51
created
includes/class-gravityview-change-entry-creator.php 2 patches
Indentation   +266 added lines, -266 removed lines patch added patch discarded remove patch
@@ -5,295 +5,295 @@
 block discarded – undo
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
-        // Enqueues SelectWoo script and style.
36
-        add_action( 'admin_enqueue_scripts', array( $this, 'add_selectwoo_assets') );
37
-
38
-        // Ajax callback to get users to change entry creator.
39
-        add_action( 'wp_ajax_entry_creator_get_users', array( $this, 'entry_creator_get_users' ) );
40
-
41
-    }
42
-
43
-    /**
44
-     * Enqueues SelectWoo script and style.
45
-     *
46
-     * @since  2.9.1
47
-     *
48
-     */
49
-    function add_selectwoo_assets() {
50
-
51
-        $version      = GravityView_Plugin::version;
52
-        $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
53
-
54
-        wp_enqueue_script( 'gravityview-selectWoo', plugins_url( 'assets/lib/selectWoo/selectWoo.full.min.js', GRAVITYVIEW_FILE ), array(), $version );
55
-        wp_enqueue_style( 'gravityview-selectWoo', plugins_url( 'assets/lib/selectWoo/selectWoo.min.css', GRAVITYVIEW_FILE ), array(), $version );
56
-
57
-        wp_enqueue_script( 'gravityview_entry_creator', plugins_url( 'assets/js/admin-entry-creator' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'gravityview-selectWoo' ), $version );
58
-
59
-        wp_localize_script(
60
-            'gravityview_entry_creator',
61
-            'GVEntryCreator',
62
-            array(
63
-                'ajaxurl' => admin_url( 'admin-ajax.php' ),
64
-                'action'  => 'entry_creator_get_users',
65
-            ) 
66
-        );
67
-    }
68
-
69
-    /**
70
-     * Get users list for entry creator.
71
-     *
72
-     * @since  2.9.1
73
-     *
74
-     */
75
-    function entry_creator_get_users() {
76
-
77
-        $post_var = wp_parse_args(
78
-            wp_unslash( $_POST ),
79
-            array(
80
-                'q' => '',
81
-                'gv_nonce' => '',
82
-            )
83
-        );
84
-
85
-        if( !wp_verify_nonce( $post_var['gv_nonce'], 'gv_entry_creator' )) {
86
-            die();
87
-        }
88
-
89
-        $search_string = $post_var['q'];
90
-
91
-        $user_args = array(
92
-            'search'         => '*' . $search_string . '*',
93
-            'search_columns' => array( 'user_login', 'user_email', 'user_nicename', 'display_name' ),
94
-        );
95
-
96
-        $users = GVCommon::get_users( 'change_entry_creator', $user_args );
97
-
98
-        echo json_encode( $users );
99
-
100
-        die();
101
-    }
102
-
103
-    /**
104
-     * When an user is created using the User Registration add-on, assign the entry to them
105
-     *
106
-     * @since  1.5.1
107
-     * @uses RGFormsModel::update_lead_property() Modify the entry `created_by` field
108
-     * @param  int $user_id  WordPress User ID
109
-     * @param  array $config   User registration feed configuration
110
-     * @param  array  $entry     GF Entry array
111
-     * @param  string $password User password
112
-     * @return void
113
-     */
114
-    function assign_new_user_to_lead( $user_id, $config, $entry = array(), $password = '' ) {
115
-
116
-    	/**
117
-    	 * Disable assigning the new user to the entry by returning false.
118
-    	 * @param  int $user_id  WordPress User ID
119
-	     * @param  array $config   User registration feed configuration
120
-	     * @param  array  $entry     GF Entry array
121
-    	 */
122
-    	$assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry );
123
-
124
-    	// If filter returns false, do not process
125
-    	if( empty( $assign_to_lead ) ) {
126
-    		return;
127
-    	}
128
-
129
-    	// Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing
130
-    	$result = RGFormsModel::update_entry_property( (int) $entry['id'], 'created_by', (int) $user_id, false, true );
131
-
132
-    	if ( false === $result ) {
133
-    		$status = __('Error', 'gravityview');
134
-    		global $wpdb;
135
-		    $note = sprintf( '%s: Failed to assign User ID #%d as the entry creator (Last database error: "%s")', $status, $user_id, $wpdb->last_error );
136
-    	} else {
137
-    		$status = __('Success', 'gravityview');
138
-    	    $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 );
139
-    	}
140
-
141
-    	gravityview()->log->debug( 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - {note}', array( 'note' => $note ) );
142
-
143
-	    /**
144
-	     * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator
145
-	     * @since 1.21.5
146
-	     * @param boolean $disable Disable the Change Entry Creator note. Default: false.
147
-	     */
148
-	    if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) {
149
-		    return;
150
-	    }
151
-
152
-        GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' );
153
-
154
-    }
155
-
156
-    /**
157
-     * Disable previous functionality; use this one as the canonical.
158
-     * @return void
159
-     */
160
-    function prevent_conflicts() {
161
-
162
-    	// Plugin that was provided here:
163
-    	// @link https://gravityview.co/support/documentation/201991205/
164
-    	remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 );
165
-    	remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 );
166
-
167
-    }
168
-
169
-    /**
170
-     * @since  3.6.3
171
-     * @return void
172
-     */
173
-    function load() {
174
-
175
-    	// Does GF exist?
176
-        if( !class_exists('GFCommon') ) {
177
-            return;
178
-        }
179
-
180
-        // Can the user edit entries?
181
-        if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) {
182
-            return;
183
-        }
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
+		// Enqueues SelectWoo script and style.
36
+		add_action( 'admin_enqueue_scripts', array( $this, 'add_selectwoo_assets') );
37
+
38
+		// Ajax callback to get users to change entry creator.
39
+		add_action( 'wp_ajax_entry_creator_get_users', array( $this, 'entry_creator_get_users' ) );
40
+
41
+	}
42
+
43
+	/**
44
+	 * Enqueues SelectWoo script and style.
45
+	 *
46
+	 * @since  2.9.1
47
+	 *
48
+	 */
49
+	function add_selectwoo_assets() {
50
+
51
+		$version      = GravityView_Plugin::version;
52
+		$script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
53
+
54
+		wp_enqueue_script( 'gravityview-selectWoo', plugins_url( 'assets/lib/selectWoo/selectWoo.full.min.js', GRAVITYVIEW_FILE ), array(), $version );
55
+		wp_enqueue_style( 'gravityview-selectWoo', plugins_url( 'assets/lib/selectWoo/selectWoo.min.css', GRAVITYVIEW_FILE ), array(), $version );
56
+
57
+		wp_enqueue_script( 'gravityview_entry_creator', plugins_url( 'assets/js/admin-entry-creator' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'gravityview-selectWoo' ), $version );
58
+
59
+		wp_localize_script(
60
+			'gravityview_entry_creator',
61
+			'GVEntryCreator',
62
+			array(
63
+				'ajaxurl' => admin_url( 'admin-ajax.php' ),
64
+				'action'  => 'entry_creator_get_users',
65
+			) 
66
+		);
67
+	}
68
+
69
+	/**
70
+	 * Get users list for entry creator.
71
+	 *
72
+	 * @since  2.9.1
73
+	 *
74
+	 */
75
+	function entry_creator_get_users() {
76
+
77
+		$post_var = wp_parse_args(
78
+			wp_unslash( $_POST ),
79
+			array(
80
+				'q' => '',
81
+				'gv_nonce' => '',
82
+			)
83
+		);
84
+
85
+		if( !wp_verify_nonce( $post_var['gv_nonce'], 'gv_entry_creator' )) {
86
+			die();
87
+		}
88
+
89
+		$search_string = $post_var['q'];
90
+
91
+		$user_args = array(
92
+			'search'         => '*' . $search_string . '*',
93
+			'search_columns' => array( 'user_login', 'user_email', 'user_nicename', 'display_name' ),
94
+		);
95
+
96
+		$users = GVCommon::get_users( 'change_entry_creator', $user_args );
97
+
98
+		echo json_encode( $users );
99
+
100
+		die();
101
+	}
102
+
103
+	/**
104
+	 * When an user is created using the User Registration add-on, assign the entry to them
105
+	 *
106
+	 * @since  1.5.1
107
+	 * @uses RGFormsModel::update_lead_property() Modify the entry `created_by` field
108
+	 * @param  int $user_id  WordPress User ID
109
+	 * @param  array $config   User registration feed configuration
110
+	 * @param  array  $entry     GF Entry array
111
+	 * @param  string $password User password
112
+	 * @return void
113
+	 */
114
+	function assign_new_user_to_lead( $user_id, $config, $entry = array(), $password = '' ) {
115
+
116
+		/**
117
+		 * Disable assigning the new user to the entry by returning false.
118
+		 * @param  int $user_id  WordPress User ID
119
+		 * @param  array $config   User registration feed configuration
120
+		 * @param  array  $entry     GF Entry array
121
+		 */
122
+		$assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry );
123
+
124
+		// If filter returns false, do not process
125
+		if( empty( $assign_to_lead ) ) {
126
+			return;
127
+		}
128
+
129
+		// Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing
130
+		$result = RGFormsModel::update_entry_property( (int) $entry['id'], 'created_by', (int) $user_id, false, true );
131
+
132
+		if ( false === $result ) {
133
+			$status = __('Error', 'gravityview');
134
+			global $wpdb;
135
+			$note = sprintf( '%s: Failed to assign User ID #%d as the entry creator (Last database error: "%s")', $status, $user_id, $wpdb->last_error );
136
+		} else {
137
+			$status = __('Success', 'gravityview');
138
+			$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 );
139
+		}
140
+
141
+		gravityview()->log->debug( 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - {note}', array( 'note' => $note ) );
142
+
143
+		/**
144
+		 * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator
145
+		 * @since 1.21.5
146
+		 * @param boolean $disable Disable the Change Entry Creator note. Default: false.
147
+		 */
148
+		if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) {
149
+			return;
150
+		}
151
+
152
+		GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' );
153
+
154
+	}
155
+
156
+	/**
157
+	 * Disable previous functionality; use this one as the canonical.
158
+	 * @return void
159
+	 */
160
+	function prevent_conflicts() {
161
+
162
+		// Plugin that was provided here:
163
+		// @link https://gravityview.co/support/documentation/201991205/
164
+		remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 );
165
+		remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 );
166
+
167
+	}
168
+
169
+	/**
170
+	 * @since  3.6.3
171
+	 * @return void
172
+	 */
173
+	function load() {
174
+
175
+		// Does GF exist?
176
+		if( !class_exists('GFCommon') ) {
177
+			return;
178
+		}
179
+
180
+		// Can the user edit entries?
181
+		if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) {
182
+			return;
183
+		}
184 184
 
185
-        // If screen mode isn't set, then we're in the wrong place.
186
-        if( empty( $_REQUEST['screen_mode'] ) ) {
187
-            return;
188
-        }
189
-
190
-        // Now, no validation is required in the methods; let's hook in.
191
-        add_action('admin_init', array( &$this, 'set_screen_mode' ) );
192
-
193
-        add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2);
194
-
195
-        add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2);
196
-
197
-    }
198
-
199
-    /**
200
-     * Allows for edit links to work with a link instead of a form (GET instead of POST)
201
-     * @return void
202
-     */
203
-    function set_screen_mode() {
204
-
205
-    	if( 'view' === \GV\Utils::_POST( 'screen_mode' ) ) {
206
-    		return;
207
-	    }
208
-
209
-    	// If $_GET['screen_mode'] is set to edit, set $_POST value
210
-        if( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) {
211
-            $_POST["screen_mode"] = 'edit';
212
-        }
213
-
214
-    }
185
+		// If screen mode isn't set, then we're in the wrong place.
186
+		if( empty( $_REQUEST['screen_mode'] ) ) {
187
+			return;
188
+		}
189
+
190
+		// Now, no validation is required in the methods; let's hook in.
191
+		add_action('admin_init', array( &$this, 'set_screen_mode' ) );
192
+
193
+		add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2);
194
+
195
+		add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2);
196
+
197
+	}
198
+
199
+	/**
200
+	 * Allows for edit links to work with a link instead of a form (GET instead of POST)
201
+	 * @return void
202
+	 */
203
+	function set_screen_mode() {
204
+
205
+		if( 'view' === \GV\Utils::_POST( 'screen_mode' ) ) {
206
+			return;
207
+		}
208
+
209
+		// If $_GET['screen_mode'] is set to edit, set $_POST value
210
+		if( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) {
211
+			$_POST["screen_mode"] = 'edit';
212
+		}
213
+
214
+	}
215 215
 
216
-    /**
217
-     * When the entry creator is changed, add a note to the entry
218
-     * @param  array $form   GF entry array
219
-     * @param  int $entry_id Entry ID
220
-     * @return void
221
-     */
222
-    function update_entry_creator($form, $entry_id) {
223
-            global $current_user;
216
+	/**
217
+	 * When the entry creator is changed, add a note to the entry
218
+	 * @param  array $form   GF entry array
219
+	 * @param  int $entry_id Entry ID
220
+	 * @return void
221
+	 */
222
+	function update_entry_creator($form, $entry_id) {
223
+			global $current_user;
224 224
 
225
-        // Update the entry
226
-        $created_by = absint( \GV\Utils::_POST( 'created_by') );
225
+		// Update the entry
226
+		$created_by = absint( \GV\Utils::_POST( 'created_by') );
227 227
 
228
-        RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by );
228
+		RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by );
229 229
 
230
-        // If the creator has changed, let's add a note about who it used to be.
231
-        $originally_created_by = \GV\Utils::_POST( 'originally_created_by' );
230
+		// If the creator has changed, let's add a note about who it used to be.
231
+		$originally_created_by = \GV\Utils::_POST( 'originally_created_by' );
232 232
 
233
-        // If there's no owner and there didn't used to be, keep going
234
-        if( empty( $originally_created_by ) && empty( $created_by ) ) {
235
-            return;
236
-        }
233
+		// If there's no owner and there didn't used to be, keep going
234
+		if( empty( $originally_created_by ) && empty( $created_by ) ) {
235
+			return;
236
+		}
237 237
 
238
-        // If the values have changed
239
-        if( absint( $originally_created_by ) !== absint( $created_by ) ) {
238
+		// If the values have changed
239
+		if( absint( $originally_created_by ) !== absint( $created_by ) ) {
240 240
 
241
-            $user_data = get_userdata($current_user->ID);
241
+			$user_data = get_userdata($current_user->ID);
242 242
 
243
-            $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview');
243
+			$user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview');
244 244
 
245
-            $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');
245
+			$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');
246 246
 
247
-            if( !empty( $originally_created_by ) ) {
248
-                $originally_created_by_user_data = get_userdata($originally_created_by);
249
-                $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID );
250
-            }
247
+			if( !empty( $originally_created_by ) ) {
248
+				$originally_created_by_user_data = get_userdata($originally_created_by);
249
+				$original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID );
250
+			}
251 251
 
252
-            if( !empty( $created_by ) ) {
253
-                $created_by_user_data =  get_userdata($created_by);
254
-                $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID );
255
-            }
252
+			if( !empty( $created_by ) ) {
253
+				$created_by_user_data =  get_userdata($created_by);
254
+				$created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID );
255
+			}
256 256
 
257
-            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' );
258
-        }
257
+			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' );
258
+		}
259 259
 
260
-    }
260
+	}
261 261
 
262
-    /**
263
-     * Output the select to change the entry creator
264
-     * @param int $form_id GF Form ID
265
-     * @param array $entry    GF entry array
266
-     * @return void
267
-     */
268
-    function add_select($form_id, $entry ) {
262
+	/**
263
+	 * Output the select to change the entry creator
264
+	 * @param int $form_id GF Form ID
265
+	 * @param array $entry    GF entry array
266
+	 * @return void
267
+	 */
268
+	function add_select($form_id, $entry ) {
269 269
 
270
-        if( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) {
271
-            return;
272
-        }
270
+		if( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) {
271
+			return;
272
+		}
273 273
 
274 274
 
275
-        $output = '<label for="change_created_by">';
276
-        $output .= esc_html__('Change Entry Creator:', 'gravityview');
277
-        $output .= '</label>';
275
+		$output = '<label for="change_created_by">';
276
+		$output .= esc_html__('Change Entry Creator:', 'gravityview');
277
+		$output .= '</label>';
278 278
 
279
-	    $output .= '<select name="created_by" id="change_created_by" class="widefat">';
279
+		$output .= '<select name="created_by" id="change_created_by" class="widefat">';
280 280
 
281
-        $created_by_id = \GV\Utils::get( $entry, 'created_by' );
282
-        $created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) );
283
-        $created_by_user = isset($created_by_user[0]) ? $created_by_user[0] : array();
281
+		$created_by_id = \GV\Utils::get( $entry, 'created_by' );
282
+		$created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) );
283
+		$created_by_user = isset($created_by_user[0]) ? $created_by_user[0] : array();
284 284
 
285
-        if( empty( $created_by_user ) ) {
286
-            $output .= '<option value="0"> &mdash; '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' &mdash; </option>';
287
-        } else {
288
-            $output .= '<option value="'. $created_by_user->ID .'" "selected">'.esc_attr( $created_by_user->display_name.' ('.$created_by_user->user_nicename.')' ).'</option>';
289
-        }
285
+		if( empty( $created_by_user ) ) {
286
+			$output .= '<option value="0"> &mdash; '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' &mdash; </option>';
287
+		} else {
288
+			$output .= '<option value="'. $created_by_user->ID .'" "selected">'.esc_attr( $created_by_user->display_name.' ('.$created_by_user->user_nicename.')' ).'</option>';
289
+		}
290 290
 
291
-        $output .= '</select>';
292
-        $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />';
293
-        $output .= wp_nonce_field( 'gv_entry_creator', 'gv_entry_creator_nonce', false, false );
291
+		$output .= '</select>';
292
+		$output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />';
293
+		$output .= wp_nonce_field( 'gv_entry_creator', 'gv_entry_creator_nonce', false, false );
294 294
 
295
-        echo $output;
296
-    }
295
+		echo $output;
296
+	}
297 297
 
298 298
 }
299 299
 
Please login to merge, or discard this patch.
Spacing   +46 added lines, -46 removed lines patch added patch discarded remove patch
@@ -10,17 +10,17 @@  discard block
 block discarded – undo
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,12 +28,12 @@  discard block
 block discarded – undo
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
         // Enqueues SelectWoo script and style.
36
-        add_action( 'admin_enqueue_scripts', array( $this, 'add_selectwoo_assets') );
36
+        add_action( 'admin_enqueue_scripts', array( $this, 'add_selectwoo_assets' ) );
37 37
 
38 38
         // Ajax callback to get users to change entry creator.
39 39
         add_action( 'wp_ajax_entry_creator_get_users', array( $this, 'entry_creator_get_users' ) );
@@ -82,11 +82,11 @@  discard block
 block discarded – undo
82 82
             )
83 83
         );
84 84
 
85
-        if( !wp_verify_nonce( $post_var['gv_nonce'], 'gv_entry_creator' )) {
85
+        if ( ! wp_verify_nonce( $post_var[ 'gv_nonce' ], 'gv_entry_creator' ) ) {
86 86
             die();
87 87
         }
88 88
 
89
-        $search_string = $post_var['q'];
89
+        $search_string = $post_var[ 'q' ];
90 90
 
91 91
         $user_args = array(
92 92
             'search'         => '*' . $search_string . '*',
@@ -122,20 +122,20 @@  discard block
 block discarded – undo
122 122
     	$assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry );
123 123
 
124 124
     	// If filter returns false, do not process
125
-    	if( empty( $assign_to_lead ) ) {
125
+    	if ( empty( $assign_to_lead ) ) {
126 126
     		return;
127 127
     	}
128 128
 
129 129
     	// Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing
130
-    	$result = RGFormsModel::update_entry_property( (int) $entry['id'], 'created_by', (int) $user_id, false, true );
130
+    	$result = RGFormsModel::update_entry_property( (int)$entry[ 'id' ], 'created_by', (int)$user_id, false, true );
131 131
 
132 132
     	if ( false === $result ) {
133
-    		$status = __('Error', 'gravityview');
133
+    		$status = __( 'Error', 'gravityview' );
134 134
     		global $wpdb;
135 135
 		    $note = sprintf( '%s: Failed to assign User ID #%d as the entry creator (Last database error: "%s")', $status, $user_id, $wpdb->last_error );
136 136
     	} else {
137
-    		$status = __('Success', 'gravityview');
138
-    	    $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 );
137
+    		$status = __( 'Success', 'gravityview' );
138
+    	    $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 );
139 139
     	}
140 140
 
141 141
     	gravityview()->log->debug( 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - {note}', array( 'note' => $note ) );
@@ -145,11 +145,11 @@  discard block
 block discarded – undo
145 145
 	     * @since 1.21.5
146 146
 	     * @param boolean $disable Disable the Change Entry Creator note. Default: false.
147 147
 	     */
148
-	    if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) {
148
+	    if ( apply_filters( 'gravityview_disable_change_entry_creator_note', false ) ) {
149 149
 		    return;
150 150
 	    }
151 151
 
152
-        GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' );
152
+        GravityView_Entry_Notes::add_note( $entry[ 'id' ], -1, 'GravityView', $note, 'gravityview' );
153 153
 
154 154
     }
155 155
 
@@ -161,8 +161,8 @@  discard block
 block discarded – undo
161 161
 
162 162
     	// Plugin that was provided here:
163 163
     	// @link https://gravityview.co/support/documentation/201991205/
164
-    	remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 );
165
-    	remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 );
164
+    	remove_action( "gform_entry_info", 'gravityview_change_entry_creator_form', 10 );
165
+    	remove_action( "gform_after_update_entry", 'gravityview_update_entry_creator', 10 );
166 166
 
167 167
     }
168 168
 
@@ -173,26 +173,26 @@  discard block
 block discarded – undo
173 173
     function load() {
174 174
 
175 175
     	// Does GF exist?
176
-        if( !class_exists('GFCommon') ) {
176
+        if ( ! class_exists( 'GFCommon' ) ) {
177 177
             return;
178 178
         }
179 179
 
180 180
         // Can the user edit entries?
181
-        if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) {
181
+        if ( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) {
182 182
             return;
183 183
         }
184 184
 
185 185
         // If screen mode isn't set, then we're in the wrong place.
186
-        if( empty( $_REQUEST['screen_mode'] ) ) {
186
+        if ( empty( $_REQUEST[ 'screen_mode' ] ) ) {
187 187
             return;
188 188
         }
189 189
 
190 190
         // Now, no validation is required in the methods; let's hook in.
191
-        add_action('admin_init', array( &$this, 'set_screen_mode' ) );
191
+        add_action( 'admin_init', array( &$this, 'set_screen_mode' ) );
192 192
 
193
-        add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2);
193
+        add_action( "gform_entry_info", array( &$this, 'add_select' ), 10, 2 );
194 194
 
195
-        add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2);
195
+        add_action( "gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2 );
196 196
 
197 197
     }
198 198
 
@@ -202,13 +202,13 @@  discard block
 block discarded – undo
202 202
      */
203 203
     function set_screen_mode() {
204 204
 
205
-    	if( 'view' === \GV\Utils::_POST( 'screen_mode' ) ) {
205
+    	if ( 'view' === \GV\Utils::_POST( 'screen_mode' ) ) {
206 206
     		return;
207 207
 	    }
208 208
 
209 209
     	// If $_GET['screen_mode'] is set to edit, set $_POST value
210
-        if( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) {
211
-            $_POST["screen_mode"] = 'edit';
210
+        if ( \GV\Utils::_GET( 'screen_mode' ) === 'edit' ) {
211
+            $_POST[ "screen_mode" ] = 'edit';
212 212
         }
213 213
 
214 214
     }
@@ -219,11 +219,11 @@  discard block
 block discarded – undo
219 219
      * @param  int $entry_id Entry ID
220 220
      * @return void
221 221
      */
222
-    function update_entry_creator($form, $entry_id) {
222
+    function update_entry_creator( $form, $entry_id ) {
223 223
             global $current_user;
224 224
 
225 225
         // Update the entry
226
-        $created_by = absint( \GV\Utils::_POST( 'created_by') );
226
+        $created_by = absint( \GV\Utils::_POST( 'created_by' ) );
227 227
 
228 228
         RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by );
229 229
 
@@ -231,30 +231,30 @@  discard block
 block discarded – undo
231 231
         $originally_created_by = \GV\Utils::_POST( 'originally_created_by' );
232 232
 
233 233
         // If there's no owner and there didn't used to be, keep going
234
-        if( empty( $originally_created_by ) && empty( $created_by ) ) {
234
+        if ( empty( $originally_created_by ) && empty( $created_by ) ) {
235 235
             return;
236 236
         }
237 237
 
238 238
         // If the values have changed
239
-        if( absint( $originally_created_by ) !== absint( $created_by ) ) {
239
+        if ( absint( $originally_created_by ) !== absint( $created_by ) ) {
240 240
 
241
-            $user_data = get_userdata($current_user->ID);
241
+            $user_data = get_userdata( $current_user->ID );
242 242
 
243
-            $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview');
243
+            $user_format = _x( '%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview' );
244 244
 
245
-            $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');
245
+            $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' );
246 246
 
247
-            if( !empty( $originally_created_by ) ) {
248
-                $originally_created_by_user_data = get_userdata($originally_created_by);
247
+            if ( ! empty( $originally_created_by ) ) {
248
+                $originally_created_by_user_data = get_userdata( $originally_created_by );
249 249
                 $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID );
250 250
             }
251 251
 
252
-            if( !empty( $created_by ) ) {
253
-                $created_by_user_data =  get_userdata($created_by);
252
+            if ( ! empty( $created_by ) ) {
253
+                $created_by_user_data = get_userdata( $created_by );
254 254
                 $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID );
255 255
             }
256 256
 
257
-            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' );
257
+            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' );
258 258
         }
259 259
 
260 260
     }
@@ -265,31 +265,31 @@  discard block
 block discarded – undo
265 265
      * @param array $entry    GF entry array
266 266
      * @return void
267 267
      */
268
-    function add_select($form_id, $entry ) {
268
+    function add_select( $form_id, $entry ) {
269 269
 
270
-        if( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) {
270
+        if ( \GV\Utils::_POST( 'screen_mode' ) !== 'edit' ) {
271 271
             return;
272 272
         }
273 273
 
274 274
 
275 275
         $output = '<label for="change_created_by">';
276
-        $output .= esc_html__('Change Entry Creator:', 'gravityview');
276
+        $output .= esc_html__( 'Change Entry Creator:', 'gravityview' );
277 277
         $output .= '</label>';
278 278
 
279 279
 	    $output .= '<select name="created_by" id="change_created_by" class="widefat">';
280 280
 
281 281
         $created_by_id = \GV\Utils::get( $entry, 'created_by' );
282 282
         $created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) );
283
-        $created_by_user = isset($created_by_user[0]) ? $created_by_user[0] : array();
283
+        $created_by_user = isset( $created_by_user[ 0 ] ) ? $created_by_user[ 0 ] : array();
284 284
 
285
-        if( empty( $created_by_user ) ) {
286
-            $output .= '<option value="0"> &mdash; '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' &mdash; </option>';
285
+        if ( empty( $created_by_user ) ) {
286
+            $output .= '<option value="0"> &mdash; ' . esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview' ) . ' &mdash; </option>';
287 287
         } else {
288
-            $output .= '<option value="'. $created_by_user->ID .'" "selected">'.esc_attr( $created_by_user->display_name.' ('.$created_by_user->user_nicename.')' ).'</option>';
288
+            $output .= '<option value="' . $created_by_user->ID . '" "selected">' . esc_attr( $created_by_user->display_name . ' (' . $created_by_user->user_nicename . ')' ) . '</option>';
289 289
         }
290 290
 
291 291
         $output .= '</select>';
292
-        $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />';
292
+        $output .= '<input name="originally_created_by" value="' . esc_attr( $entry[ 'created_by' ] ) . '" type="hidden" />';
293 293
         $output .= wp_nonce_field( 'gv_entry_creator', 'gv_entry_creator_nonce', false, false );
294 294
 
295 295
         echo $output;
Please login to merge, or discard this patch.