@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | 13 | if ( ! defined( 'WPINC' ) ) { |
| 14 | - die; |
|
| 14 | + die; |
|
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | /** |
@@ -22,255 +22,255 @@ discard block |
||
| 22 | 22 | /** |
| 23 | 23 | * @var GravityView_Edit_Entry |
| 24 | 24 | */ |
| 25 | - protected $loader; |
|
| 25 | + protected $loader; |
|
| 26 | 26 | |
| 27 | - /** |
|
| 28 | - * @var WP_User|null Temporary storage used by restore_user_details() |
|
| 29 | - */ |
|
| 30 | - private $_user_before_update = null; |
|
| 27 | + /** |
|
| 28 | + * @var WP_User|null Temporary storage used by restore_user_details() |
|
| 29 | + */ |
|
| 30 | + private $_user_before_update = null; |
|
| 31 | 31 | |
| 32 | - function __construct( GravityView_Edit_Entry $loader ) { |
|
| 33 | - $this->loader = $loader; |
|
| 34 | - } |
|
| 32 | + function __construct( GravityView_Edit_Entry $loader ) { |
|
| 33 | + $this->loader = $loader; |
|
| 34 | + } |
|
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | 37 | * @since 1.11 |
| 38 | 38 | */ |
| 39 | 39 | public function load() { |
| 40 | 40 | |
| 41 | - /** |
|
| 42 | - * @filter `gravityview/edit_entry/user_registration/trigger_update` Choose whether to update user information via User Registration add-on when an entry is updated? |
|
| 43 | - * @since 1.11 |
|
| 44 | - * @param boolean $boolean Whether to trigger update on user registration (default: true) |
|
| 45 | - */ |
|
| 46 | - if( apply_filters( 'gravityview/edit_entry/user_registration/trigger_update', true ) ) { |
|
| 47 | - add_action( 'gravityview/edit_entry/after_update' , array( $this, 'update_user' ), 10, 2 ); |
|
| 48 | - |
|
| 49 | - // last resort in case the current user display name don't match any of the defaults |
|
| 50 | - add_action( 'gform_user_updated', array( $this, 'restore_display_name' ), 10, 4 ); |
|
| 51 | - } |
|
| 52 | - } |
|
| 53 | - |
|
| 54 | - /** |
|
| 55 | - * Update the WordPress user profile based on the GF User Registration create feed |
|
| 56 | - * |
|
| 57 | - * @since 1.11 |
|
| 58 | - * |
|
| 59 | - * @param array $form Gravity Forms form array |
|
| 60 | - * @param string $entry_id Gravity Forms entry ID |
|
| 61 | - * @return void |
|
| 62 | - */ |
|
| 63 | - public function update_user( $form = array(), $entry_id = 0 ) { |
|
| 64 | - |
|
| 65 | - if( !class_exists( 'GFAPI' ) || !class_exists( 'GFUser' ) || empty( $entry_id ) ) { |
|
| 66 | - return; |
|
| 67 | - } |
|
| 68 | - |
|
| 69 | - // support for GF User Registration 3.x |
|
| 70 | - $gf_user_3 = class_exists('GF_User_Registration') ? true : false; |
|
| 71 | - |
|
| 72 | - if( $gf_user_3 ) { |
|
| 73 | - $gf_user_registration = GF_User_Registration::get_instance(); |
|
| 74 | - } |
|
| 75 | - |
|
| 76 | - $entry = GFAPI::get_entry( $entry_id ); |
|
| 77 | - |
|
| 78 | - /** |
|
| 79 | - * @filter `gravityview/edit_entry/user_registration/entry` Modify entry details before updating the user via User Registration add-on |
|
| 80 | - * @since 1.11 |
|
| 81 | - * @param array $entry Gravity Forms entry |
|
| 82 | - * @param array $form Gravity Forms form |
|
| 83 | - */ |
|
| 84 | - $entry = apply_filters( 'gravityview/edit_entry/user_registration/entry', $entry, $form ); |
|
| 85 | - |
|
| 86 | - /** |
|
| 87 | - * @since 1.14 |
|
| 88 | - */ |
|
| 89 | - if( $gf_user_3 ) { |
|
| 90 | - $config = $gf_user_registration->get_single_submission_feed( $entry, $form ); |
|
| 91 | - } else { |
|
| 92 | - $config = GFUser::get_active_config( $form, $entry ); |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - /** |
|
| 96 | - * @filter `gravityview/edit_entry/user_registration/preserve_role` Keep the current user role or override with the role defined in the Create feed |
|
| 97 | - * @since 1.15 |
|
| 98 | - * @param[in,out] boolean $preserve_role Preserve current user role Default: true |
|
| 99 | - * @param[in] array $config Gravity Forms User Registration feed configuration for the form |
|
| 100 | - * @param[in] array $form Gravity Forms form array |
|
| 101 | - * @param[in] array $entry Gravity Forms entry being edited |
|
| 102 | - */ |
|
| 103 | - $preserve_role = apply_filters( 'gravityview/edit_entry/user_registration/preserve_role', true, $config, $form, $entry ); |
|
| 104 | - |
|
| 105 | - if( $preserve_role ) { |
|
| 106 | - $config['meta']['role'] = 'gfur_preserve_role'; |
|
| 107 | - } |
|
| 108 | - |
|
| 109 | - /** |
|
| 110 | - * Make sure the current display name is not changed with the update user method. |
|
| 111 | - * @since 1.15 |
|
| 112 | - */ |
|
| 113 | - $config['meta']['displayname'] = $this->match_current_display_name( $entry['created_by'] ); |
|
| 114 | - |
|
| 115 | - |
|
| 116 | - /** |
|
| 117 | - * @filter `gravityview/edit_entry/user_registration/config` Modify the User Registration Addon feed configuration |
|
| 118 | - * @since 1.14 |
|
| 119 | - * @param[in,out] array $config Gravity Forms User Registration feed configuration for the form |
|
| 120 | - * @param[in] array $form Gravity Forms form array |
|
| 121 | - * @param[in] array $entry Gravity Forms entry being edited |
|
| 122 | - */ |
|
| 123 | - $config = apply_filters( 'gravityview/edit_entry/user_registration/config', $config, $form, $entry ); |
|
| 124 | - |
|
| 125 | - |
|
| 126 | - $feed_pos = $gf_user_3 ? 'meta/feedType' : 'meta/feed_type'; |
|
| 127 | - $is_create_feed = ( $config && rgars( $config, $feed_pos ) === 'create' ); |
|
| 128 | - |
|
| 129 | - // Only update if it's a create feed |
|
| 130 | - if( ! $is_create_feed ) { |
|
| 131 | - return; |
|
| 132 | - } |
|
| 133 | - |
|
| 134 | - // The priority is set to 3 so that default priority (10) will still override it |
|
| 135 | - add_filter( 'send_password_change_email', '__return_false', 3 ); |
|
| 136 | - add_filter( 'send_email_change_email', '__return_false', 3 ); |
|
| 137 | - |
|
| 138 | - // Trigger the User Registration update user method |
|
| 139 | - if( $gf_user_3 ) { |
|
| 140 | - $gf_user_registration->update_user( $entry, $form, $config ); |
|
| 141 | - } else { |
|
| 142 | - GFUser::update_user( $entry, $form, $config ); |
|
| 143 | - } |
|
| 144 | - |
|
| 145 | - |
|
| 146 | - remove_filter( 'send_password_change_email', '__return_false', 3 ); |
|
| 147 | - remove_filter( 'send_email_change_email', '__return_false', 3 ); |
|
| 148 | - |
|
| 149 | - } |
|
| 150 | - |
|
| 151 | - /** |
|
| 152 | - * Calculate the user display name format |
|
| 153 | - * |
|
| 154 | - * @since 1.15 |
|
| 155 | - * |
|
| 156 | - * @param int $user_id WP User ID |
|
| 157 | - * @return string Display name format as used inside Gravity Forms User Registration |
|
| 158 | - */ |
|
| 159 | - public function match_current_display_name( $user_id ) { |
|
| 160 | - |
|
| 161 | - $user = get_userdata( $user_id ); |
|
| 162 | - |
|
| 163 | - $names = $this->generate_display_names( $user ); |
|
| 164 | - |
|
| 165 | - $format = array_search( $user->display_name, $names, true ); |
|
| 166 | - |
|
| 167 | - // In case we can't find the current display name format, or it is the 'nickname' format (which Gravity Forms doesn't support) |
|
| 168 | - // trigger last resort method at the 'gform_user_updated' hook |
|
| 169 | - if( false === $format || 'nickname' === $format ) { |
|
| 170 | - $this->_user_before_update = $user; |
|
| 171 | - $format = 'nickname'; |
|
| 172 | - } |
|
| 173 | - |
|
| 174 | - return $format; |
|
| 175 | - |
|
| 176 | - } |
|
| 177 | - |
|
| 178 | - /** |
|
| 179 | - * Generate an array of all the user display names possibilities |
|
| 180 | - * |
|
| 181 | - * @since 1.15 |
|
| 182 | - * |
|
| 183 | - * @param object $profileuser WP_User object |
|
| 184 | - * @return array List all the possible display names for a certain User object |
|
| 185 | - */ |
|
| 186 | - public function generate_display_names( $profileuser ) { |
|
| 187 | - |
|
| 188 | - $public_display = array(); |
|
| 189 | - $public_display['nickname'] = $profileuser->nickname; |
|
| 190 | - $public_display['username'] = $profileuser->user_login; |
|
| 191 | - |
|
| 192 | - if ( !empty($profileuser->first_name) ) |
|
| 193 | - $public_display['firstname'] = $profileuser->first_name; |
|
| 194 | - |
|
| 195 | - if ( !empty($profileuser->last_name) ) |
|
| 196 | - $public_display['lastname'] = $profileuser->last_name; |
|
| 197 | - |
|
| 198 | - if ( !empty($profileuser->first_name) && !empty($profileuser->last_name) ) { |
|
| 199 | - $public_display['firstlast'] = $profileuser->first_name . ' ' . $profileuser->last_name; |
|
| 200 | - $public_display['lastfirst'] = $profileuser->last_name . ' ' . $profileuser->first_name; |
|
| 201 | - } |
|
| 202 | - |
|
| 203 | - $public_display = array_map( 'trim', $public_display ); |
|
| 204 | - $public_display = array_unique( $public_display ); |
|
| 205 | - |
|
| 206 | - return $public_display; |
|
| 207 | - } |
|
| 208 | - |
|
| 209 | - |
|
| 210 | - /** |
|
| 211 | - * Restore the Display Name and roles of a user after being updated by Gravity Forms User Registration Addon |
|
| 212 | - * |
|
| 213 | - * @see GFUser::update_user() |
|
| 214 | - * @param int $user_id WP User ID that was updated by Gravity Forms User Registration Addon |
|
| 215 | - * @param array $config Gravity Forms User Registration Addon form feed configuration |
|
| 216 | - * @param array $entry The Gravity Forms entry that was just updated |
|
| 217 | - * @param string $password User password |
|
| 218 | - * @return void |
|
| 219 | - */ |
|
| 220 | - public function restore_display_name( $user_id = 0, $config = array(), $entry = array(), $password = '' ) { |
|
| 221 | - |
|
| 222 | - /** |
|
| 223 | - * @filter `gravityview/edit_entry/restore_display_name` Whether display names should be restored to before updating an entry. |
|
| 224 | - * Otherwise, display names will be reset to the format specified in Gravity Forms User Registration "Update" feed |
|
| 225 | - * @since 1.14.4 |
|
| 226 | - * @param boolean $restore_display_name Restore Display Name? Default: true |
|
| 227 | - */ |
|
| 228 | - $restore_display_name = apply_filters( 'gravityview/edit_entry/restore_display_name', true ); |
|
| 229 | - |
|
| 230 | - $is_update_feed = ( $config && rgars( $config, 'meta/feed_type') === 'update' ); |
|
| 231 | - |
|
| 232 | - /** |
|
| 233 | - * Don't restore display name: |
|
| 234 | - * - either disabled, |
|
| 235 | - * - or it is an Update feed (we only care about Create feed) |
|
| 236 | - * - or we don't need as we found the correct format before updating user. |
|
| 237 | - * @since 1.14.4 |
|
| 238 | - */ |
|
| 239 | - if( ! $restore_display_name || $is_update_feed || is_null( $this->_user_before_update ) ) { |
|
| 240 | - return; |
|
| 241 | - } |
|
| 242 | - |
|
| 243 | - $user_after_update = get_userdata( $user_id ); |
|
| 244 | - |
|
| 245 | - $restored_user = $user_after_update; |
|
| 246 | - |
|
| 247 | - // Restore previous display_name |
|
| 248 | - $restored_user->display_name = $this->_user_before_update->display_name; |
|
| 249 | - |
|
| 250 | - // Don't have WP update the password. |
|
| 251 | - unset( $restored_user->data->user_pass, $restored_user->user_pass ); |
|
| 252 | - |
|
| 253 | - /** |
|
| 254 | - * Modify the user data after updated by Gravity Forms User Registration but before restored by GravityView |
|
| 255 | - * @since 1.14 |
|
| 256 | - * @param WP_User $restored_user The user with restored details about to be updated by wp_update_user() |
|
| 257 | - * @param WP_User $user_before_update The user before being updated by Gravity Forms User Registration |
|
| 258 | - * @param WP_User $user_after_update The user after being updated by Gravity Forms User Registration |
|
| 259 | - * @param array $entry The Gravity Forms entry that was just updated |
|
| 260 | - */ |
|
| 261 | - $restored_user = apply_filters( 'gravityview/edit_entry/user_registration/restored_user', $restored_user, $this->_user_before_update, $user_after_update, $entry ); |
|
| 262 | - |
|
| 263 | - $updated = wp_update_user( $restored_user ); |
|
| 264 | - |
|
| 265 | - if( is_wp_error( $updated ) ) { |
|
| 266 | - do_action('gravityview_log_error', __METHOD__ . sprintf( ' - There was an error updating user #%d details', $user_id ), $updated ); |
|
| 267 | - } else { |
|
| 268 | - do_action('gravityview_log_debug', __METHOD__ . sprintf( ' - User #%d details restored', $user_id ) ); |
|
| 269 | - } |
|
| 270 | - |
|
| 271 | - $this->_user_before_update = null; |
|
| 272 | - |
|
| 273 | - unset( $updated, $restored_user, $user_after_update ); |
|
| 274 | - } |
|
| 41 | + /** |
|
| 42 | + * @filter `gravityview/edit_entry/user_registration/trigger_update` Choose whether to update user information via User Registration add-on when an entry is updated? |
|
| 43 | + * @since 1.11 |
|
| 44 | + * @param boolean $boolean Whether to trigger update on user registration (default: true) |
|
| 45 | + */ |
|
| 46 | + if( apply_filters( 'gravityview/edit_entry/user_registration/trigger_update', true ) ) { |
|
| 47 | + add_action( 'gravityview/edit_entry/after_update' , array( $this, 'update_user' ), 10, 2 ); |
|
| 48 | + |
|
| 49 | + // last resort in case the current user display name don't match any of the defaults |
|
| 50 | + add_action( 'gform_user_updated', array( $this, 'restore_display_name' ), 10, 4 ); |
|
| 51 | + } |
|
| 52 | + } |
|
| 53 | + |
|
| 54 | + /** |
|
| 55 | + * Update the WordPress user profile based on the GF User Registration create feed |
|
| 56 | + * |
|
| 57 | + * @since 1.11 |
|
| 58 | + * |
|
| 59 | + * @param array $form Gravity Forms form array |
|
| 60 | + * @param string $entry_id Gravity Forms entry ID |
|
| 61 | + * @return void |
|
| 62 | + */ |
|
| 63 | + public function update_user( $form = array(), $entry_id = 0 ) { |
|
| 64 | + |
|
| 65 | + if( !class_exists( 'GFAPI' ) || !class_exists( 'GFUser' ) || empty( $entry_id ) ) { |
|
| 66 | + return; |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + // support for GF User Registration 3.x |
|
| 70 | + $gf_user_3 = class_exists('GF_User_Registration') ? true : false; |
|
| 71 | + |
|
| 72 | + if( $gf_user_3 ) { |
|
| 73 | + $gf_user_registration = GF_User_Registration::get_instance(); |
|
| 74 | + } |
|
| 75 | + |
|
| 76 | + $entry = GFAPI::get_entry( $entry_id ); |
|
| 77 | + |
|
| 78 | + /** |
|
| 79 | + * @filter `gravityview/edit_entry/user_registration/entry` Modify entry details before updating the user via User Registration add-on |
|
| 80 | + * @since 1.11 |
|
| 81 | + * @param array $entry Gravity Forms entry |
|
| 82 | + * @param array $form Gravity Forms form |
|
| 83 | + */ |
|
| 84 | + $entry = apply_filters( 'gravityview/edit_entry/user_registration/entry', $entry, $form ); |
|
| 85 | + |
|
| 86 | + /** |
|
| 87 | + * @since 1.14 |
|
| 88 | + */ |
|
| 89 | + if( $gf_user_3 ) { |
|
| 90 | + $config = $gf_user_registration->get_single_submission_feed( $entry, $form ); |
|
| 91 | + } else { |
|
| 92 | + $config = GFUser::get_active_config( $form, $entry ); |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + /** |
|
| 96 | + * @filter `gravityview/edit_entry/user_registration/preserve_role` Keep the current user role or override with the role defined in the Create feed |
|
| 97 | + * @since 1.15 |
|
| 98 | + * @param[in,out] boolean $preserve_role Preserve current user role Default: true |
|
| 99 | + * @param[in] array $config Gravity Forms User Registration feed configuration for the form |
|
| 100 | + * @param[in] array $form Gravity Forms form array |
|
| 101 | + * @param[in] array $entry Gravity Forms entry being edited |
|
| 102 | + */ |
|
| 103 | + $preserve_role = apply_filters( 'gravityview/edit_entry/user_registration/preserve_role', true, $config, $form, $entry ); |
|
| 104 | + |
|
| 105 | + if( $preserve_role ) { |
|
| 106 | + $config['meta']['role'] = 'gfur_preserve_role'; |
|
| 107 | + } |
|
| 108 | + |
|
| 109 | + /** |
|
| 110 | + * Make sure the current display name is not changed with the update user method. |
|
| 111 | + * @since 1.15 |
|
| 112 | + */ |
|
| 113 | + $config['meta']['displayname'] = $this->match_current_display_name( $entry['created_by'] ); |
|
| 114 | + |
|
| 115 | + |
|
| 116 | + /** |
|
| 117 | + * @filter `gravityview/edit_entry/user_registration/config` Modify the User Registration Addon feed configuration |
|
| 118 | + * @since 1.14 |
|
| 119 | + * @param[in,out] array $config Gravity Forms User Registration feed configuration for the form |
|
| 120 | + * @param[in] array $form Gravity Forms form array |
|
| 121 | + * @param[in] array $entry Gravity Forms entry being edited |
|
| 122 | + */ |
|
| 123 | + $config = apply_filters( 'gravityview/edit_entry/user_registration/config', $config, $form, $entry ); |
|
| 124 | + |
|
| 125 | + |
|
| 126 | + $feed_pos = $gf_user_3 ? 'meta/feedType' : 'meta/feed_type'; |
|
| 127 | + $is_create_feed = ( $config && rgars( $config, $feed_pos ) === 'create' ); |
|
| 128 | + |
|
| 129 | + // Only update if it's a create feed |
|
| 130 | + if( ! $is_create_feed ) { |
|
| 131 | + return; |
|
| 132 | + } |
|
| 133 | + |
|
| 134 | + // The priority is set to 3 so that default priority (10) will still override it |
|
| 135 | + add_filter( 'send_password_change_email', '__return_false', 3 ); |
|
| 136 | + add_filter( 'send_email_change_email', '__return_false', 3 ); |
|
| 137 | + |
|
| 138 | + // Trigger the User Registration update user method |
|
| 139 | + if( $gf_user_3 ) { |
|
| 140 | + $gf_user_registration->update_user( $entry, $form, $config ); |
|
| 141 | + } else { |
|
| 142 | + GFUser::update_user( $entry, $form, $config ); |
|
| 143 | + } |
|
| 144 | + |
|
| 145 | + |
|
| 146 | + remove_filter( 'send_password_change_email', '__return_false', 3 ); |
|
| 147 | + remove_filter( 'send_email_change_email', '__return_false', 3 ); |
|
| 148 | + |
|
| 149 | + } |
|
| 150 | + |
|
| 151 | + /** |
|
| 152 | + * Calculate the user display name format |
|
| 153 | + * |
|
| 154 | + * @since 1.15 |
|
| 155 | + * |
|
| 156 | + * @param int $user_id WP User ID |
|
| 157 | + * @return string Display name format as used inside Gravity Forms User Registration |
|
| 158 | + */ |
|
| 159 | + public function match_current_display_name( $user_id ) { |
|
| 160 | + |
|
| 161 | + $user = get_userdata( $user_id ); |
|
| 162 | + |
|
| 163 | + $names = $this->generate_display_names( $user ); |
|
| 164 | + |
|
| 165 | + $format = array_search( $user->display_name, $names, true ); |
|
| 166 | + |
|
| 167 | + // In case we can't find the current display name format, or it is the 'nickname' format (which Gravity Forms doesn't support) |
|
| 168 | + // trigger last resort method at the 'gform_user_updated' hook |
|
| 169 | + if( false === $format || 'nickname' === $format ) { |
|
| 170 | + $this->_user_before_update = $user; |
|
| 171 | + $format = 'nickname'; |
|
| 172 | + } |
|
| 173 | + |
|
| 174 | + return $format; |
|
| 175 | + |
|
| 176 | + } |
|
| 177 | + |
|
| 178 | + /** |
|
| 179 | + * Generate an array of all the user display names possibilities |
|
| 180 | + * |
|
| 181 | + * @since 1.15 |
|
| 182 | + * |
|
| 183 | + * @param object $profileuser WP_User object |
|
| 184 | + * @return array List all the possible display names for a certain User object |
|
| 185 | + */ |
|
| 186 | + public function generate_display_names( $profileuser ) { |
|
| 187 | + |
|
| 188 | + $public_display = array(); |
|
| 189 | + $public_display['nickname'] = $profileuser->nickname; |
|
| 190 | + $public_display['username'] = $profileuser->user_login; |
|
| 191 | + |
|
| 192 | + if ( !empty($profileuser->first_name) ) |
|
| 193 | + $public_display['firstname'] = $profileuser->first_name; |
|
| 194 | + |
|
| 195 | + if ( !empty($profileuser->last_name) ) |
|
| 196 | + $public_display['lastname'] = $profileuser->last_name; |
|
| 197 | + |
|
| 198 | + if ( !empty($profileuser->first_name) && !empty($profileuser->last_name) ) { |
|
| 199 | + $public_display['firstlast'] = $profileuser->first_name . ' ' . $profileuser->last_name; |
|
| 200 | + $public_display['lastfirst'] = $profileuser->last_name . ' ' . $profileuser->first_name; |
|
| 201 | + } |
|
| 202 | + |
|
| 203 | + $public_display = array_map( 'trim', $public_display ); |
|
| 204 | + $public_display = array_unique( $public_display ); |
|
| 205 | + |
|
| 206 | + return $public_display; |
|
| 207 | + } |
|
| 208 | + |
|
| 209 | + |
|
| 210 | + /** |
|
| 211 | + * Restore the Display Name and roles of a user after being updated by Gravity Forms User Registration Addon |
|
| 212 | + * |
|
| 213 | + * @see GFUser::update_user() |
|
| 214 | + * @param int $user_id WP User ID that was updated by Gravity Forms User Registration Addon |
|
| 215 | + * @param array $config Gravity Forms User Registration Addon form feed configuration |
|
| 216 | + * @param array $entry The Gravity Forms entry that was just updated |
|
| 217 | + * @param string $password User password |
|
| 218 | + * @return void |
|
| 219 | + */ |
|
| 220 | + public function restore_display_name( $user_id = 0, $config = array(), $entry = array(), $password = '' ) { |
|
| 221 | + |
|
| 222 | + /** |
|
| 223 | + * @filter `gravityview/edit_entry/restore_display_name` Whether display names should be restored to before updating an entry. |
|
| 224 | + * Otherwise, display names will be reset to the format specified in Gravity Forms User Registration "Update" feed |
|
| 225 | + * @since 1.14.4 |
|
| 226 | + * @param boolean $restore_display_name Restore Display Name? Default: true |
|
| 227 | + */ |
|
| 228 | + $restore_display_name = apply_filters( 'gravityview/edit_entry/restore_display_name', true ); |
|
| 229 | + |
|
| 230 | + $is_update_feed = ( $config && rgars( $config, 'meta/feed_type') === 'update' ); |
|
| 231 | + |
|
| 232 | + /** |
|
| 233 | + * Don't restore display name: |
|
| 234 | + * - either disabled, |
|
| 235 | + * - or it is an Update feed (we only care about Create feed) |
|
| 236 | + * - or we don't need as we found the correct format before updating user. |
|
| 237 | + * @since 1.14.4 |
|
| 238 | + */ |
|
| 239 | + if( ! $restore_display_name || $is_update_feed || is_null( $this->_user_before_update ) ) { |
|
| 240 | + return; |
|
| 241 | + } |
|
| 242 | + |
|
| 243 | + $user_after_update = get_userdata( $user_id ); |
|
| 244 | + |
|
| 245 | + $restored_user = $user_after_update; |
|
| 246 | + |
|
| 247 | + // Restore previous display_name |
|
| 248 | + $restored_user->display_name = $this->_user_before_update->display_name; |
|
| 249 | + |
|
| 250 | + // Don't have WP update the password. |
|
| 251 | + unset( $restored_user->data->user_pass, $restored_user->user_pass ); |
|
| 252 | + |
|
| 253 | + /** |
|
| 254 | + * Modify the user data after updated by Gravity Forms User Registration but before restored by GravityView |
|
| 255 | + * @since 1.14 |
|
| 256 | + * @param WP_User $restored_user The user with restored details about to be updated by wp_update_user() |
|
| 257 | + * @param WP_User $user_before_update The user before being updated by Gravity Forms User Registration |
|
| 258 | + * @param WP_User $user_after_update The user after being updated by Gravity Forms User Registration |
|
| 259 | + * @param array $entry The Gravity Forms entry that was just updated |
|
| 260 | + */ |
|
| 261 | + $restored_user = apply_filters( 'gravityview/edit_entry/user_registration/restored_user', $restored_user, $this->_user_before_update, $user_after_update, $entry ); |
|
| 262 | + |
|
| 263 | + $updated = wp_update_user( $restored_user ); |
|
| 264 | + |
|
| 265 | + if( is_wp_error( $updated ) ) { |
|
| 266 | + do_action('gravityview_log_error', __METHOD__ . sprintf( ' - There was an error updating user #%d details', $user_id ), $updated ); |
|
| 267 | + } else { |
|
| 268 | + do_action('gravityview_log_debug', __METHOD__ . sprintf( ' - User #%d details restored', $user_id ) ); |
|
| 269 | + } |
|
| 270 | + |
|
| 271 | + $this->_user_before_update = null; |
|
| 272 | + |
|
| 273 | + unset( $updated, $restored_user, $user_after_update ); |
|
| 274 | + } |
|
| 275 | 275 | |
| 276 | 276 | } //end class |
@@ -43,8 +43,8 @@ discard block |
||
| 43 | 43 | * @since 1.11 |
| 44 | 44 | * @param boolean $boolean Whether to trigger update on user registration (default: true) |
| 45 | 45 | */ |
| 46 | - if( apply_filters( 'gravityview/edit_entry/user_registration/trigger_update', true ) ) { |
|
| 47 | - add_action( 'gravityview/edit_entry/after_update' , array( $this, 'update_user' ), 10, 2 ); |
|
| 46 | + if ( apply_filters( 'gravityview/edit_entry/user_registration/trigger_update', true ) ) { |
|
| 47 | + add_action( 'gravityview/edit_entry/after_update', array( $this, 'update_user' ), 10, 2 ); |
|
| 48 | 48 | |
| 49 | 49 | // last resort in case the current user display name don't match any of the defaults |
| 50 | 50 | add_action( 'gform_user_updated', array( $this, 'restore_display_name' ), 10, 4 ); |
@@ -62,14 +62,14 @@ discard block |
||
| 62 | 62 | */ |
| 63 | 63 | public function update_user( $form = array(), $entry_id = 0 ) { |
| 64 | 64 | |
| 65 | - if( !class_exists( 'GFAPI' ) || !class_exists( 'GFUser' ) || empty( $entry_id ) ) { |
|
| 65 | + if ( ! class_exists( 'GFAPI' ) || ! class_exists( 'GFUser' ) || empty( $entry_id ) ) { |
|
| 66 | 66 | return; |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | // support for GF User Registration 3.x |
| 70 | - $gf_user_3 = class_exists('GF_User_Registration') ? true : false; |
|
| 70 | + $gf_user_3 = class_exists( 'GF_User_Registration' ) ? true : false; |
|
| 71 | 71 | |
| 72 | - if( $gf_user_3 ) { |
|
| 72 | + if ( $gf_user_3 ) { |
|
| 73 | 73 | $gf_user_registration = GF_User_Registration::get_instance(); |
| 74 | 74 | } |
| 75 | 75 | |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | /** |
| 87 | 87 | * @since 1.14 |
| 88 | 88 | */ |
| 89 | - if( $gf_user_3 ) { |
|
| 89 | + if ( $gf_user_3 ) { |
|
| 90 | 90 | $config = $gf_user_registration->get_single_submission_feed( $entry, $form ); |
| 91 | 91 | } else { |
| 92 | 92 | $config = GFUser::get_active_config( $form, $entry ); |
@@ -102,15 +102,15 @@ discard block |
||
| 102 | 102 | */ |
| 103 | 103 | $preserve_role = apply_filters( 'gravityview/edit_entry/user_registration/preserve_role', true, $config, $form, $entry ); |
| 104 | 104 | |
| 105 | - if( $preserve_role ) { |
|
| 106 | - $config['meta']['role'] = 'gfur_preserve_role'; |
|
| 105 | + if ( $preserve_role ) { |
|
| 106 | + $config[ 'meta' ][ 'role' ] = 'gfur_preserve_role'; |
|
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | /** |
| 110 | 110 | * Make sure the current display name is not changed with the update user method. |
| 111 | 111 | * @since 1.15 |
| 112 | 112 | */ |
| 113 | - $config['meta']['displayname'] = $this->match_current_display_name( $entry['created_by'] ); |
|
| 113 | + $config[ 'meta' ][ 'displayname' ] = $this->match_current_display_name( $entry[ 'created_by' ] ); |
|
| 114 | 114 | |
| 115 | 115 | |
| 116 | 116 | /** |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | $is_create_feed = ( $config && rgars( $config, $feed_pos ) === 'create' ); |
| 128 | 128 | |
| 129 | 129 | // Only update if it's a create feed |
| 130 | - if( ! $is_create_feed ) { |
|
| 130 | + if ( ! $is_create_feed ) { |
|
| 131 | 131 | return; |
| 132 | 132 | } |
| 133 | 133 | |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | add_filter( 'send_email_change_email', '__return_false', 3 ); |
| 137 | 137 | |
| 138 | 138 | // Trigger the User Registration update user method |
| 139 | - if( $gf_user_3 ) { |
|
| 139 | + if ( $gf_user_3 ) { |
|
| 140 | 140 | $gf_user_registration->update_user( $entry, $form, $config ); |
| 141 | 141 | } else { |
| 142 | 142 | GFUser::update_user( $entry, $form, $config ); |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | |
| 167 | 167 | // In case we can't find the current display name format, or it is the 'nickname' format (which Gravity Forms doesn't support) |
| 168 | 168 | // trigger last resort method at the 'gform_user_updated' hook |
| 169 | - if( false === $format || 'nickname' === $format ) { |
|
| 169 | + if ( false === $format || 'nickname' === $format ) { |
|
| 170 | 170 | $this->_user_before_update = $user; |
| 171 | 171 | $format = 'nickname'; |
| 172 | 172 | } |
@@ -186,18 +186,18 @@ discard block |
||
| 186 | 186 | public function generate_display_names( $profileuser ) { |
| 187 | 187 | |
| 188 | 188 | $public_display = array(); |
| 189 | - $public_display['nickname'] = $profileuser->nickname; |
|
| 190 | - $public_display['username'] = $profileuser->user_login; |
|
| 189 | + $public_display[ 'nickname' ] = $profileuser->nickname; |
|
| 190 | + $public_display[ 'username' ] = $profileuser->user_login; |
|
| 191 | 191 | |
| 192 | - if ( !empty($profileuser->first_name) ) |
|
| 193 | - $public_display['firstname'] = $profileuser->first_name; |
|
| 192 | + if ( ! empty( $profileuser->first_name ) ) |
|
| 193 | + $public_display[ 'firstname' ] = $profileuser->first_name; |
|
| 194 | 194 | |
| 195 | - if ( !empty($profileuser->last_name) ) |
|
| 196 | - $public_display['lastname'] = $profileuser->last_name; |
|
| 195 | + if ( ! empty( $profileuser->last_name ) ) |
|
| 196 | + $public_display[ 'lastname' ] = $profileuser->last_name; |
|
| 197 | 197 | |
| 198 | - if ( !empty($profileuser->first_name) && !empty($profileuser->last_name) ) { |
|
| 199 | - $public_display['firstlast'] = $profileuser->first_name . ' ' . $profileuser->last_name; |
|
| 200 | - $public_display['lastfirst'] = $profileuser->last_name . ' ' . $profileuser->first_name; |
|
| 198 | + if ( ! empty( $profileuser->first_name ) && ! empty( $profileuser->last_name ) ) { |
|
| 199 | + $public_display[ 'firstlast' ] = $profileuser->first_name . ' ' . $profileuser->last_name; |
|
| 200 | + $public_display[ 'lastfirst' ] = $profileuser->last_name . ' ' . $profileuser->first_name; |
|
| 201 | 201 | } |
| 202 | 202 | |
| 203 | 203 | $public_display = array_map( 'trim', $public_display ); |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | */ |
| 228 | 228 | $restore_display_name = apply_filters( 'gravityview/edit_entry/restore_display_name', true ); |
| 229 | 229 | |
| 230 | - $is_update_feed = ( $config && rgars( $config, 'meta/feed_type') === 'update' ); |
|
| 230 | + $is_update_feed = ( $config && rgars( $config, 'meta/feed_type' ) === 'update' ); |
|
| 231 | 231 | |
| 232 | 232 | /** |
| 233 | 233 | * Don't restore display name: |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | * - or we don't need as we found the correct format before updating user. |
| 237 | 237 | * @since 1.14.4 |
| 238 | 238 | */ |
| 239 | - if( ! $restore_display_name || $is_update_feed || is_null( $this->_user_before_update ) ) { |
|
| 239 | + if ( ! $restore_display_name || $is_update_feed || is_null( $this->_user_before_update ) ) { |
|
| 240 | 240 | return; |
| 241 | 241 | } |
| 242 | 242 | |
@@ -262,10 +262,10 @@ discard block |
||
| 262 | 262 | |
| 263 | 263 | $updated = wp_update_user( $restored_user ); |
| 264 | 264 | |
| 265 | - if( is_wp_error( $updated ) ) { |
|
| 266 | - do_action('gravityview_log_error', __METHOD__ . sprintf( ' - There was an error updating user #%d details', $user_id ), $updated ); |
|
| 265 | + if ( is_wp_error( $updated ) ) { |
|
| 266 | + do_action( 'gravityview_log_error', __METHOD__ . sprintf( ' - There was an error updating user #%d details', $user_id ), $updated ); |
|
| 267 | 267 | } else { |
| 268 | - do_action('gravityview_log_debug', __METHOD__ . sprintf( ' - User #%d details restored', $user_id ) ); |
|
| 268 | + do_action( 'gravityview_log_debug', __METHOD__ . sprintf( ' - User #%d details restored', $user_id ) ); |
|
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | $this->_user_before_update = null; |
@@ -18,80 +18,80 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | class GravityView_Edit_Entry { |
| 20 | 20 | |
| 21 | - /** |
|
| 22 | - * @var string |
|
| 23 | - */ |
|
| 21 | + /** |
|
| 22 | + * @var string |
|
| 23 | + */ |
|
| 24 | 24 | static $file; |
| 25 | 25 | |
| 26 | 26 | static $instance; |
| 27 | 27 | |
| 28 | - /** |
|
| 29 | - * Component instances. |
|
| 30 | - * @var array |
|
| 31 | - */ |
|
| 32 | - public $instances = array(); |
|
| 28 | + /** |
|
| 29 | + * Component instances. |
|
| 30 | + * @var array |
|
| 31 | + */ |
|
| 32 | + public $instances = array(); |
|
| 33 | 33 | |
| 34 | 34 | |
| 35 | 35 | function __construct() { |
| 36 | 36 | |
| 37 | - self::$file = plugin_dir_path( __FILE__ ); |
|
| 37 | + self::$file = plugin_dir_path( __FILE__ ); |
|
| 38 | 38 | |
| 39 | - if( is_admin() ) { |
|
| 40 | - $this->load_components( 'admin' ); |
|
| 41 | - } |
|
| 39 | + if( is_admin() ) { |
|
| 40 | + $this->load_components( 'admin' ); |
|
| 41 | + } |
|
| 42 | 42 | |
| 43 | 43 | |
| 44 | - $this->load_components( 'render' ); |
|
| 44 | + $this->load_components( 'render' ); |
|
| 45 | 45 | |
| 46 | - // If GF User Registration Add-on exists |
|
| 47 | - $this->load_components( 'user-registration' ); |
|
| 46 | + // If GF User Registration Add-on exists |
|
| 47 | + $this->load_components( 'user-registration' ); |
|
| 48 | 48 | |
| 49 | - $this->add_hooks(); |
|
| 49 | + $this->add_hooks(); |
|
| 50 | 50 | |
| 51 | 51 | // Process hooks for addons that may or may not be present |
| 52 | 52 | $this->addon_specific_hooks(); |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | |
| 56 | - static function getInstance() { |
|
| 56 | + static function getInstance() { |
|
| 57 | 57 | |
| 58 | - if( empty( self::$instance ) ) { |
|
| 59 | - self::$instance = new GravityView_Edit_Entry; |
|
| 60 | - } |
|
| 58 | + if( empty( self::$instance ) ) { |
|
| 59 | + self::$instance = new GravityView_Edit_Entry; |
|
| 60 | + } |
|
| 61 | 61 | |
| 62 | - return self::$instance; |
|
| 63 | - } |
|
| 62 | + return self::$instance; |
|
| 63 | + } |
|
| 64 | 64 | |
| 65 | 65 | |
| 66 | - private function load_components( $component ) { |
|
| 66 | + private function load_components( $component ) { |
|
| 67 | 67 | |
| 68 | - $dir = trailingslashit( self::$file ); |
|
| 68 | + $dir = trailingslashit( self::$file ); |
|
| 69 | 69 | |
| 70 | - $filename = $dir . 'class-edit-entry-' . $component . '.php'; |
|
| 71 | - $classname = 'GravityView_Edit_Entry_' . str_replace( ' ', '_', ucwords( str_replace( '-', ' ', $component ) ) ); |
|
| 70 | + $filename = $dir . 'class-edit-entry-' . $component . '.php'; |
|
| 71 | + $classname = 'GravityView_Edit_Entry_' . str_replace( ' ', '_', ucwords( str_replace( '-', ' ', $component ) ) ); |
|
| 72 | 72 | |
| 73 | - // Loads component and pass extension's instance so that component can |
|
| 74 | - // talk each other. |
|
| 75 | - require_once $filename; |
|
| 76 | - $this->instances[ $component ] = new $classname( $this ); |
|
| 77 | - $this->instances[ $component ]->load(); |
|
| 73 | + // Loads component and pass extension's instance so that component can |
|
| 74 | + // talk each other. |
|
| 75 | + require_once $filename; |
|
| 76 | + $this->instances[ $component ] = new $classname( $this ); |
|
| 77 | + $this->instances[ $component ]->load(); |
|
| 78 | 78 | |
| 79 | - } |
|
| 79 | + } |
|
| 80 | 80 | |
| 81 | - private function add_hooks() { |
|
| 81 | + private function add_hooks() { |
|
| 82 | 82 | |
| 83 | - // Add front-end access to Gravity Forms delete file action |
|
| 84 | - add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'RGForms', 'delete_file') ); |
|
| 83 | + // Add front-end access to Gravity Forms delete file action |
|
| 84 | + add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'RGForms', 'delete_file') ); |
|
| 85 | 85 | |
| 86 | - // Make sure this hook is run for non-admins |
|
| 87 | - add_action( 'wp_ajax_rg_delete_file', array( 'RGForms', 'delete_file') ); |
|
| 86 | + // Make sure this hook is run for non-admins |
|
| 87 | + add_action( 'wp_ajax_rg_delete_file', array( 'RGForms', 'delete_file') ); |
|
| 88 | 88 | |
| 89 | - add_filter( 'gravityview_blacklist_field_types', array( $this, 'modify_field_blacklist' ), 10, 2 ); |
|
| 89 | + add_filter( 'gravityview_blacklist_field_types', array( $this, 'modify_field_blacklist' ), 10, 2 ); |
|
| 90 | 90 | |
| 91 | - // add template path to check for field |
|
| 92 | - add_filter( 'gravityview_template_paths', array( $this, 'add_template_path' ) ); |
|
| 91 | + // add template path to check for field |
|
| 92 | + add_filter( 'gravityview_template_paths', array( $this, 'add_template_path' ) ); |
|
| 93 | 93 | |
| 94 | - } |
|
| 94 | + } |
|
| 95 | 95 | |
| 96 | 96 | /** |
| 97 | 97 | * Trigger hooks that are normally run in the admin for Addons, but need to be triggered manually because we're not in the admin |
@@ -105,75 +105,75 @@ discard block |
||
| 105 | 105 | |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | - /** |
|
| 109 | - * Include this extension templates path |
|
| 110 | - * @param array $file_paths List of template paths ordered |
|
| 111 | - */ |
|
| 112 | - public function add_template_path( $file_paths ) { |
|
| 113 | - |
|
| 114 | - // Index 100 is the default GravityView template path. |
|
| 115 | - $file_paths[ 110 ] = self::$file; |
|
| 116 | - |
|
| 117 | - return $file_paths; |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - /** |
|
| 121 | - * |
|
| 122 | - * Return a well formatted nonce key according to GravityView Edit Entry protocol |
|
| 123 | - * |
|
| 124 | - * @param $view_id int GravityView view id |
|
| 125 | - * @param $form_id int Gravity Forms form id |
|
| 126 | - * @param $entry_id int Gravity Forms entry id |
|
| 127 | - * @return string |
|
| 128 | - */ |
|
| 129 | - public static function get_nonce_key( $view_id, $form_id, $entry_id ) { |
|
| 130 | - return sprintf( 'edit_%d_%d_%d', $view_id, $form_id, $entry_id ); |
|
| 131 | - } |
|
| 132 | - |
|
| 133 | - |
|
| 134 | - /** |
|
| 135 | - * The edit entry link creates a secure link with a nonce |
|
| 136 | - * |
|
| 137 | - * It also mimics the URL structure Gravity Forms expects to have so that |
|
| 138 | - * it formats the display of the edit form like it does in the backend, like |
|
| 139 | - * "You can edit this post from the post page" fields, for example. |
|
| 140 | - * |
|
| 141 | - * @param $entry array Gravity Forms entry object |
|
| 142 | - * @param $view_id int GravityView view id |
|
| 143 | - * @param $post_id int GravityView Post ID where View may be embedded {@since 1.9.2} |
|
| 144 | - * @param string|array $field_values Parameters to pass in to the Edit Entry form to prefill data. Uses the same format as Gravity Forms "Allow field to be populated dynamically" {@since 1.9.2} {@see https://www.gravityhelp.com/documentation/article/allow-field-to-be-populated-dynamically/ } |
|
| 145 | - * @return string |
|
| 146 | - */ |
|
| 147 | - public static function get_edit_link( $entry, $view_id, $post_id = null, $field_values = '' ) { |
|
| 148 | - |
|
| 149 | - $nonce_key = self::get_nonce_key( $view_id, $entry['form_id'], $entry['id'] ); |
|
| 150 | - |
|
| 151 | - $base = gv_entry_link( $entry, $post_id ); |
|
| 152 | - |
|
| 153 | - $url = add_query_arg( array( |
|
| 154 | - 'page' => 'gf_entries', // Needed for GFForms::get_page() |
|
| 155 | - 'view' => 'entry', // Needed for GFForms::get_page() |
|
| 156 | - 'edit' => wp_create_nonce( $nonce_key ) |
|
| 157 | - ), $base ); |
|
| 158 | - |
|
| 159 | - /** |
|
| 160 | - * Allow passing params to dynamically populate entry with values |
|
| 161 | - * @since 1.9.2 |
|
| 162 | - */ |
|
| 163 | - if( !empty( $field_values ) ) { |
|
| 164 | - |
|
| 165 | - if( is_array( $field_values ) ) { |
|
| 166 | - // If already an array, no parse_str() needed |
|
| 167 | - $params = $field_values; |
|
| 168 | - } else { |
|
| 169 | - parse_str( $field_values, $params ); |
|
| 170 | - } |
|
| 171 | - |
|
| 172 | - $url = add_query_arg( $params, $url ); |
|
| 173 | - } |
|
| 174 | - |
|
| 175 | - return $url; |
|
| 176 | - } |
|
| 108 | + /** |
|
| 109 | + * Include this extension templates path |
|
| 110 | + * @param array $file_paths List of template paths ordered |
|
| 111 | + */ |
|
| 112 | + public function add_template_path( $file_paths ) { |
|
| 113 | + |
|
| 114 | + // Index 100 is the default GravityView template path. |
|
| 115 | + $file_paths[ 110 ] = self::$file; |
|
| 116 | + |
|
| 117 | + return $file_paths; |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + /** |
|
| 121 | + * |
|
| 122 | + * Return a well formatted nonce key according to GravityView Edit Entry protocol |
|
| 123 | + * |
|
| 124 | + * @param $view_id int GravityView view id |
|
| 125 | + * @param $form_id int Gravity Forms form id |
|
| 126 | + * @param $entry_id int Gravity Forms entry id |
|
| 127 | + * @return string |
|
| 128 | + */ |
|
| 129 | + public static function get_nonce_key( $view_id, $form_id, $entry_id ) { |
|
| 130 | + return sprintf( 'edit_%d_%d_%d', $view_id, $form_id, $entry_id ); |
|
| 131 | + } |
|
| 132 | + |
|
| 133 | + |
|
| 134 | + /** |
|
| 135 | + * The edit entry link creates a secure link with a nonce |
|
| 136 | + * |
|
| 137 | + * It also mimics the URL structure Gravity Forms expects to have so that |
|
| 138 | + * it formats the display of the edit form like it does in the backend, like |
|
| 139 | + * "You can edit this post from the post page" fields, for example. |
|
| 140 | + * |
|
| 141 | + * @param $entry array Gravity Forms entry object |
|
| 142 | + * @param $view_id int GravityView view id |
|
| 143 | + * @param $post_id int GravityView Post ID where View may be embedded {@since 1.9.2} |
|
| 144 | + * @param string|array $field_values Parameters to pass in to the Edit Entry form to prefill data. Uses the same format as Gravity Forms "Allow field to be populated dynamically" {@since 1.9.2} {@see https://www.gravityhelp.com/documentation/article/allow-field-to-be-populated-dynamically/ } |
|
| 145 | + * @return string |
|
| 146 | + */ |
|
| 147 | + public static function get_edit_link( $entry, $view_id, $post_id = null, $field_values = '' ) { |
|
| 148 | + |
|
| 149 | + $nonce_key = self::get_nonce_key( $view_id, $entry['form_id'], $entry['id'] ); |
|
| 150 | + |
|
| 151 | + $base = gv_entry_link( $entry, $post_id ); |
|
| 152 | + |
|
| 153 | + $url = add_query_arg( array( |
|
| 154 | + 'page' => 'gf_entries', // Needed for GFForms::get_page() |
|
| 155 | + 'view' => 'entry', // Needed for GFForms::get_page() |
|
| 156 | + 'edit' => wp_create_nonce( $nonce_key ) |
|
| 157 | + ), $base ); |
|
| 158 | + |
|
| 159 | + /** |
|
| 160 | + * Allow passing params to dynamically populate entry with values |
|
| 161 | + * @since 1.9.2 |
|
| 162 | + */ |
|
| 163 | + if( !empty( $field_values ) ) { |
|
| 164 | + |
|
| 165 | + if( is_array( $field_values ) ) { |
|
| 166 | + // If already an array, no parse_str() needed |
|
| 167 | + $params = $field_values; |
|
| 168 | + } else { |
|
| 169 | + parse_str( $field_values, $params ); |
|
| 170 | + } |
|
| 171 | + |
|
| 172 | + $url = add_query_arg( $params, $url ); |
|
| 173 | + } |
|
| 174 | + |
|
| 175 | + return $url; |
|
| 176 | + } |
|
| 177 | 177 | |
| 178 | 178 | |
| 179 | 179 | /** |
@@ -209,81 +209,81 @@ discard block |
||
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | |
| 212 | - /** |
|
| 213 | - * checks if user has permissions to edit a specific entry |
|
| 214 | - * |
|
| 215 | - * Needs to be used combined with GravityView_Edit_Entry::user_can_edit_entry for maximum security!! |
|
| 216 | - * |
|
| 217 | - * @param array $entry Gravity Forms entry array |
|
| 218 | - * @param int $view_id ID of the view you want to check visibility against {@since 1.9.2} |
|
| 219 | - * @return bool |
|
| 220 | - */ |
|
| 221 | - public static function check_user_cap_edit_entry( $entry, $view_id = 0 ) { |
|
| 212 | + /** |
|
| 213 | + * checks if user has permissions to edit a specific entry |
|
| 214 | + * |
|
| 215 | + * Needs to be used combined with GravityView_Edit_Entry::user_can_edit_entry for maximum security!! |
|
| 216 | + * |
|
| 217 | + * @param array $entry Gravity Forms entry array |
|
| 218 | + * @param int $view_id ID of the view you want to check visibility against {@since 1.9.2} |
|
| 219 | + * @return bool |
|
| 220 | + */ |
|
| 221 | + public static function check_user_cap_edit_entry( $entry, $view_id = 0 ) { |
|
| 222 | 222 | |
| 223 | - // No permission by default |
|
| 224 | - $user_can_edit = false; |
|
| 223 | + // No permission by default |
|
| 224 | + $user_can_edit = false; |
|
| 225 | 225 | |
| 226 | - // If they can edit any entries (as defined in Gravity Forms) |
|
| 227 | - // Or if they can edit other people's entries |
|
| 228 | - // Then we're good. |
|
| 229 | - if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry['id'] ) ) { |
|
| 226 | + // If they can edit any entries (as defined in Gravity Forms) |
|
| 227 | + // Or if they can edit other people's entries |
|
| 228 | + // Then we're good. |
|
| 229 | + if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry['id'] ) ) { |
|
| 230 | 230 | |
| 231 | - do_action('gravityview_log_debug', __METHOD__ . ' - User has ability to edit all entries.'); |
|
| 231 | + do_action('gravityview_log_debug', __METHOD__ . ' - User has ability to edit all entries.'); |
|
| 232 | 232 | |
| 233 | - $user_can_edit = true; |
|
| 233 | + $user_can_edit = true; |
|
| 234 | 234 | |
| 235 | - } else if( !isset( $entry['created_by'] ) ) { |
|
| 235 | + } else if( !isset( $entry['created_by'] ) ) { |
|
| 236 | 236 | |
| 237 | - do_action('gravityview_log_error', 'GravityView_Edit_Entry[check_user_cap_edit_entry] Entry `created_by` doesn\'t exist.'); |
|
| 237 | + do_action('gravityview_log_error', 'GravityView_Edit_Entry[check_user_cap_edit_entry] Entry `created_by` doesn\'t exist.'); |
|
| 238 | 238 | |
| 239 | - $user_can_edit = false; |
|
| 239 | + $user_can_edit = false; |
|
| 240 | 240 | |
| 241 | - } else { |
|
| 241 | + } else { |
|
| 242 | 242 | |
| 243 | - // get user_edit setting |
|
| 244 | - if( empty( $view_id ) || $view_id == GravityView_View::getInstance()->getViewId() ) { |
|
| 245 | - // if View ID not specified or is the current view |
|
| 246 | - $user_edit = GravityView_View::getInstance()->getAtts('user_edit'); |
|
| 247 | - } else { |
|
| 248 | - // in case is specified and not the current view |
|
| 249 | - $user_edit = GVCommon::get_template_setting( $view_id, 'user_edit' ); |
|
| 250 | - } |
|
| 243 | + // get user_edit setting |
|
| 244 | + if( empty( $view_id ) || $view_id == GravityView_View::getInstance()->getViewId() ) { |
|
| 245 | + // if View ID not specified or is the current view |
|
| 246 | + $user_edit = GravityView_View::getInstance()->getAtts('user_edit'); |
|
| 247 | + } else { |
|
| 248 | + // in case is specified and not the current view |
|
| 249 | + $user_edit = GVCommon::get_template_setting( $view_id, 'user_edit' ); |
|
| 250 | + } |
|
| 251 | 251 | |
| 252 | - $current_user = wp_get_current_user(); |
|
| 252 | + $current_user = wp_get_current_user(); |
|
| 253 | 253 | |
| 254 | - // User edit is disabled |
|
| 255 | - if( empty( $user_edit ) ) { |
|
| 254 | + // User edit is disabled |
|
| 255 | + if( empty( $user_edit ) ) { |
|
| 256 | 256 | |
| 257 | - do_action('gravityview_log_debug', 'GravityView_Edit_Entry[check_user_cap_edit_entry] User Edit is disabled. Returning false.' ); |
|
| 257 | + do_action('gravityview_log_debug', 'GravityView_Edit_Entry[check_user_cap_edit_entry] User Edit is disabled. Returning false.' ); |
|
| 258 | 258 | |
| 259 | - $user_can_edit = false; |
|
| 260 | - } |
|
| 259 | + $user_can_edit = false; |
|
| 260 | + } |
|
| 261 | 261 | |
| 262 | - // User edit is enabled and the logged-in user is the same as the user who created the entry. We're good. |
|
| 263 | - else if( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry['created_by'] ) ) { |
|
| 262 | + // User edit is enabled and the logged-in user is the same as the user who created the entry. We're good. |
|
| 263 | + else if( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry['created_by'] ) ) { |
|
| 264 | 264 | |
| 265 | - do_action('gravityview_log_debug', sprintf( 'GravityView_Edit_Entry[check_user_cap_edit_entry] User %s created the entry.', $current_user->ID ) ); |
|
| 265 | + do_action('gravityview_log_debug', sprintf( 'GravityView_Edit_Entry[check_user_cap_edit_entry] User %s created the entry.', $current_user->ID ) ); |
|
| 266 | 266 | |
| 267 | - $user_can_edit = true; |
|
| 267 | + $user_can_edit = true; |
|
| 268 | 268 | |
| 269 | - } else if( ! is_user_logged_in() ) { |
|
| 269 | + } else if( ! is_user_logged_in() ) { |
|
| 270 | 270 | |
| 271 | - do_action( 'gravityview_log_debug', __METHOD__ . ' No user defined; edit entry requires logged in user' ); |
|
| 272 | - } |
|
| 271 | + do_action( 'gravityview_log_debug', __METHOD__ . ' No user defined; edit entry requires logged in user' ); |
|
| 272 | + } |
|
| 273 | 273 | |
| 274 | - } |
|
| 274 | + } |
|
| 275 | 275 | |
| 276 | - /** |
|
| 277 | - * @filter `gravityview/edit_entry/user_can_edit_entry` Modify whether user can edit an entry. |
|
| 278 | - * @since 1.15 Added `$entry` and `$view_id` parameters |
|
| 279 | - * @param[in,out] boolean $user_can_edit Can the current user edit the current entry? (Default: false) |
|
| 280 | - * @param[in] array $entry Gravity Forms entry array {@since 1.15} |
|
| 281 | - * @param[in] int $view_id ID of the view you want to check visibility against {@since 1.15} |
|
| 282 | - */ |
|
| 283 | - $user_can_edit = apply_filters( 'gravityview/edit_entry/user_can_edit_entry', $user_can_edit, $entry, $view_id ); |
|
| 276 | + /** |
|
| 277 | + * @filter `gravityview/edit_entry/user_can_edit_entry` Modify whether user can edit an entry. |
|
| 278 | + * @since 1.15 Added `$entry` and `$view_id` parameters |
|
| 279 | + * @param[in,out] boolean $user_can_edit Can the current user edit the current entry? (Default: false) |
|
| 280 | + * @param[in] array $entry Gravity Forms entry array {@since 1.15} |
|
| 281 | + * @param[in] int $view_id ID of the view you want to check visibility against {@since 1.15} |
|
| 282 | + */ |
|
| 283 | + $user_can_edit = apply_filters( 'gravityview/edit_entry/user_can_edit_entry', $user_can_edit, $entry, $view_id ); |
|
| 284 | 284 | |
| 285 | - return (bool)$user_can_edit; |
|
| 286 | - } |
|
| 285 | + return (bool)$user_can_edit; |
|
| 286 | + } |
|
| 287 | 287 | |
| 288 | 288 | |
| 289 | 289 | |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | |
| 37 | 37 | self::$file = plugin_dir_path( __FILE__ ); |
| 38 | 38 | |
| 39 | - if( is_admin() ) { |
|
| 39 | + if ( is_admin() ) { |
|
| 40 | 40 | $this->load_components( 'admin' ); |
| 41 | 41 | } |
| 42 | 42 | |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | |
| 56 | 56 | static function getInstance() { |
| 57 | 57 | |
| 58 | - if( empty( self::$instance ) ) { |
|
| 58 | + if ( empty( self::$instance ) ) { |
|
| 59 | 59 | self::$instance = new GravityView_Edit_Entry; |
| 60 | 60 | } |
| 61 | 61 | |
@@ -81,10 +81,10 @@ discard block |
||
| 81 | 81 | private function add_hooks() { |
| 82 | 82 | |
| 83 | 83 | // Add front-end access to Gravity Forms delete file action |
| 84 | - add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'RGForms', 'delete_file') ); |
|
| 84 | + add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'RGForms', 'delete_file' ) ); |
|
| 85 | 85 | |
| 86 | 86 | // Make sure this hook is run for non-admins |
| 87 | - add_action( 'wp_ajax_rg_delete_file', array( 'RGForms', 'delete_file') ); |
|
| 87 | + add_action( 'wp_ajax_rg_delete_file', array( 'RGForms', 'delete_file' ) ); |
|
| 88 | 88 | |
| 89 | 89 | add_filter( 'gravityview_blacklist_field_types', array( $this, 'modify_field_blacklist' ), 10, 2 ); |
| 90 | 90 | |
@@ -99,8 +99,8 @@ discard block |
||
| 99 | 99 | */ |
| 100 | 100 | private function addon_specific_hooks() { |
| 101 | 101 | |
| 102 | - if( class_exists( 'GFSignature' ) && is_callable( array( 'GFSignature', 'get_instance' ) ) ) { |
|
| 103 | - add_filter('gform_admin_pre_render', array( GFSignature::get_instance(), 'edit_lead_script')); |
|
| 102 | + if ( class_exists( 'GFSignature' ) && is_callable( array( 'GFSignature', 'get_instance' ) ) ) { |
|
| 103 | + add_filter( 'gform_admin_pre_render', array( GFSignature::get_instance(), 'edit_lead_script' ) ); |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | } |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | */ |
| 147 | 147 | public static function get_edit_link( $entry, $view_id, $post_id = null, $field_values = '' ) { |
| 148 | 148 | |
| 149 | - $nonce_key = self::get_nonce_key( $view_id, $entry['form_id'], $entry['id'] ); |
|
| 149 | + $nonce_key = self::get_nonce_key( $view_id, $entry[ 'form_id' ], $entry[ 'id' ] ); |
|
| 150 | 150 | |
| 151 | 151 | $base = gv_entry_link( $entry, $post_id ); |
| 152 | 152 | |
@@ -160,9 +160,9 @@ discard block |
||
| 160 | 160 | * Allow passing params to dynamically populate entry with values |
| 161 | 161 | * @since 1.9.2 |
| 162 | 162 | */ |
| 163 | - if( !empty( $field_values ) ) { |
|
| 163 | + if ( ! empty( $field_values ) ) { |
|
| 164 | 164 | |
| 165 | - if( is_array( $field_values ) ) { |
|
| 165 | + if ( is_array( $field_values ) ) { |
|
| 166 | 166 | // If already an array, no parse_str() needed |
| 167 | 167 | $params = $field_values; |
| 168 | 168 | } else { |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | */ |
| 185 | 185 | public function modify_field_blacklist( $fields = array(), $context = NULL ) { |
| 186 | 186 | |
| 187 | - if( empty( $context ) || $context !== 'edit' ) { |
|
| 187 | + if ( empty( $context ) || $context !== 'edit' ) { |
|
| 188 | 188 | return $fields; |
| 189 | 189 | } |
| 190 | 190 | |
@@ -226,24 +226,24 @@ discard block |
||
| 226 | 226 | // If they can edit any entries (as defined in Gravity Forms) |
| 227 | 227 | // Or if they can edit other people's entries |
| 228 | 228 | // Then we're good. |
| 229 | - if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry['id'] ) ) { |
|
| 229 | + if ( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry[ 'id' ] ) ) { |
|
| 230 | 230 | |
| 231 | - do_action('gravityview_log_debug', __METHOD__ . ' - User has ability to edit all entries.'); |
|
| 231 | + do_action( 'gravityview_log_debug', __METHOD__ . ' - User has ability to edit all entries.' ); |
|
| 232 | 232 | |
| 233 | 233 | $user_can_edit = true; |
| 234 | 234 | |
| 235 | - } else if( !isset( $entry['created_by'] ) ) { |
|
| 235 | + } else if ( ! isset( $entry[ 'created_by' ] ) ) { |
|
| 236 | 236 | |
| 237 | - do_action('gravityview_log_error', 'GravityView_Edit_Entry[check_user_cap_edit_entry] Entry `created_by` doesn\'t exist.'); |
|
| 237 | + do_action( 'gravityview_log_error', 'GravityView_Edit_Entry[check_user_cap_edit_entry] Entry `created_by` doesn\'t exist.' ); |
|
| 238 | 238 | |
| 239 | 239 | $user_can_edit = false; |
| 240 | 240 | |
| 241 | 241 | } else { |
| 242 | 242 | |
| 243 | 243 | // get user_edit setting |
| 244 | - if( empty( $view_id ) || $view_id == GravityView_View::getInstance()->getViewId() ) { |
|
| 244 | + if ( empty( $view_id ) || $view_id == GravityView_View::getInstance()->getViewId() ) { |
|
| 245 | 245 | // if View ID not specified or is the current view |
| 246 | - $user_edit = GravityView_View::getInstance()->getAtts('user_edit'); |
|
| 246 | + $user_edit = GravityView_View::getInstance()->getAtts( 'user_edit' ); |
|
| 247 | 247 | } else { |
| 248 | 248 | // in case is specified and not the current view |
| 249 | 249 | $user_edit = GVCommon::get_template_setting( $view_id, 'user_edit' ); |
@@ -252,21 +252,21 @@ discard block |
||
| 252 | 252 | $current_user = wp_get_current_user(); |
| 253 | 253 | |
| 254 | 254 | // User edit is disabled |
| 255 | - if( empty( $user_edit ) ) { |
|
| 255 | + if ( empty( $user_edit ) ) { |
|
| 256 | 256 | |
| 257 | - do_action('gravityview_log_debug', 'GravityView_Edit_Entry[check_user_cap_edit_entry] User Edit is disabled. Returning false.' ); |
|
| 257 | + do_action( 'gravityview_log_debug', 'GravityView_Edit_Entry[check_user_cap_edit_entry] User Edit is disabled. Returning false.' ); |
|
| 258 | 258 | |
| 259 | 259 | $user_can_edit = false; |
| 260 | 260 | } |
| 261 | 261 | |
| 262 | 262 | // User edit is enabled and the logged-in user is the same as the user who created the entry. We're good. |
| 263 | - else if( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry['created_by'] ) ) { |
|
| 263 | + else if ( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry[ 'created_by' ] ) ) { |
|
| 264 | 264 | |
| 265 | - do_action('gravityview_log_debug', sprintf( 'GravityView_Edit_Entry[check_user_cap_edit_entry] User %s created the entry.', $current_user->ID ) ); |
|
| 265 | + do_action( 'gravityview_log_debug', sprintf( 'GravityView_Edit_Entry[check_user_cap_edit_entry] User %s created the entry.', $current_user->ID ) ); |
|
| 266 | 266 | |
| 267 | 267 | $user_can_edit = true; |
| 268 | 268 | |
| 269 | - } else if( ! is_user_logged_in() ) { |
|
| 269 | + } else if ( ! is_user_logged_in() ) { |
|
| 270 | 270 | |
| 271 | 271 | do_action( 'gravityview_log_debug', __METHOD__ . ' No user defined; edit entry requires logged in user' ); |
| 272 | 272 | } |