@@ -2,8 +2,9 @@ discard block |
||
| 2 | 2 | namespace GV; |
| 3 | 3 | |
| 4 | 4 | /** If this file is called directly, abort. */ |
| 5 | -if ( ! defined( 'GRAVITYVIEW_DIR' ) ) |
|
| 5 | +if ( ! defined( 'GRAVITYVIEW_DIR' ) ) { |
|
| 6 | 6 | die(); |
| 7 | +} |
|
| 7 | 8 | |
| 8 | 9 | /** |
| 9 | 10 | * The base Entry class. |
@@ -24,8 +25,9 @@ discard block |
||
| 24 | 25 | $endpoint = self::get_endpoint_name(); |
| 25 | 26 | |
| 26 | 27 | /** Let's make sure the endpoint array is not polluted. */ |
| 27 | - if ( in_array( array( EP_ALL, $endpoint, $endpoint ), $wp_rewrite->endpoints ) ) |
|
| 28 | - return; |
|
| 28 | + if ( in_array( array( EP_ALL, $endpoint, $endpoint ), $wp_rewrite->endpoints ) ) { |
|
| 29 | + return; |
|
| 30 | + } |
|
| 29 | 31 | |
| 30 | 32 | add_rewrite_endpoint( $endpoint, EP_ALL ); |
| 31 | 33 | } |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | $supports = array( 'title', 'revisions' ); |
| 36 | 36 | |
| 37 | 37 | if ( $is_hierarchical ) { |
| 38 | - $supports[] = 'page-attributes'; |
|
| 38 | + $supports[ ] = 'page-attributes'; |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | /** |
@@ -2,8 +2,9 @@ discard block |
||
| 2 | 2 | namespace GV; |
| 3 | 3 | |
| 4 | 4 | /** If this file is called directly, abort. */ |
| 5 | -if ( ! defined( 'GRAVITYVIEW_DIR' ) ) |
|
| 5 | +if ( ! defined( 'GRAVITYVIEW_DIR' ) ) { |
|
| 6 | 6 | die(); |
| 7 | +} |
|
| 7 | 8 | |
| 8 | 9 | /** |
| 9 | 10 | * The default GravityView View class. |
@@ -21,8 +22,9 @@ discard block |
||
| 21 | 22 | public static function register_post_type() { |
| 22 | 23 | |
| 23 | 24 | /** Register only once */ |
| 24 | - if ( post_type_exists( 'gravityview' ) ) |
|
| 25 | - return; |
|
| 25 | + if ( post_type_exists( 'gravityview' ) ) { |
|
| 26 | + return; |
|
| 27 | + } |
|
| 26 | 28 | |
| 27 | 29 | /** |
| 28 | 30 | * @filter `gravityview_is_hierarchical` Make GravityView Views hierarchical by returning TRUE |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | |
| 15 | 15 | var $is_numeric = true; |
| 16 | 16 | |
| 17 | - var $search_operators = array( 'is', 'isnot', 'starts_with', 'ends_with' ); |
|
| 17 | + var $search_operators = array( 'is', 'isnot', 'starts_with', 'ends_with' ); |
|
| 18 | 18 | |
| 19 | 19 | var $group = 'pricing'; |
| 20 | 20 | |
@@ -45,9 +45,9 @@ discard block |
||
| 45 | 45 | $field_options = parent::field_options( $field_options, $template_id, $field_id, $context, $input_type ); |
| 46 | 46 | |
| 47 | 47 | // It's not the parent field; it's an input |
| 48 | - if( floor( $field_id ) !== floatval( $field_id ) ) { |
|
| 48 | + if ( floor( $field_id ) !== floatval( $field_id ) ) { |
|
| 49 | 49 | |
| 50 | - if( $this->is_choice_value_enabled() ) { |
|
| 50 | + if ( $this->is_choice_value_enabled() ) { |
|
| 51 | 51 | |
| 52 | 52 | $desc = esc_html__( 'This input has a label and a value. What should be displayed?', 'gravityview' ); |
| 53 | 53 | $default = 'value'; |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | ); |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - $field_options['choice_display'] = array( |
|
| 68 | + $field_options[ 'choice_display' ] = array( |
|
| 69 | 69 | 'type' => 'radio', |
| 70 | 70 | 'class' => 'vertical', |
| 71 | 71 | 'label' => __( 'What should be displayed:', 'gravityview' ), |
@@ -50,12 +50,12 @@ |
||
| 50 | 50 | |
| 51 | 51 | /** @var GF_Field_Total $total_field */ |
| 52 | 52 | foreach ( $Edit_Entry_Render->total_fields as $total_field ) { |
| 53 | - $entry["{$total_field->id}"] = GFCommon::get_order_total( $form, $Edit_Entry_Render->entry ); |
|
| 53 | + $entry[ "{$total_field->id}" ] = GFCommon::get_order_total( $form, $Edit_Entry_Render->entry ); |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | $return_entry = GFAPI::update_entry( $entry ); |
| 57 | 57 | |
| 58 | - if( is_wp_error( $return_entry ) ) { |
|
| 58 | + if ( is_wp_error( $return_entry ) ) { |
|
| 59 | 59 | do_action( 'gravityview_log_error', __METHOD__ . ': Updating the entry total fields failed', $return_entry ); |
| 60 | 60 | } else { |
| 61 | 61 | do_action( 'gravityview_log_debug', __METHOD__ . ': Updating the entry total fields succeeded' ); |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | */ |
| 50 | 50 | function clear_product_info_cache( $form = array(), $entry_id = 0, $Edit_Entry_Render = null ) { |
| 51 | 51 | |
| 52 | - if( $this->should_hide_product_fields( $Edit_Entry_Render->entry ) ) { |
|
| 52 | + if ( $this->should_hide_product_fields( $Edit_Entry_Render->entry ) ) { |
|
| 53 | 53 | return; |
| 54 | 54 | } |
| 55 | 55 | |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | * @see GVCommon::entry_has_transaction_data() |
| 102 | 102 | * @param boolean $hide_product_fields Whether to hide product fields in the editor. Uses $entry data to determine. |
| 103 | 103 | */ |
| 104 | - $hide_product_fields = (bool) apply_filters( 'gravityview/edit_entry/hide-product-fields', $has_transaction_data ); |
|
| 104 | + $hide_product_fields = (bool)apply_filters( 'gravityview/edit_entry/hide-product-fields', $has_transaction_data ); |
|
| 105 | 105 | |
| 106 | 106 | return $hide_product_fields; |
| 107 | 107 | } |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | |
| 63 | 63 | add_filter( 'icl_ls_languages', array( $this, 'wpml_ls_filter' ) ); |
| 64 | 64 | |
| 65 | - add_filter( 'gravityview_directory_link', array( $this, 'filter_gravityview_back_link') ); |
|
| 65 | + add_filter( 'gravityview_directory_link', array( $this, 'filter_gravityview_back_link' ) ); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | /** |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | |
| 152 | 152 | $this->remove_url_hooks(); |
| 153 | 153 | |
| 154 | - if( $translations ) { |
|
| 154 | + if ( $translations ) { |
|
| 155 | 155 | foreach ( $languages as $lang_code => $language ) { |
| 156 | 156 | |
| 157 | 157 | $lang_post_id = $translations[ $lang_code ]->element_id; |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | break; |
| 185 | 185 | } |
| 186 | 186 | |
| 187 | - $languages[ $lang_code ]['url'] = $entry_link; |
|
| 187 | + $languages[ $lang_code ][ 'url' ] = $entry_link; |
|
| 188 | 188 | } |
| 189 | 189 | } |
| 190 | 190 | |
@@ -2,8 +2,9 @@ |
||
| 2 | 2 | namespace GV; |
| 3 | 3 | |
| 4 | 4 | /** If this file is called directly, abort. */ |
| 5 | -if ( ! defined( 'GRAVITYVIEW_DIR' ) ) |
|
| 5 | +if ( ! defined( 'GRAVITYVIEW_DIR' ) ) { |
|
| 6 | 6 | die(); |
| 7 | +} |
|
| 7 | 8 | |
| 8 | 9 | /** |
| 9 | 10 | * The Request abstract class. |
@@ -2,8 +2,9 @@ |
||
| 2 | 2 | namespace GV; |
| 3 | 3 | |
| 4 | 4 | /** If this file is called directly, abort. */ |
| 5 | -if ( ! defined( 'GRAVITYVIEW_DIR' ) ) |
|
| 5 | +if ( ! defined( 'GRAVITYVIEW_DIR' ) ) { |
|
| 6 | 6 | die(); |
| 7 | +} |
|
| 7 | 8 | |
| 8 | 9 | /** |
| 9 | 10 | * The base \GV\Shortcode class. |
@@ -56,15 +56,15 @@ discard block |
||
| 56 | 56 | public static function add() { |
| 57 | 57 | $shortcode = new static(); |
| 58 | 58 | if ( shortcode_exists( $shortcode->name ) ) { |
| 59 | - if ( empty( self::$shortcodes[$shortcode->name] ) ) { |
|
| 59 | + if ( empty( self::$shortcodes[ $shortcode->name ] ) ) { |
|
| 60 | 60 | throw new \ErrorException( sprintf( 'Shortcode [%s] has already been registered elsewhere.', $shortcode->name ) ); |
| 61 | 61 | } |
| 62 | 62 | } else { |
| 63 | 63 | add_shortcode( $shortcode->name, array( get_class( $shortcode ), 'callback' ) ); |
| 64 | - self::$shortcodes[$shortcode->name] = $shortcode; |
|
| 64 | + self::$shortcodes[ $shortcode->name ] = $shortcode; |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - return self::$shortcodes[$shortcode->name]; |
|
| 67 | + return self::$shortcodes[ $shortcode->name ]; |
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | /** |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | */ |
| 77 | 77 | public static function remove() { |
| 78 | 78 | $shortcode = new static(); |
| 79 | - unset( self::$shortcodes[$shortcode->name] ); |
|
| 79 | + unset( self::$shortcodes[ $shortcode->name ] ); |
|
| 80 | 80 | remove_shortcode( $shortcode->name ); |
| 81 | 81 | } |
| 82 | 82 | |
@@ -108,14 +108,14 @@ discard block |
||
| 108 | 108 | preg_match_all( '/' . get_shortcode_regex() . '/', $content, $matches, PREG_SET_ORDER ); |
| 109 | 109 | |
| 110 | 110 | foreach ( $matches as $shortcode ) { |
| 111 | - $shortcode_name = $shortcode[2]; |
|
| 111 | + $shortcode_name = $shortcode[ 2 ]; |
|
| 112 | 112 | |
| 113 | - $shortcode_atts = shortcode_parse_atts( $shortcode[3] ); |
|
| 114 | - $shortcode_content = $shortcode[5]; |
|
| 113 | + $shortcode_atts = shortcode_parse_atts( $shortcode[ 3 ] ); |
|
| 114 | + $shortcode_content = $shortcode[ 5 ]; |
|
| 115 | 115 | |
| 116 | 116 | /** This is a registered GravityView shortcode. */ |
| 117 | - if ( !empty( self::$shortcodes[$shortcode_name] ) ) { |
|
| 118 | - $shortcode = clone( self::$shortcodes[$shortcode_name] ); |
|
| 117 | + if ( ! empty( self::$shortcodes[ $shortcode_name ] ) ) { |
|
| 118 | + $shortcode = clone( self::$shortcodes[ $shortcode_name ] ); |
|
| 119 | 119 | } else { |
| 120 | 120 | /** This is some generic shortcode. */ |
| 121 | 121 | $shortcode = new self; |