@@ -66,20 +66,20 @@ discard block |
||
| 66 | 66 | |
| 67 | 67 | /** Load common & connector functions */ |
| 68 | 68 | require_once( GRAVITYVIEW_DIR . 'includes/helper-functions.php' ); |
| 69 | -require_once( GRAVITYVIEW_DIR . 'includes/class-common.php'); |
|
| 70 | -require_once( GRAVITYVIEW_DIR . 'includes/connector-functions.php'); |
|
| 69 | +require_once( GRAVITYVIEW_DIR . 'includes/class-common.php' ); |
|
| 70 | +require_once( GRAVITYVIEW_DIR . 'includes/connector-functions.php' ); |
|
| 71 | 71 | require_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-compatibility.php' ); |
| 72 | 72 | require_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-roles-capabilities.php' ); |
| 73 | 73 | require_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-admin-notices.php' ); |
| 74 | 74 | |
| 75 | 75 | /** Register Post Types and Rewrite Rules */ |
| 76 | -require_once( GRAVITYVIEW_DIR . 'includes/class-post-types.php'); |
|
| 76 | +require_once( GRAVITYVIEW_DIR . 'includes/class-post-types.php' ); |
|
| 77 | 77 | |
| 78 | 78 | /** Add Cache Class */ |
| 79 | -require_once( GRAVITYVIEW_DIR . 'includes/class-cache.php'); |
|
| 79 | +require_once( GRAVITYVIEW_DIR . 'includes/class-cache.php' ); |
|
| 80 | 80 | |
| 81 | 81 | /** Register hooks that are fired when the plugin is activated and deactivated. */ |
| 82 | -if( is_admin() ) { |
|
| 82 | +if ( is_admin() ) { |
|
| 83 | 83 | register_activation_hook( __FILE__, array( 'GravityView_Plugin', 'activate' ) ); |
| 84 | 84 | register_deactivation_hook( __FILE__, array( 'GravityView_Plugin', 'deactivate' ) ); |
| 85 | 85 | } |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | */ |
| 101 | 101 | public static function getInstance() { |
| 102 | 102 | |
| 103 | - if( empty( self::$instance ) ) { |
|
| 103 | + if ( empty( self::$instance ) ) { |
|
| 104 | 104 | self::$instance = new self; |
| 105 | 105 | } |
| 106 | 106 | |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | private function __construct() { |
| 111 | 111 | |
| 112 | 112 | |
| 113 | - if( ! GravityView_Compatibility::is_valid() ) { |
|
| 113 | + if ( ! GravityView_Compatibility::is_valid() ) { |
|
| 114 | 114 | return; |
| 115 | 115 | } |
| 116 | 116 | |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | */ |
| 140 | 140 | public function include_files() { |
| 141 | 141 | |
| 142 | - include_once( GRAVITYVIEW_DIR .'includes/class-admin.php' ); |
|
| 142 | + include_once( GRAVITYVIEW_DIR . 'includes/class-admin.php' ); |
|
| 143 | 143 | |
| 144 | 144 | // Load fields |
| 145 | 145 | include_once( GRAVITYVIEW_DIR . 'includes/fields/class-gravityview-fields.php' ); |
@@ -150,19 +150,19 @@ discard block |
||
| 150 | 150 | include_once( $gv_field_filename ); |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | - include_once( GRAVITYVIEW_DIR .'includes/class-gravityview-entry-notes.php' ); |
|
| 154 | - include_once( GRAVITYVIEW_DIR .'includes/load-plugin-and-theme-hooks.php' ); |
|
| 153 | + include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-entry-notes.php' ); |
|
| 154 | + include_once( GRAVITYVIEW_DIR . 'includes/load-plugin-and-theme-hooks.php' ); |
|
| 155 | 155 | |
| 156 | 156 | // Load Extensions |
| 157 | 157 | // @todo: Convert to a scan of the directory or a method where this all lives |
| 158 | - include_once( GRAVITYVIEW_DIR .'includes/extensions/edit-entry/class-edit-entry.php' ); |
|
| 159 | - include_once( GRAVITYVIEW_DIR .'includes/extensions/delete-entry/class-delete-entry.php' ); |
|
| 158 | + include_once( GRAVITYVIEW_DIR . 'includes/extensions/edit-entry/class-edit-entry.php' ); |
|
| 159 | + include_once( GRAVITYVIEW_DIR . 'includes/extensions/delete-entry/class-delete-entry.php' ); |
|
| 160 | 160 | |
| 161 | 161 | // Load WordPress Widgets |
| 162 | - include_once( GRAVITYVIEW_DIR .'includes/wordpress-widgets/register-wordpress-widgets.php' ); |
|
| 162 | + include_once( GRAVITYVIEW_DIR . 'includes/wordpress-widgets/register-wordpress-widgets.php' ); |
|
| 163 | 163 | |
| 164 | 164 | // Load GravityView Widgets |
| 165 | - include_once( GRAVITYVIEW_DIR .'includes/widgets/register-gravityview-widgets.php' ); |
|
| 165 | + include_once( GRAVITYVIEW_DIR . 'includes/widgets/register-gravityview-widgets.php' ); |
|
| 166 | 166 | |
| 167 | 167 | // Add oEmbed |
| 168 | 168 | include_once( GRAVITYVIEW_DIR . 'includes/class-oembed.php' ); |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | include_once( GRAVITYVIEW_DIR . 'includes/class-frontend-views.php' ); |
| 176 | 176 | include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-admin-bar.php' ); |
| 177 | 177 | include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-entry-list.php' ); |
| 178 | - include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-merge-tags.php'); /** @since 1.8.4 */ |
|
| 178 | + include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-merge-tags.php' ); /** @since 1.8.4 */ |
|
| 179 | 179 | include_once( GRAVITYVIEW_DIR . 'includes/class-data.php' ); |
| 180 | 180 | include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-shortcode.php' ); |
| 181 | 181 | include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-entry-link-shortcode.php' ); |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | * @return bool |
| 191 | 191 | */ |
| 192 | 192 | public static function is_network_activated() { |
| 193 | - return is_multisite() && ( function_exists('is_plugin_active_for_network') && is_plugin_active_for_network( 'gravityview/gravityview.php' ) ); |
|
| 193 | + return is_multisite() && ( function_exists( 'is_plugin_active_for_network' ) && is_plugin_active_for_network( 'gravityview/gravityview.php' ) ); |
|
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | * @since 1.7.5.1 |
| 256 | 256 | */ |
| 257 | 257 | public static function include_widget_class() { |
| 258 | - include_once( GRAVITYVIEW_DIR .'includes/widgets/class-gravityview-widget.php' ); |
|
| 258 | + include_once( GRAVITYVIEW_DIR . 'includes/widgets/class-gravityview-widget.php' ); |
|
| 259 | 259 | } |
| 260 | 260 | |
| 261 | 261 | |
@@ -276,7 +276,7 @@ discard block |
||
| 276 | 276 | } |
| 277 | 277 | if ( ! $loaded ) { |
| 278 | 278 | $locale = apply_filters( 'plugin_locale', get_locale(), 'gravityview' ); |
| 279 | - $mofile = dirname( __FILE__ ) . '/languages/gravityview-'. $locale .'.mo'; |
|
| 279 | + $mofile = dirname( __FILE__ ) . '/languages/gravityview-' . $locale . '.mo'; |
|
| 280 | 280 | load_textdomain( 'gravityview', $mofile ); |
| 281 | 281 | } |
| 282 | 282 | |
@@ -302,12 +302,12 @@ discard block |
||
| 302 | 302 | */ |
| 303 | 303 | public function frontend_actions() { |
| 304 | 304 | |
| 305 | - if( self::is_admin() ) { return; } |
|
| 305 | + if ( self::is_admin() ) { return; } |
|
| 306 | 306 | |
| 307 | 307 | include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-image.php' ); |
| 308 | - include_once( GRAVITYVIEW_DIR .'includes/class-template.php' ); |
|
| 309 | - include_once( GRAVITYVIEW_DIR .'includes/class-api.php' ); |
|
| 310 | - include_once( GRAVITYVIEW_DIR .'includes/class-frontend-views.php' ); |
|
| 308 | + include_once( GRAVITYVIEW_DIR . 'includes/class-template.php' ); |
|
| 309 | + include_once( GRAVITYVIEW_DIR . 'includes/class-api.php' ); |
|
| 310 | + include_once( GRAVITYVIEW_DIR . 'includes/class-frontend-views.php' ); |
|
| 311 | 311 | include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-change-entry-creator.php' ); |
| 312 | 312 | |
| 313 | 313 | |
@@ -332,8 +332,8 @@ discard block |
||
| 332 | 332 | */ |
| 333 | 333 | public static function get_default_widget_areas() { |
| 334 | 334 | $default_areas = array( |
| 335 | - array( '1-1' => array( array( 'areaid' => 'top', 'title' => __('Top', 'gravityview' ) , 'subtitle' => '' ) ) ), |
|
| 336 | - array( '1-2' => array( array( 'areaid' => 'left', 'title' => __('Left', 'gravityview') , 'subtitle' => '' ) ), '2-2' => array( array( 'areaid' => 'right', 'title' => __('Right', 'gravityview') , 'subtitle' => '' ) ) ), |
|
| 335 | + array( '1-1' => array( array( 'areaid' => 'top', 'title' => __( 'Top', 'gravityview' ), 'subtitle' => '' ) ) ), |
|
| 336 | + array( '1-2' => array( array( 'areaid' => 'left', 'title' => __( 'Left', 'gravityview' ), 'subtitle' => '' ) ), '2-2' => array( array( 'areaid' => 'right', 'title' => __( 'Right', 'gravityview' ), 'subtitle' => '' ) ) ), |
|
| 337 | 337 | ); |
| 338 | 338 | |
| 339 | 339 | /** |
@@ -351,7 +351,7 @@ discard block |
||
| 351 | 351 | * @param mixed $data Additional data to display |
| 352 | 352 | * @return void |
| 353 | 353 | */ |
| 354 | - public static function log_debug( $message, $data = null ){ |
|
| 354 | + public static function log_debug( $message, $data = null ) { |
|
| 355 | 355 | /** |
| 356 | 356 | * @action `gravityview_log_debug` Log a debug message that shows up in the Gravity Forms Logging Addon and also the Debug Bar plugin output |
| 357 | 357 | * @param string $message Message to display |
@@ -365,7 +365,7 @@ discard block |
||
| 365 | 365 | * @param string $message log message |
| 366 | 366 | * @return void |
| 367 | 367 | */ |
| 368 | - public static function log_error( $message, $data = null ){ |
|
| 368 | + public static function log_error( $message, $data = null ) { |
|
| 369 | 369 | /** |
| 370 | 370 | * @action `gravityview_log_error` Log an error message that shows up in the Gravity Forms Logging Addon and also the Debug Bar plugin output |
| 371 | 371 | * @param string $message Error message to display |
@@ -376,4 +376,4 @@ discard block |
||
| 376 | 376 | |
| 377 | 377 | } // end class GravityView_Plugin |
| 378 | 378 | |
| 379 | -add_action('plugins_loaded', array('GravityView_Plugin', 'getInstance'), 1); |
|
| 379 | +add_action( 'plugins_loaded', array( 'GravityView_Plugin', 'getInstance' ), 1 ); |
|
@@ -41,12 +41,12 @@ discard block |
||
| 41 | 41 | private function add_hooks() { |
| 42 | 42 | add_action( 'wp', array( $this, 'process_delete' ), 10000 ); |
| 43 | 43 | |
| 44 | - add_filter( 'gravityview_entry_default_fields', array( $this, 'add_default_field'), 10, 3 ); |
|
| 44 | + add_filter( 'gravityview_entry_default_fields', array( $this, 'add_default_field' ), 10, 3 ); |
|
| 45 | 45 | |
| 46 | 46 | add_action( 'gravityview_before', array( $this, 'display_message' ) ); |
| 47 | 47 | |
| 48 | 48 | // For the Delete Entry Link, you don't want visible to all users. |
| 49 | - add_filter( 'gravityview_field_visibility_caps', array( $this, 'modify_visibility_caps'), 10, 5 ); |
|
| 49 | + add_filter( 'gravityview_field_visibility_caps', array( $this, 'modify_visibility_caps' ), 10, 5 ); |
|
| 50 | 50 | |
| 51 | 51 | // Modify the field options based on the name of the field type |
| 52 | 52 | add_filter( 'gravityview_template_delete_link_options', array( $this, 'delete_link_field_options' ), 10, 5 ); |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | // add template path to check for field |
| 55 | 55 | add_filter( 'gravityview_template_paths', array( $this, 'add_template_path' ) ); |
| 56 | 56 | |
| 57 | - add_action( 'gravityview/edit-entry/publishing-action/after', array( $this, 'add_delete_button'), 10, 3 ); |
|
| 57 | + add_action( 'gravityview/edit-entry/publishing-action/after', array( $this, 'add_delete_button' ), 10, 3 ); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | /** |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | */ |
| 66 | 66 | static function getInstance() { |
| 67 | 67 | |
| 68 | - if( empty( self::$instance ) ) { |
|
| 68 | + if ( empty( self::$instance ) ) { |
|
| 69 | 69 | self::$instance = new self; |
| 70 | 70 | } |
| 71 | 71 | |
@@ -101,20 +101,20 @@ discard block |
||
| 101 | 101 | function delete_link_field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
| 102 | 102 | |
| 103 | 103 | // Always a link, never a filter |
| 104 | - unset( $field_options['show_as_link'], $field_options['search_filter'] ); |
|
| 104 | + unset( $field_options[ 'show_as_link' ], $field_options[ 'search_filter' ] ); |
|
| 105 | 105 | |
| 106 | 106 | // Delete Entry link should only appear to visitors capable of editing entries |
| 107 | - unset( $field_options['only_loggedin'], $field_options['only_loggedin_cap'] ); |
|
| 107 | + unset( $field_options[ 'only_loggedin' ], $field_options[ 'only_loggedin_cap' ] ); |
|
| 108 | 108 | |
| 109 | - $add_option['delete_link'] = array( |
|
| 109 | + $add_option[ 'delete_link' ] = array( |
|
| 110 | 110 | 'type' => 'text', |
| 111 | 111 | 'label' => __( 'Delete Link Text', 'gravityview' ), |
| 112 | 112 | 'desc' => NULL, |
| 113 | - 'value' => __('Delete Entry', 'gravityview'), |
|
| 113 | + 'value' => __( 'Delete Entry', 'gravityview' ), |
|
| 114 | 114 | 'merge_tags' => true, |
| 115 | 115 | ); |
| 116 | 116 | |
| 117 | - $field_options['allow_edit_cap'] = array( |
|
| 117 | + $field_options[ 'allow_edit_cap' ] = array( |
|
| 118 | 118 | 'type' => 'select', |
| 119 | 119 | 'label' => __( 'Allow the following users to delete the entry:', 'gravityview' ), |
| 120 | 120 | 'choices' => GravityView_Render_Settings::get_cap_choices( $template_id, $field_id, $context, $input_type ), |
@@ -138,10 +138,10 @@ discard block |
||
| 138 | 138 | */ |
| 139 | 139 | function add_default_field( $entry_default_fields, $form = array(), $zone = '' ) { |
| 140 | 140 | |
| 141 | - $entry_default_fields['delete_link'] = array( |
|
| 142 | - 'label' => __('Delete Entry', 'gravityview'), |
|
| 141 | + $entry_default_fields[ 'delete_link' ] = array( |
|
| 142 | + 'label' => __( 'Delete Entry', 'gravityview' ), |
|
| 143 | 143 | 'type' => 'delete_link', |
| 144 | - 'desc' => __('A link to delete the entry. Respects the Delete Entry permissions.', 'gravityview'), |
|
| 144 | + 'desc' => __( 'A link to delete the entry. Respects the Delete Entry permissions.', 'gravityview' ), |
|
| 145 | 145 | ); |
| 146 | 146 | |
| 147 | 147 | return $entry_default_fields; |
@@ -154,7 +154,7 @@ discard block |
||
| 154 | 154 | */ |
| 155 | 155 | function add_available_field( $available_fields = array() ) { |
| 156 | 156 | |
| 157 | - $available_fields['delete_link'] = array( |
|
| 157 | + $available_fields[ 'delete_link' ] = array( |
|
| 158 | 158 | 'label_text' => __( 'Delete Entry', 'gravityview' ), |
| 159 | 159 | 'field_id' => 'delete_link', |
| 160 | 160 | 'label_type' => 'field', |
@@ -182,12 +182,12 @@ discard block |
||
| 182 | 182 | $caps = $visibility_caps; |
| 183 | 183 | |
| 184 | 184 | // If we're configuring fields in the edit context, we want a limited selection |
| 185 | - if( $field_id === 'delete_link' ) { |
|
| 185 | + if ( $field_id === 'delete_link' ) { |
|
| 186 | 186 | |
| 187 | 187 | // Remove other built-in caps. |
| 188 | - unset( $caps['publish_posts'], $caps['gravityforms_view_entries'], $caps['delete_others_posts'] ); |
|
| 188 | + unset( $caps[ 'publish_posts' ], $caps[ 'gravityforms_view_entries' ], $caps[ 'delete_others_posts' ] ); |
|
| 189 | 189 | |
| 190 | - $caps['read'] = _x('Entry Creator', 'User capability', 'gravityview'); |
|
| 190 | + $caps[ 'read' ] = _x( 'Entry Creator', 'User capability', 'gravityview' ); |
|
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | return $caps; |
@@ -200,7 +200,7 @@ discard block |
||
| 200 | 200 | * @param [type] $entry [description] |
| 201 | 201 | */ |
| 202 | 202 | function set_entry( $entry = null ) { |
| 203 | - $this->entry = empty( $entry ) ? GravityView_View::getInstance()->entries[0] : $entry; |
|
| 203 | + $this->entry = empty( $entry ) ? GravityView_View::getInstance()->entries[ 0 ] : $entry; |
|
| 204 | 204 | } |
| 205 | 205 | |
| 206 | 206 | /** |
@@ -230,13 +230,13 @@ discard block |
||
| 230 | 230 | |
| 231 | 231 | $base = GravityView_API::directory_link( $post_id, true ); |
| 232 | 232 | |
| 233 | - if( empty( $base ) ) { |
|
| 234 | - do_action( 'gravityview_log_error', __METHOD__ . ' - Post ID does not exist: '.$post_id ); |
|
| 233 | + if ( empty( $base ) ) { |
|
| 234 | + do_action( 'gravityview_log_error', __METHOD__ . ' - Post ID does not exist: ' . $post_id ); |
|
| 235 | 235 | return NULL; |
| 236 | 236 | } |
| 237 | 237 | |
| 238 | 238 | // Use the slug instead of the ID for consistent security |
| 239 | - $entry_slug = GravityView_API::get_entry_slug( $entry['id'], $entry ); |
|
| 239 | + $entry_slug = GravityView_API::get_entry_slug( $entry[ 'id' ], $entry ); |
|
| 240 | 240 | |
| 241 | 241 | $view_id = empty( $view_id ) ? gravityview_get_view_id() : $view_id; |
| 242 | 242 | |
@@ -247,7 +247,7 @@ discard block |
||
| 247 | 247 | 'view_id' => $view_id, |
| 248 | 248 | ), $base ); |
| 249 | 249 | |
| 250 | - $url = wp_nonce_url( $actionurl, 'delete_'.$entry_slug, 'delete' ); |
|
| 250 | + $url = wp_nonce_url( $actionurl, 'delete_' . $entry_slug, 'delete' ); |
|
| 251 | 251 | |
| 252 | 252 | return $url; |
| 253 | 253 | } |
@@ -264,7 +264,7 @@ discard block |
||
| 264 | 264 | function add_delete_button( $form = array(), $entry = array(), $view_id = NULL ) { |
| 265 | 265 | |
| 266 | 266 | // Only show the link to those who are allowed to see it. |
| 267 | - if( !self::check_user_cap_delete_entry( $entry ) ) { |
|
| 267 | + if ( ! self::check_user_cap_delete_entry( $entry ) ) { |
|
| 268 | 268 | return; |
| 269 | 269 | } |
| 270 | 270 | |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | $show_delete_button = apply_filters( 'gravityview/delete-entry/show-delete-button', true ); |
| 276 | 276 | |
| 277 | 277 | // If the button is hidden by the filter, don't show. |
| 278 | - if( !$show_delete_button ) { |
|
| 278 | + if ( ! $show_delete_button ) { |
|
| 279 | 279 | return; |
| 280 | 280 | } |
| 281 | 281 | |
@@ -305,27 +305,27 @@ discard block |
||
| 305 | 305 | function process_delete() { |
| 306 | 306 | |
| 307 | 307 | // If the form is submitted |
| 308 | - if( 'delete' === RGForms::get("action") && isset( $_GET['entry_id'] ) ) { |
|
| 308 | + if ( 'delete' === RGForms::get( "action" ) && isset( $_GET[ 'entry_id' ] ) ) { |
|
| 309 | 309 | |
| 310 | 310 | // Make sure it's a GravityView request |
| 311 | - $valid_nonce_key = wp_verify_nonce( $_GET['delete'], self::get_nonce_key( $_GET['entry_id'] ) ); |
|
| 311 | + $valid_nonce_key = wp_verify_nonce( $_GET[ 'delete' ], self::get_nonce_key( $_GET[ 'entry_id' ] ) ); |
|
| 312 | 312 | |
| 313 | - if( ! $valid_nonce_key ) { |
|
| 314 | - do_action('gravityview_log_debug', __METHOD__ . ' Delete entry not processed: nonce validation failed.' ); |
|
| 313 | + if ( ! $valid_nonce_key ) { |
|
| 314 | + do_action( 'gravityview_log_debug', __METHOD__ . ' Delete entry not processed: nonce validation failed.' ); |
|
| 315 | 315 | return; |
| 316 | 316 | } |
| 317 | 317 | |
| 318 | 318 | // Get the entry slug |
| 319 | - $entry_slug = esc_attr( $_GET['entry_id'] ); |
|
| 319 | + $entry_slug = esc_attr( $_GET[ 'entry_id' ] ); |
|
| 320 | 320 | |
| 321 | 321 | // See if there's an entry there |
| 322 | 322 | $entry = gravityview_get_entry( $entry_slug ); |
| 323 | 323 | |
| 324 | - if( $entry ) { |
|
| 324 | + if ( $entry ) { |
|
| 325 | 325 | |
| 326 | 326 | $has_permission = $this->user_can_delete_entry( $entry ); |
| 327 | 327 | |
| 328 | - if( is_wp_error( $has_permission ) ) { |
|
| 328 | + if ( is_wp_error( $has_permission ) ) { |
|
| 329 | 329 | |
| 330 | 330 | $messages = array( |
| 331 | 331 | 'message' => urlencode( $has_permission->get_error_message() ), |
@@ -335,9 +335,9 @@ discard block |
||
| 335 | 335 | } else { |
| 336 | 336 | |
| 337 | 337 | // Delete the entry |
| 338 | - $delete_response = $this->delete_or_trash_entry( $entry['id'] ); |
|
| 338 | + $delete_response = $this->delete_or_trash_entry( $entry[ 'id' ] ); |
|
| 339 | 339 | |
| 340 | - if( is_wp_error( $delete_response ) ) { |
|
| 340 | + if ( is_wp_error( $delete_response ) ) { |
|
| 341 | 341 | |
| 342 | 342 | $messages = array( |
| 343 | 343 | 'message' => urlencode( $delete_response->get_error_message() ), |
@@ -356,10 +356,10 @@ discard block |
||
| 356 | 356 | |
| 357 | 357 | } else { |
| 358 | 358 | |
| 359 | - do_action('gravityview_log_debug', __METHOD__ . ' Delete entry failed: there was no entry with the entry slug '. $entry_slug ); |
|
| 359 | + do_action( 'gravityview_log_debug', __METHOD__ . ' Delete entry failed: there was no entry with the entry slug ' . $entry_slug ); |
|
| 360 | 360 | |
| 361 | 361 | $messages = array( |
| 362 | - 'message' => urlencode( __('The entry does not exist.', 'gravityview') ), |
|
| 362 | + 'message' => urlencode( __( 'The entry does not exist.', 'gravityview' ) ), |
|
| 363 | 363 | 'status' => 'error', |
| 364 | 364 | ); |
| 365 | 365 | } |
@@ -401,14 +401,14 @@ discard block |
||
| 401 | 401 | |
| 402 | 402 | $mode = $this->get_delete_mode(); |
| 403 | 403 | |
| 404 | - if( 'delete' === $mode ) { |
|
| 404 | + if ( 'delete' === $mode ) { |
|
| 405 | 405 | |
| 406 | 406 | do_action( 'gravityview_log_debug', __METHOD__ . ' Starting delete entry: ', $entry_id ); |
| 407 | 407 | |
| 408 | 408 | // Delete the entry |
| 409 | 409 | $delete_response = GFAPI::delete_entry( $entry_id ); |
| 410 | 410 | |
| 411 | - if( ! is_wp_error( $delete_response ) ) { |
|
| 411 | + if ( ! is_wp_error( $delete_response ) ) { |
|
| 412 | 412 | $delete_response = 'deleted'; |
| 413 | 413 | } |
| 414 | 414 | |
@@ -421,8 +421,8 @@ discard block |
||
| 421 | 421 | $trashed = GFAPI::update_entry_property( $entry_id, 'status', 'trash' ); |
| 422 | 422 | new GravityView_Cache; |
| 423 | 423 | |
| 424 | - if( ! $trashed ) { |
|
| 425 | - $delete_response = new WP_Error( 'trash_entry_failed', __('Moving the entry to the trash failed.', 'gravityview' ) ); |
|
| 424 | + if ( ! $trashed ) { |
|
| 425 | + $delete_response = new WP_Error( 'trash_entry_failed', __( 'Moving the entry to the trash failed.', 'gravityview' ) ); |
|
| 426 | 426 | } else { |
| 427 | 427 | $delete_response = 'trashed'; |
| 428 | 428 | } |
@@ -442,13 +442,13 @@ discard block |
||
| 442 | 442 | public function verify_nonce() { |
| 443 | 443 | |
| 444 | 444 | // No delete entry request was made |
| 445 | - if( empty( $_GET['entry_id'] ) || empty( $_GET['delete'] ) ) { |
|
| 445 | + if ( empty( $_GET[ 'entry_id' ] ) || empty( $_GET[ 'delete' ] ) ) { |
|
| 446 | 446 | return false; |
| 447 | 447 | } |
| 448 | 448 | |
| 449 | - $nonce_key = self::get_nonce_key( $_GET['entry_id'] ); |
|
| 449 | + $nonce_key = self::get_nonce_key( $_GET[ 'entry_id' ] ); |
|
| 450 | 450 | |
| 451 | - $valid = wp_verify_nonce( $_GET['delete'], $nonce_key ); |
|
| 451 | + $valid = wp_verify_nonce( $_GET[ 'delete' ], $nonce_key ); |
|
| 452 | 452 | |
| 453 | 453 | /** |
| 454 | 454 | * @filter `gravityview/delete-entry/verify_nonce` Override Delete Entry nonce validation. Return true to declare nonce valid. |
@@ -470,7 +470,7 @@ discard block |
||
| 470 | 470 | */ |
| 471 | 471 | public static function get_confirm_dialog() { |
| 472 | 472 | |
| 473 | - $confirm = __('Are you sure you want to delete this entry? This cannot be undone.', 'gravityview'); |
|
| 473 | + $confirm = __( 'Are you sure you want to delete this entry? This cannot be undone.', 'gravityview' ); |
|
| 474 | 474 | |
| 475 | 475 | /** |
| 476 | 476 | * @filter `gravityview/delete-entry/confirm-text` Modify the Delete Entry Javascript confirmation text |
@@ -478,7 +478,7 @@ discard block |
||
| 478 | 478 | */ |
| 479 | 479 | $confirm = apply_filters( 'gravityview/delete-entry/confirm-text', $confirm ); |
| 480 | 480 | |
| 481 | - return 'return window.confirm(\''. esc_js( $confirm ) .'\');'; |
|
| 481 | + return 'return window.confirm(\'' . esc_js( $confirm ) . '\');'; |
|
| 482 | 482 | } |
| 483 | 483 | |
| 484 | 484 | /** |
@@ -496,16 +496,16 @@ discard block |
||
| 496 | 496 | |
| 497 | 497 | $error = NULL; |
| 498 | 498 | |
| 499 | - if( ! $this->verify_nonce() ) { |
|
| 500 | - $error = __( 'The link to delete this entry is not valid; it may have expired.', 'gravityview'); |
|
| 499 | + if ( ! $this->verify_nonce() ) { |
|
| 500 | + $error = __( 'The link to delete this entry is not valid; it may have expired.', 'gravityview' ); |
|
| 501 | 501 | } |
| 502 | 502 | |
| 503 | - if( ! self::check_user_cap_delete_entry( $entry ) ) { |
|
| 504 | - $error = __( 'You do not have permission to delete this entry.', 'gravityview'); |
|
| 503 | + if ( ! self::check_user_cap_delete_entry( $entry ) ) { |
|
| 504 | + $error = __( 'You do not have permission to delete this entry.', 'gravityview' ); |
|
| 505 | 505 | } |
| 506 | 506 | |
| 507 | - if( $entry['status'] === 'trash' ) { |
|
| 508 | - if( 'trash' === $this->get_delete_mode() ) { |
|
| 507 | + if ( $entry[ 'status' ] === 'trash' ) { |
|
| 508 | + if ( 'trash' === $this->get_delete_mode() ) { |
|
| 509 | 509 | $error = __( 'The entry is already in the trash.', 'gravityview' ); |
| 510 | 510 | } else { |
| 511 | 511 | $error = __( 'You cannot delete the entry; it is already in the trash.', 'gravityview' ); |
@@ -513,11 +513,11 @@ discard block |
||
| 513 | 513 | } |
| 514 | 514 | |
| 515 | 515 | // No errors; everything's fine here! |
| 516 | - if( empty( $error ) ) { |
|
| 516 | + if ( empty( $error ) ) { |
|
| 517 | 517 | return true; |
| 518 | 518 | } |
| 519 | 519 | |
| 520 | - do_action('gravityview_log_error', 'GravityView_Delete_Entry[user_can_delete_entry]' . $error ); |
|
| 520 | + do_action( 'gravityview_log_error', 'GravityView_Delete_Entry[user_can_delete_entry]' . $error ); |
|
| 521 | 521 | |
| 522 | 522 | return new WP_Error( 'gravityview-delete-entry-permissions', $error ); |
| 523 | 523 | } |
@@ -539,32 +539,32 @@ discard block |
||
| 539 | 539 | |
| 540 | 540 | $current_user = wp_get_current_user(); |
| 541 | 541 | |
| 542 | - $entry_id = isset( $entry['id'] ) ? $entry['id'] : NULL; |
|
| 542 | + $entry_id = isset( $entry[ 'id' ] ) ? $entry[ 'id' ] : NULL; |
|
| 543 | 543 | |
| 544 | 544 | // Or if they can delete any entries (as defined in Gravity Forms), we're good. |
| 545 | - if( GVCommon::has_cap( array( 'gravityforms_delete_entries', 'gravityview_delete_others_entries' ), $entry_id ) ) { |
|
| 545 | + if ( GVCommon::has_cap( array( 'gravityforms_delete_entries', 'gravityview_delete_others_entries' ), $entry_id ) ) { |
|
| 546 | 546 | |
| 547 | - do_action('gravityview_log_debug', 'GravityView_Delete_Entry[check_user_cap_delete_entry] Current user has `gravityforms_delete_entries` or `gravityview_delete_others_entries` capability.' ); |
|
| 547 | + do_action( 'gravityview_log_debug', 'GravityView_Delete_Entry[check_user_cap_delete_entry] Current user has `gravityforms_delete_entries` or `gravityview_delete_others_entries` capability.' ); |
|
| 548 | 548 | |
| 549 | 549 | return true; |
| 550 | 550 | } |
| 551 | 551 | |
| 552 | 552 | |
| 553 | 553 | // If field options are passed, check if current user can view the link |
| 554 | - if( !empty( $field ) ) { |
|
| 554 | + if ( ! empty( $field ) ) { |
|
| 555 | 555 | |
| 556 | 556 | // If capability is not defined, something is not right! |
| 557 | - if( empty( $field['allow_edit_cap'] ) ) { |
|
| 557 | + if ( empty( $field[ 'allow_edit_cap' ] ) ) { |
|
| 558 | 558 | |
| 559 | 559 | do_action( 'gravityview_log_error', 'GravityView_Delete_Entry[check_user_cap_delete_entry] Cannot read delete entry field caps', $field ); |
| 560 | 560 | |
| 561 | 561 | return false; |
| 562 | 562 | } |
| 563 | 563 | |
| 564 | - if( GVCommon::has_cap( $field['allow_edit_cap'] ) ) { |
|
| 564 | + if ( GVCommon::has_cap( $field[ 'allow_edit_cap' ] ) ) { |
|
| 565 | 565 | |
| 566 | 566 | // Do not return true if cap is read, as we need to check if the current user created the entry |
| 567 | - if( $field['allow_edit_cap'] !== 'read' ) { |
|
| 567 | + if ( $field[ 'allow_edit_cap' ] !== 'read' ) { |
|
| 568 | 568 | return true; |
| 569 | 569 | } |
| 570 | 570 | |
@@ -577,9 +577,9 @@ discard block |
||
| 577 | 577 | |
| 578 | 578 | } |
| 579 | 579 | |
| 580 | - if( !isset( $entry['created_by'] ) ) { |
|
| 580 | + if ( ! isset( $entry[ 'created_by' ] ) ) { |
|
| 581 | 581 | |
| 582 | - do_action('gravityview_log_error', 'GravityView_Delete_Entry[check_user_cap_delete_entry] Entry `created_by` doesn\'t exist.'); |
|
| 582 | + do_action( 'gravityview_log_error', 'GravityView_Delete_Entry[check_user_cap_delete_entry] Entry `created_by` doesn\'t exist.' ); |
|
| 583 | 583 | |
| 584 | 584 | return false; |
| 585 | 585 | } |
@@ -587,24 +587,24 @@ discard block |
||
| 587 | 587 | $view_id = empty( $view_id ) ? $gravityview_view->getViewId() : $view_id; |
| 588 | 588 | |
| 589 | 589 | // Only checks user_delete view option if view is already set |
| 590 | - if( $view_id ) { |
|
| 590 | + if ( $view_id ) { |
|
| 591 | 591 | |
| 592 | 592 | $current_view = gravityview_get_current_view_data( $view_id ); |
| 593 | 593 | |
| 594 | - $user_delete = isset( $current_view['atts']['user_delete'] ) ? $current_view['atts']['user_delete'] : false; |
|
| 594 | + $user_delete = isset( $current_view[ 'atts' ][ 'user_delete' ] ) ? $current_view[ 'atts' ][ 'user_delete' ] : false; |
|
| 595 | 595 | |
| 596 | - if( empty( $user_delete ) ) { |
|
| 596 | + if ( empty( $user_delete ) ) { |
|
| 597 | 597 | |
| 598 | - do_action('gravityview_log_debug', 'GravityView_Delete_Entry[check_user_cap_delete_entry] User Delete is disabled. Returning false.' ); |
|
| 598 | + do_action( 'gravityview_log_debug', 'GravityView_Delete_Entry[check_user_cap_delete_entry] User Delete is disabled. Returning false.' ); |
|
| 599 | 599 | |
| 600 | 600 | return false; |
| 601 | 601 | } |
| 602 | 602 | } |
| 603 | 603 | |
| 604 | 604 | // If the logged-in user is the same as the user who created the entry, we're good. |
| 605 | - if( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry['created_by'] ) ) { |
|
| 605 | + if ( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry[ 'created_by' ] ) ) { |
|
| 606 | 606 | |
| 607 | - do_action('gravityview_log_debug', sprintf( 'GravityView_Delete_Entry[check_user_cap_delete_entry] User %s created the entry.', $current_user->ID ) ); |
|
| 607 | + do_action( 'gravityview_log_debug', sprintf( 'GravityView_Delete_Entry[check_user_cap_delete_entry] User %s created the entry.', $current_user->ID ) ); |
|
| 608 | 608 | |
| 609 | 609 | return true; |
| 610 | 610 | } |
@@ -627,31 +627,31 @@ discard block |
||
| 627 | 627 | */ |
| 628 | 628 | public function display_message( $current_view_id = 0 ) { |
| 629 | 629 | |
| 630 | - if( empty( $_GET['status'] ) || ! self::verify_nonce() ) { |
|
| 630 | + if ( empty( $_GET[ 'status' ] ) || ! self::verify_nonce() ) { |
|
| 631 | 631 | return; |
| 632 | 632 | } |
| 633 | 633 | |
| 634 | 634 | // Entry wasn't deleted from current View |
| 635 | - if( intval( $_GET['gvid'] ) !== intval( $current_view_id ) ) { |
|
| 635 | + if ( intval( $_GET[ 'gvid' ] ) !== intval( $current_view_id ) ) { |
|
| 636 | 636 | return; |
| 637 | 637 | } |
| 638 | 638 | |
| 639 | - $status = esc_attr( $_GET['status'] ); |
|
| 640 | - $message_from_url = rgget('message'); |
|
| 639 | + $status = esc_attr( $_GET[ 'status' ] ); |
|
| 640 | + $message_from_url = rgget( 'message' ); |
|
| 641 | 641 | $message_from_url = urldecode( stripslashes_deep( $message_from_url ) ); |
| 642 | 642 | $class = ''; |
| 643 | 643 | |
| 644 | 644 | switch ( $status ) { |
| 645 | 645 | case 'error': |
| 646 | 646 | $class = ' gv-error error'; |
| 647 | - $error_message = __('There was an error deleting the entry: %s', 'gravityview'); |
|
| 647 | + $error_message = __( 'There was an error deleting the entry: %s', 'gravityview' ); |
|
| 648 | 648 | $message = sprintf( $error_message, $message_from_url ); |
| 649 | 649 | break; |
| 650 | 650 | case 'trashed': |
| 651 | - $message = __('The entry was successfully moved to the trash.', 'gravityview'); |
|
| 651 | + $message = __( 'The entry was successfully moved to the trash.', 'gravityview' ); |
|
| 652 | 652 | break; |
| 653 | 653 | default: |
| 654 | - $message = __('The entry was successfully deleted.', 'gravityview'); |
|
| 654 | + $message = __( 'The entry was successfully deleted.', 'gravityview' ); |
|
| 655 | 655 | break; |
| 656 | 656 | } |
| 657 | 657 | |
@@ -665,7 +665,7 @@ discard block |
||
| 665 | 665 | $message = apply_filters( 'gravityview/delete-entry/message', esc_attr( $message ), $status, $message_from_url ); |
| 666 | 666 | |
| 667 | 667 | // DISPLAY ERROR/SUCCESS MESSAGE |
| 668 | - echo '<div class="gv-notice' . esc_attr( $class ) .'">'. $message .'</div>'; |
|
| 668 | + echo '<div class="gv-notice' . esc_attr( $class ) . '">' . $message . '</div>'; |
|
| 669 | 669 | } |
| 670 | 670 | |
| 671 | 671 | |