@@ -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( 'GFForms', 'delete_file') ); |
|
| 84 | + add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'GFForms', 'delete_file' ) ); |
|
| 85 | 85 | |
| 86 | 86 | // Make sure this hook is run for non-admins |
| 87 | - add_action( 'wp_ajax_rg_delete_file', array( 'GFForms', 'delete_file') ); |
|
| 87 | + add_action( 'wp_ajax_rg_delete_file', array( 'GFForms', '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,15 +146,15 @@ 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 | - $base = gv_entry_link( $entry, $post_id ? : $view_id ); |
|
| 151 | + $base = gv_entry_link( $entry, $post_id ?: $view_id ); |
|
| 152 | 152 | |
| 153 | 153 | $url = add_query_arg( array( |
| 154 | 154 | 'edit' => wp_create_nonce( $nonce_key ) |
| 155 | 155 | ), $base ); |
| 156 | 156 | |
| 157 | - if( $post_id ) { |
|
| 157 | + if ( $post_id ) { |
|
| 158 | 158 | $url = add_query_arg( array( 'gvid' => $view_id ), $url ); |
| 159 | 159 | } |
| 160 | 160 | |
@@ -162,9 +162,9 @@ discard block |
||
| 162 | 162 | * Allow passing params to dynamically populate entry with values |
| 163 | 163 | * @since 1.9.2 |
| 164 | 164 | */ |
| 165 | - if( !empty( $field_values ) ) { |
|
| 165 | + if ( ! empty( $field_values ) ) { |
|
| 166 | 166 | |
| 167 | - if( is_array( $field_values ) ) { |
|
| 167 | + if ( is_array( $field_values ) ) { |
|
| 168 | 168 | // If already an array, no parse_str() needed |
| 169 | 169 | $params = $field_values; |
| 170 | 170 | } else { |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | */ |
| 186 | 186 | public function modify_field_blacklist( $fields = array(), $context = NULL ) { |
| 187 | 187 | |
| 188 | - if( empty( $context ) || $context !== 'edit' ) { |
|
| 188 | + if ( empty( $context ) || $context !== 'edit' ) { |
|
| 189 | 189 | return $fields; |
| 190 | 190 | } |
| 191 | 191 | |
@@ -246,25 +246,25 @@ discard block |
||
| 246 | 246 | // If they can edit any entries (as defined in Gravity Forms) |
| 247 | 247 | // Or if they can edit other people's entries |
| 248 | 248 | // Then we're good. |
| 249 | - if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry['id'] ) ) { |
|
| 249 | + if ( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry[ 'id' ] ) ) { |
|
| 250 | 250 | |
| 251 | 251 | gravityview()->log->debug( 'User has ability to edit all entries.' ); |
| 252 | 252 | |
| 253 | 253 | $user_can_edit = true; |
| 254 | 254 | |
| 255 | - } else if( !isset( $entry['created_by'] ) ) { |
|
| 255 | + } else if ( ! isset( $entry[ 'created_by' ] ) ) { |
|
| 256 | 256 | |
| 257 | - gravityview()->log->error( 'Entry `created_by` doesn\'t exist.'); |
|
| 257 | + gravityview()->log->error( 'Entry `created_by` doesn\'t exist.' ); |
|
| 258 | 258 | |
| 259 | 259 | $user_can_edit = false; |
| 260 | 260 | |
| 261 | 261 | } else { |
| 262 | 262 | |
| 263 | 263 | // get user_edit setting |
| 264 | - if( empty( $view_id ) || $view_id == GravityView_View::getInstance()->getViewId() ) { |
|
| 264 | + if ( empty( $view_id ) || $view_id == GravityView_View::getInstance()->getViewId() ) { |
|
| 265 | 265 | // if View ID not specified or is the current view |
| 266 | 266 | // @deprecated path |
| 267 | - $user_edit = GravityView_View::getInstance()->getAtts('user_edit'); |
|
| 267 | + $user_edit = GravityView_View::getInstance()->getAtts( 'user_edit' ); |
|
| 268 | 268 | } else { |
| 269 | 269 | // in case is specified and not the current view |
| 270 | 270 | $user_edit = GVCommon::get_template_setting( $view_id, 'user_edit' ); |
@@ -273,7 +273,7 @@ discard block |
||
| 273 | 273 | $current_user = wp_get_current_user(); |
| 274 | 274 | |
| 275 | 275 | // User edit is disabled |
| 276 | - if( empty( $user_edit ) ) { |
|
| 276 | + if ( empty( $user_edit ) ) { |
|
| 277 | 277 | |
| 278 | 278 | gravityview()->log->debug( 'User Edit is disabled. Returning false.' ); |
| 279 | 279 | |
@@ -281,13 +281,13 @@ discard block |
||
| 281 | 281 | } |
| 282 | 282 | |
| 283 | 283 | // User edit is enabled and the logged-in user is the same as the user who created the entry. We're good. |
| 284 | - else if( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry['created_by'] ) ) { |
|
| 284 | + else if ( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry[ 'created_by' ] ) ) { |
|
| 285 | 285 | |
| 286 | 286 | gravityview()->log->debug( 'User {user_id} created the entry.', array( 'user_id', $current_user->ID ) ); |
| 287 | 287 | |
| 288 | 288 | $user_can_edit = true; |
| 289 | 289 | |
| 290 | - } else if( ! is_user_logged_in() ) { |
|
| 290 | + } else if ( ! is_user_logged_in() ) { |
|
| 291 | 291 | |
| 292 | 292 | gravityview()->log->debug( 'No user defined; edit entry requires logged in user' ); |
| 293 | 293 | } |