@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | * @see GFCommon::get_field_filter_settings Gravity Forms suggests checkboxes should just be "contains" |
| 14 | 14 | * @var array |
| 15 | 15 | */ |
| 16 | - var $search_operators = array( 'is', 'in', 'not in', 'isnot', 'contains'); |
|
| 16 | + var $search_operators = array( 'is', 'in', 'not in', 'isnot', 'contains' ); |
|
| 17 | 17 | |
| 18 | 18 | var $is_searchable = true; |
| 19 | 19 | |
@@ -45,8 +45,8 @@ discard block |
||
| 45 | 45 | // Set the $_field_id var |
| 46 | 46 | $field_options = parent::field_options( $field_options, $template_id, $field_id, $context, $input_type ); |
| 47 | 47 | |
| 48 | - if( $this->is_choice_value_enabled() ) { |
|
| 49 | - $field_options['choice_display'] = array( |
|
| 48 | + if ( $this->is_choice_value_enabled() ) { |
|
| 49 | + $field_options[ 'choice_display' ] = array( |
|
| 50 | 50 | 'type' => 'radio', |
| 51 | 51 | 'value' => 'value', |
| 52 | 52 | 'label' => __( 'What should be displayed:', 'gravityview' ), |
@@ -60,8 +60,8 @@ discard block |
||
| 60 | 60 | |
| 61 | 61 | if ( 'address' === \GV\Utils::get( $search_field, 'type' ) ) { |
| 62 | 62 | |
| 63 | - $field_id = intval( floor( $search_field['key'] ) ); |
|
| 64 | - $input_id = gravityview_get_input_id_from_id( $search_field['key'] ); |
|
| 63 | + $field_id = intval( floor( $search_field[ 'key' ] ) ); |
|
| 64 | + $input_id = gravityview_get_input_id_from_id( $search_field[ 'key' ] ); |
|
| 65 | 65 | $form = GravityView_View::getInstance()->getForm(); |
| 66 | 66 | |
| 67 | 67 | /** @var GF_Field_Address $address_field */ |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | $choices = array(); |
| 71 | 71 | |
| 72 | 72 | $method_name = 'get_choices_' . self::get_input_type_from_input_id( $input_id ); |
| 73 | - if( method_exists( $this, $method_name ) ) { |
|
| 73 | + if ( method_exists( $this, $method_name ) ) { |
|
| 74 | 74 | /** |
| 75 | 75 | * @uses GravityView_Field_Address::get_choices_country() |
| 76 | 76 | * @uses GravityView_Field_Address::get_choices_state() |
@@ -78,12 +78,12 @@ discard block |
||
| 78 | 78 | $choices = $this->{$method_name}( $address_field ); |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - if( ! empty( $choices ) ) { |
|
| 82 | - $search_field['choices'] = $choices; |
|
| 83 | - $search_field['type'] = \GV\Utils::get( $search_field, 'input'); |
|
| 81 | + if ( ! empty( $choices ) ) { |
|
| 82 | + $search_field[ 'choices' ] = $choices; |
|
| 83 | + $search_field[ 'type' ] = \GV\Utils::get( $search_field, 'input' ); |
|
| 84 | 84 | } else { |
| 85 | - $search_field['type'] = 'text'; |
|
| 86 | - $search_field['input'] = 'input_text'; |
|
| 85 | + $search_field[ 'type' ] = 'text'; |
|
| 86 | + $search_field[ 'input' ] = 'input_text'; |
|
| 87 | 87 | } |
| 88 | 88 | } |
| 89 | 89 | } |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | $country_choices = array(); |
| 110 | 110 | |
| 111 | 111 | foreach ( $countries as $key => $country ) { |
| 112 | - $country_choices[] = array( |
|
| 112 | + $country_choices[ ] = array( |
|
| 113 | 113 | 'value' => $country, |
| 114 | 114 | 'text' => $country, |
| 115 | 115 | ); |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | */ |
| 134 | 134 | private function get_choices_state( $address_field ) { |
| 135 | 135 | |
| 136 | - $address_type = empty( $address_field->addressType ) ? $address_field->get_default_address_type( $form['id'] ) : $address_field->addressType; |
|
| 136 | + $address_type = empty( $address_field->addressType ) ? $address_field->get_default_address_type( $form[ 'id' ] ) : $address_field->addressType; |
|
| 137 | 137 | |
| 138 | 138 | $state_choices = array(); |
| 139 | 139 | |
@@ -145,12 +145,12 @@ discard block |
||
| 145 | 145 | $states = GFCommon::get_canadian_provinces(); |
| 146 | 146 | break; |
| 147 | 147 | default: |
| 148 | - $states = empty( $address_types[ $address_type ]['states'] ) ? array() : $address_types[ $address_type ]['states']; |
|
| 148 | + $states = empty( $address_types[ $address_type ][ 'states' ] ) ? array() : $address_types[ $address_type ][ 'states' ]; |
|
| 149 | 149 | break; |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | 152 | foreach ( $states as $key => $state ) { |
| 153 | - $state_choices[] = array( |
|
| 153 | + $state_choices[ ] = array( |
|
| 154 | 154 | 'value' => $state, |
| 155 | 155 | 'text' => $state, |
| 156 | 156 | ); |
@@ -173,13 +173,13 @@ discard block |
||
| 173 | 173 | // Use the same inputs as the "text" input type allows |
| 174 | 174 | $text_inputs = \GV\Utils::get( $input_types, 'text' ); |
| 175 | 175 | |
| 176 | - $input_types['street'] = $text_inputs; |
|
| 177 | - $input_types['street2'] = $text_inputs; |
|
| 178 | - $input_types['city'] = $text_inputs; |
|
| 176 | + $input_types[ 'street' ] = $text_inputs; |
|
| 177 | + $input_types[ 'street2' ] = $text_inputs; |
|
| 178 | + $input_types[ 'city' ] = $text_inputs; |
|
| 179 | 179 | |
| 180 | - $input_types['state'] = array( 'select', 'radio', 'link' ) + $text_inputs; |
|
| 181 | - $input_types['zip'] = array( 'input_text' ); |
|
| 182 | - $input_types['country'] = array( 'select', 'radio', 'link' ) + $text_inputs; |
|
| 180 | + $input_types[ 'state' ] = array( 'select', 'radio', 'link' ) + $text_inputs; |
|
| 181 | + $input_types[ 'zip' ] = array( 'input_text' ); |
|
| 182 | + $input_types[ 'country' ] = array( 'select', 'radio', 'link' ) + $text_inputs; |
|
| 183 | 183 | |
| 184 | 184 | return $input_types; |
| 185 | 185 | } |
@@ -200,10 +200,10 @@ discard block |
||
| 200 | 200 | // Is this search field for an input (eg: 4.2) or the whole address field (eg: 4)? |
| 201 | 201 | $input_id = gravityview_get_input_id_from_id( $field_id ); |
| 202 | 202 | |
| 203 | - if( 'address' === $field_type && $input_id ) { |
|
| 203 | + if ( 'address' === $field_type && $input_id ) { |
|
| 204 | 204 | |
| 205 | 205 | // If the input ID matches an expected address input, set to that. Otherwise, keep existing input type. |
| 206 | - if( $address_field_name = self::get_input_type_from_input_id( $input_id ) ) { |
|
| 206 | + if ( $address_field_name = self::get_input_type_from_input_id( $input_id ) ) { |
|
| 207 | 207 | $input_type = $address_field_name; |
| 208 | 208 | } |
| 209 | 209 | } |
@@ -252,20 +252,20 @@ discard block |
||
| 252 | 252 | function field_options( $field_options, $template_id = '', $field_id = '', $context = '', $input_type = '' ) { |
| 253 | 253 | |
| 254 | 254 | // If this is NOT the full address field, return default options. |
| 255 | - if( floor( $field_id ) !== floatval( $field_id ) ) { |
|
| 255 | + if ( floor( $field_id ) !== floatval( $field_id ) ) { |
|
| 256 | 256 | return $field_options; |
| 257 | 257 | } |
| 258 | 258 | |
| 259 | - if( 'edit' === $context ) { |
|
| 259 | + if ( 'edit' === $context ) { |
|
| 260 | 260 | return $field_options; |
| 261 | 261 | } |
| 262 | 262 | |
| 263 | 263 | $add_options = array(); |
| 264 | 264 | |
| 265 | - $add_options['show_map_link'] = array( |
|
| 265 | + $add_options[ 'show_map_link' ] = array( |
|
| 266 | 266 | 'type' => 'checkbox', |
| 267 | 267 | 'label' => __( 'Show Map Link:', 'gravityview' ), |
| 268 | - 'desc' => __('Display a "Map It" link below the address', 'gravityview'), |
|
| 268 | + 'desc' => __( 'Display a "Map It" link below the address', 'gravityview' ), |
|
| 269 | 269 | 'value' => true, |
| 270 | 270 | 'merge_tags' => false, |
| 271 | 271 | ); |
@@ -35,11 +35,11 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
| 37 | 37 | |
| 38 | - if( 'edit' === $context ) { |
|
| 38 | + if ( 'edit' === $context ) { |
|
| 39 | 39 | return $field_options; |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | - $this->add_field_support('date_display', $field_options ); |
|
| 42 | + $this->add_field_support( 'date_display', $field_options ); |
|
| 43 | 43 | |
| 44 | 44 | return $field_options; |
| 45 | 45 | } |
@@ -61,9 +61,9 @@ discard block |
||
| 61 | 61 | public function get_content( $output = '', $entry = array(), $field_settings = array(), $field = array() ) { |
| 62 | 62 | |
| 63 | 63 | /** Overridden by a template. */ |
| 64 | - if( ! empty( $field['field_path'] ) ) { return $output; } |
|
| 64 | + if ( ! empty( $field[ 'field_path' ] ) ) { return $output; } |
|
| 65 | 65 | |
| 66 | - return GVCommon::format_date( $field['value'], 'format=' . \GV\Utils::get( $field_settings, 'date_display' ) ); |
|
| 66 | + return GVCommon::format_date( $field[ 'value' ], 'format=' . \GV\Utils::get( $field_settings, 'date_display' ) ); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | /** |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | * |
| 82 | 82 | * @return string Original text if {date_created} isn't found. Otherwise, replaced text. |
| 83 | 83 | */ |
| 84 | - public function replace_merge_tag( $matches = array(), $text = '', $form = array(), $entry = array(), $url_encode = false, $esc_html = false ) { |
|
| 84 | + public function replace_merge_tag( $matches = array(), $text = '', $form = array(), $entry = array(), $url_encode = false, $esc_html = false ) { |
|
| 85 | 85 | |
| 86 | 86 | $return = $text; |
| 87 | 87 | |
@@ -90,8 +90,8 @@ discard block |
||
| 90 | 90 | |
| 91 | 91 | foreach ( $matches as $match ) { |
| 92 | 92 | |
| 93 | - $full_tag = $match[0]; |
|
| 94 | - $property = $match[1]; |
|
| 93 | + $full_tag = $match[ 0 ]; |
|
| 94 | + $property = $match[ 1 ]; |
|
| 95 | 95 | |
| 96 | 96 | $formatted_date = GravityView_Merge_Tags::format_date( $date_created, $property ); |
| 97 | 97 | |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | |
| 12 | 12 | var $is_searchable = true; |
| 13 | 13 | |
| 14 | - var $search_operators = array( 'is', 'in', 'not in', 'isnot', 'contains'); |
|
| 14 | + var $search_operators = array( 'is', 'in', 'not in', 'isnot', 'contains' ); |
|
| 15 | 15 | |
| 16 | 16 | var $_gf_field_class_name = 'GF_Field_Post_Category'; |
| 17 | 17 | |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | $entry = GFAPI::get_entry( $entry_id ); |
| 45 | 45 | $post_id = \GV\Utils::get( $entry, 'post_id' ); |
| 46 | 46 | |
| 47 | - if( empty( $post_id ) ) { |
|
| 47 | + if ( empty( $post_id ) ) { |
|
| 48 | 48 | return false; |
| 49 | 49 | } |
| 50 | 50 | |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | |
| 53 | 53 | $post_category_fields = GFAPI::get_fields_by_type( $form, 'post_category' ); |
| 54 | 54 | |
| 55 | - if( $post_category_fields ) { |
|
| 55 | + if ( $post_category_fields ) { |
|
| 56 | 56 | |
| 57 | 57 | $updated_categories = array(); |
| 58 | 58 | |
@@ -119,18 +119,18 @@ discard block |
||
| 119 | 119 | * |
| 120 | 120 | * @return mixed |
| 121 | 121 | */ |
| 122 | - function edit_entry_post_category_choices( $choices, $field, $form_id ) { |
|
| 122 | + function edit_entry_post_category_choices( $choices, $field, $form_id ) { |
|
| 123 | 123 | |
| 124 | - $entry = GravityView_Edit_Entry::getInstance()->instances['render']->get_entry(); |
|
| 124 | + $entry = GravityView_Edit_Entry::getInstance()->instances[ 'render' ]->get_entry(); |
|
| 125 | 125 | |
| 126 | 126 | // $entry['post_id'] should always be set, but we check to make sure. |
| 127 | - if( $entry && isset( $entry['post_id'] ) && $post_id = $entry['post_id'] ) { |
|
| 127 | + if ( $entry && isset( $entry[ 'post_id' ] ) && $post_id = $entry[ 'post_id' ] ) { |
|
| 128 | 128 | |
| 129 | 129 | $post_categories = wp_get_post_categories( $post_id, array( 'fields' => 'ids' ) ); |
| 130 | 130 | |
| 131 | 131 | // Always use the live value |
| 132 | 132 | foreach ( $choices as &$choice ) { |
| 133 | - $choice['isSelected'] = in_array( $choice['value'], array_values( $post_categories ) ); |
|
| 133 | + $choice[ 'isSelected' ] = in_array( $choice[ 'value' ], array_values( $post_categories ) ); |
|
| 134 | 134 | } |
| 135 | 135 | } |
| 136 | 136 | |
@@ -139,12 +139,12 @@ discard block |
||
| 139 | 139 | |
| 140 | 140 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
| 141 | 141 | |
| 142 | - if( 'edit' === $context ) { |
|
| 142 | + if ( 'edit' === $context ) { |
|
| 143 | 143 | return $field_options; |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | - $this->add_field_support('dynamic_data', $field_options ); |
|
| 147 | - $this->add_field_support('link_to_term', $field_options ); |
|
| 146 | + $this->add_field_support( 'dynamic_data', $field_options ); |
|
| 147 | + $this->add_field_support( 'link_to_term', $field_options ); |
|
| 148 | 148 | |
| 149 | 149 | return $field_options; |
| 150 | 150 | } |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | /** @var WP_Admin_Bar $wp_admin_bar */ |
| 39 | 39 | global $wp_admin_bar; |
| 40 | 40 | |
| 41 | - if( is_admin() || ! GVCommon::has_cap( array( 'edit_gravityviews', 'gravityview_edit_entry', 'gravityforms_edit_forms' ) ) ) { |
|
| 41 | + if ( is_admin() || ! GVCommon::has_cap( array( 'edit_gravityviews', 'gravityview_edit_entry', 'gravityforms_edit_forms' ) ) ) { |
|
| 42 | 42 | return; |
| 43 | 43 | } |
| 44 | 44 | |
@@ -103,9 +103,9 @@ discard block |
||
| 103 | 103 | 'parent' => 'gravityview', |
| 104 | 104 | 'title' => __( 'Edit Entry', 'gravityview' ), |
| 105 | 105 | 'meta' => array( |
| 106 | - 'title' => sprintf( __( 'Edit Entry %s', 'gravityview' ), GravityView_API::get_entry_slug( $entry['id'], $entry ) ), |
|
| 106 | + 'title' => sprintf( __( 'Edit Entry %s', 'gravityview' ), GravityView_API::get_entry_slug( $entry[ 'id' ], $entry ) ), |
|
| 107 | 107 | ), |
| 108 | - 'href' => esc_url_raw( admin_url( sprintf( 'admin.php?page=gf_entries&screen_mode=edit&view=entry&id=%d&lid=%d', $entry['form_id'], $entry['id'] ) ) ), |
|
| 108 | + 'href' => esc_url_raw( admin_url( sprintf( 'admin.php?page=gf_entries&screen_mode=edit&view=entry&id=%d&lid=%d', $entry[ 'form_id' ], $entry[ 'id' ] ) ) ), |
|
| 109 | 109 | ) ); |
| 110 | 110 | |
| 111 | 111 | } |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | /** @var WP_Admin_Bar $wp_admin_bar */ |
| 122 | 122 | global $wp_admin_bar; |
| 123 | 123 | |
| 124 | - if( GVCommon::has_cap( array( 'edit_gravityviews', 'edit_gravityview', 'gravityforms_edit_forms' ) ) ) { |
|
| 124 | + if ( GVCommon::has_cap( array( 'edit_gravityviews', 'edit_gravityview', 'gravityforms_edit_forms' ) ) ) { |
|
| 125 | 125 | |
| 126 | 126 | $view_data = GravityView_View_Data::getInstance(); |
| 127 | 127 | $views = $view_data->get_views(); |
@@ -133,21 +133,21 @@ discard block |
||
| 133 | 133 | $added_views = array(); |
| 134 | 134 | |
| 135 | 135 | foreach ( $views as $view ) { |
| 136 | - $view = \GV\View::by_id( $view['id'] ); |
|
| 136 | + $view = \GV\View::by_id( $view[ 'id' ] ); |
|
| 137 | 137 | $view_id = $view->ID; |
| 138 | 138 | $form_id = $view->form ? $view->form->ID : null; |
| 139 | 139 | |
| 140 | 140 | $edit_view_title = __( 'Edit View', 'gravityview' ); |
| 141 | 141 | $edit_form_title = __( 'Edit Form', 'gravityview' ); |
| 142 | 142 | |
| 143 | - if( sizeof( $views ) > 1 ) { |
|
| 143 | + if ( sizeof( $views ) > 1 ) { |
|
| 144 | 144 | $edit_view_title = sprintf( _x( 'Edit View #%d', 'Edit View with the ID of %d', 'gravityview' ), $view_id ); |
| 145 | 145 | $edit_form_title = sprintf( __( 'Edit Form #%d', 'Edit Form with the ID of %d', 'gravityview' ), $form_id ); |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | - if( GVCommon::has_cap( 'edit_gravityview', $view_id ) && ! in_array( $view_id, $added_views ) ) { |
|
| 148 | + if ( GVCommon::has_cap( 'edit_gravityview', $view_id ) && ! in_array( $view_id, $added_views ) ) { |
|
| 149 | 149 | |
| 150 | - $added_views[] = $view_id; |
|
| 150 | + $added_views[ ] = $view_id; |
|
| 151 | 151 | |
| 152 | 152 | $wp_admin_bar->add_menu( array( |
| 153 | 153 | 'id' => 'edit-view-' . $view_id, |
@@ -157,9 +157,9 @@ discard block |
||
| 157 | 157 | ) ); |
| 158 | 158 | } |
| 159 | 159 | |
| 160 | - if ( ! empty( $form_id ) && GVCommon::has_cap( array( 'gravityforms_edit_forms' ), $form_id ) && ! in_array( $form_id, $added_forms ) ) { |
|
| 160 | + if ( ! empty( $form_id ) && GVCommon::has_cap( array( 'gravityforms_edit_forms' ), $form_id ) && ! in_array( $form_id, $added_forms ) ) { |
|
| 161 | 161 | |
| 162 | - $added_forms[] = $form_id; |
|
| 162 | + $added_forms[ ] = $form_id; |
|
| 163 | 163 | |
| 164 | 164 | $wp_admin_bar->add_menu( array( |
| 165 | 165 | 'id' => 'edit-form-' . $form_id, |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | global $post; |
| 35 | 35 | |
| 36 | 36 | if ( $post ) { |
| 37 | - $context['post'] = $post; |
|
| 37 | + $context[ 'post' ] = $post; |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | \GV\Mocks\Legacy_Context::push( $context ); |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | * |
| 86 | 86 | * @var array |
| 87 | 87 | */ |
| 88 | - private $template_data_var_names = array('data'); |
|
| 88 | + private $template_data_var_names = array( 'data' ); |
|
| 89 | 89 | |
| 90 | 90 | /** |
| 91 | 91 | * Clean up template data. |
@@ -138,11 +138,11 @@ discard block |
||
| 138 | 138 | public function set_template_data( $data, $var_name = 'data' ) { |
| 139 | 139 | global $wp_query; |
| 140 | 140 | |
| 141 | - $wp_query->query_vars[ $var_name ] = (object) $data; |
|
| 141 | + $wp_query->query_vars[ $var_name ] = (object)$data; |
|
| 142 | 142 | |
| 143 | 143 | // Add $var_name to custom variable store if not default value |
| 144 | - if( $var_name !== 'data' ) { |
|
| 145 | - $this->template_data_var_names[] = $var_name; |
|
| 144 | + if ( $var_name !== 'data' ) { |
|
| 145 | + $this->template_data_var_names[ ] = $var_name; |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | return $this; |
@@ -165,8 +165,8 @@ discard block |
||
| 165 | 165 | |
| 166 | 166 | // Remove each custom data reference from $wp_query |
| 167 | 167 | foreach ( $custom_var_names as $var ) { |
| 168 | - if ( isset( $wp_query->query_vars[$var] ) ) { |
|
| 169 | - unset( $wp_query->query_vars[$var] ); |
|
| 168 | + if ( isset( $wp_query->query_vars[ $var ] ) ) { |
|
| 169 | + unset( $wp_query->query_vars[ $var ] ); |
|
| 170 | 170 | } |
| 171 | 171 | } |
| 172 | 172 | |
@@ -186,9 +186,9 @@ discard block |
||
| 186 | 186 | protected function get_template_file_names( $slug, $name ) { |
| 187 | 187 | $templates = array(); |
| 188 | 188 | if ( isset( $name ) ) { |
| 189 | - $templates[] = $slug . '-' . $name . '.php'; |
|
| 189 | + $templates[ ] = $slug . '-' . $name . '.php'; |
|
| 190 | 190 | } |
| 191 | - $templates[] = $slug . '.php'; |
|
| 191 | + $templates[ ] = $slug . '.php'; |
|
| 192 | 192 | |
| 193 | 193 | /** |
| 194 | 194 | * Allow template choices to be filtered. |
@@ -224,18 +224,18 @@ discard block |
||
| 224 | 224 | public function locate_template( $template_names, $load = false, $require_once = true ) { |
| 225 | 225 | |
| 226 | 226 | // Use $template_names as a cache key - either first element of array or the variable itself if it's a string |
| 227 | - $cache_key = is_array( $template_names ) ? $template_names[0] : $template_names; |
|
| 227 | + $cache_key = is_array( $template_names ) ? $template_names[ 0 ] : $template_names; |
|
| 228 | 228 | |
| 229 | 229 | // If the key is in the cache array, we've already located this file. |
| 230 | - if ( isset( $this->template_path_cache[$cache_key] ) ) { |
|
| 231 | - $located = $this->template_path_cache[$cache_key]; |
|
| 230 | + if ( isset( $this->template_path_cache[ $cache_key ] ) ) { |
|
| 231 | + $located = $this->template_path_cache[ $cache_key ]; |
|
| 232 | 232 | } else { |
| 233 | 233 | |
| 234 | 234 | // No file found yet. |
| 235 | 235 | $located = false; |
| 236 | 236 | |
| 237 | 237 | // Remove empty entries. |
| 238 | - $template_names = array_filter( (array) $template_names ); |
|
| 238 | + $template_names = array_filter( (array)$template_names ); |
|
| 239 | 239 | $template_paths = $this->get_template_paths(); |
| 240 | 240 | |
| 241 | 241 | // Try to find a template file. |
@@ -248,7 +248,7 @@ discard block |
||
| 248 | 248 | if ( file_exists( $template_path . $template_name ) ) { |
| 249 | 249 | $located = $template_path . $template_name; |
| 250 | 250 | // Store the template path in the cache |
| 251 | - $this->template_path_cache[$cache_key] = $located; |
|
| 251 | + $this->template_path_cache[ $cache_key ] = $located; |
|
| 252 | 252 | break 2; |
| 253 | 253 | } |
| 254 | 254 | } |
@@ -283,7 +283,7 @@ discard block |
||
| 283 | 283 | |
| 284 | 284 | // Only add this conditionally, so non-child themes don't redundantly check active theme twice. |
| 285 | 285 | if ( get_stylesheet_directory() !== get_template_directory() ) { |
| 286 | - $file_paths[1] = trailingslashit( get_stylesheet_directory() ) . $theme_directory; |
|
| 286 | + $file_paths[ 1 ] = trailingslashit( get_stylesheet_directory() ) . $theme_directory; |
|
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | /** |
@@ -115,8 +115,8 @@ |
||
| 115 | 115 | 'entries' => $entries, |
| 116 | 116 | 'request' => $request, |
| 117 | 117 | ), empty( $parameters ) ? array() : array( |
| 118 | - 'paging' => $parameters['paging'], |
|
| 119 | - 'sorting' => $parameters['sorting'], |
|
| 118 | + 'paging' => $parameters[ 'paging' ], |
|
| 119 | + 'sorting' => $parameters[ 'sorting' ], |
|
| 120 | 120 | ), empty( $post ) ? array() : array( |
| 121 | 121 | 'post' => $post, |
| 122 | 122 | ) ) ); |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | /** |
| 82 | 82 | * @see RGFormsModel::update_lead_property() Trigger when any entry property changes |
| 83 | 83 | */ |
| 84 | - foreach( $this->lead_db_columns as $column ) { |
|
| 84 | + foreach ( $this->lead_db_columns as $column ) { |
|
| 85 | 85 | add_action( 'gform_update_' . $column, array( $this, 'entry_status_changed' ), 10, 3 ); |
| 86 | 86 | } |
| 87 | 87 | |
@@ -114,9 +114,9 @@ discard block |
||
| 114 | 114 | return; |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | - gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{lead_id} was deleted', array( 'form_id' => $entry['form_id'], 'entry_id' => $lead_id, 'data' => array( 'value' => $property_value, 'previous' => $previous_value ) ) ); |
|
| 117 | + gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{lead_id} was deleted', array( 'form_id' => $entry[ 'form_id' ], 'entry_id' => $lead_id, 'data' => array( 'value' => $property_value, 'previous' => $previous_value ) ) ); |
|
| 118 | 118 | |
| 119 | - $this->blacklist_add( $entry['form_id'] ); |
|
| 119 | + $this->blacklist_add( $entry[ 'form_id' ] ); |
|
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | /** |
@@ -129,9 +129,9 @@ discard block |
||
| 129 | 129 | */ |
| 130 | 130 | public function entry_updated( $form, $lead_id ) { |
| 131 | 131 | |
| 132 | - gravityview()->log->debug(' adding form {form_id} to blacklist because entry #{entry_id} was updated', array( 'form_id' => $form['id'], 'entry_id' => $lead_id ) ); |
|
| 132 | + gravityview()->log->debug( ' adding form {form_id} to blacklist because entry #{entry_id} was updated', array( 'form_id' => $form[ 'id' ], 'entry_id' => $lead_id ) ); |
|
| 133 | 133 | |
| 134 | - $this->blacklist_add( $form['id'] ); |
|
| 134 | + $this->blacklist_add( $form[ 'id' ] ); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | /** |
@@ -146,9 +146,9 @@ discard block |
||
| 146 | 146 | */ |
| 147 | 147 | public function entry_created( $entry, $form ) { |
| 148 | 148 | |
| 149 | - gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{entry_id} was created', array( 'form_id' => $form['id'], 'entry_id' => $entry['id'] ) ); |
|
| 149 | + gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{entry_id} was created', array( 'form_id' => $form[ 'id' ], 'entry_id' => $entry[ 'id' ] ) ); |
|
| 150 | 150 | |
| 151 | - $this->blacklist_add( $form['id'] ); |
|
| 151 | + $this->blacklist_add( $form[ 'id' ] ); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | /** |
@@ -164,9 +164,9 @@ discard block |
||
| 164 | 164 | return; |
| 165 | 165 | } |
| 166 | 166 | |
| 167 | - gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{entry_id} was added', array( 'form_id' => $form['id'], 'entry_id' => $entry['id'] ) ); |
|
| 167 | + gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{entry_id} was added', array( 'form_id' => $form[ 'id' ], 'entry_id' => $entry[ 'id' ] ) ); |
|
| 168 | 168 | |
| 169 | - $this->blacklist_add( $form['id'] ); |
|
| 169 | + $this->blacklist_add( $form[ 'id' ] ); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | /** |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | // Normally just one form, but supports multiple forms |
| 186 | 186 | // |
| 187 | 187 | // Array of IDs 12, 5, 14 would result in `f:12-f:5-f:14` |
| 188 | - $forms = 'f:' . implode( '-f:', (array) $form_ids ); |
|
| 188 | + $forms = 'f:' . implode( '-f:', (array)$form_ids ); |
|
| 189 | 189 | |
| 190 | 190 | // Prefix for transient keys |
| 191 | 191 | // Now the prefix would be: `gv-cache-f:12-f:5-f:14-` |
@@ -242,7 +242,7 @@ discard block |
||
| 242 | 242 | ) ) ); |
| 243 | 243 | |
| 244 | 244 | // Add the passed form IDs |
| 245 | - $blacklist = array_merge( (array) $blacklist, $form_ids ); |
|
| 245 | + $blacklist = array_merge( (array)$blacklist, $form_ids ); |
|
| 246 | 246 | |
| 247 | 247 | // Don't duplicate |
| 248 | 248 | $blacklist = array_unique( $blacklist ); |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | |
| 266 | 266 | $blacklist = get_option( self::BLACKLIST_OPTION_NAME, array() ); |
| 267 | 267 | |
| 268 | - $updated_list = array_diff( $blacklist, (array) $form_ids ); |
|
| 268 | + $updated_list = array_diff( $blacklist, (array)$form_ids ); |
|
| 269 | 269 | |
| 270 | 270 | gravityview()->log->debug( 'Removing form IDs from cache blacklist', array( 'data' => array( |
| 271 | 271 | '$form_ids' => $form_ids, |
@@ -298,7 +298,7 @@ discard block |
||
| 298 | 298 | return false; |
| 299 | 299 | } |
| 300 | 300 | |
| 301 | - foreach ( (array) $form_ids as $form_id ) { |
|
| 301 | + foreach ( (array)$form_ids as $form_id ) { |
|
| 302 | 302 | |
| 303 | 303 | if ( in_array( $form_id, $blacklist ) ) { |
| 304 | 304 | |
@@ -370,7 +370,7 @@ discard block |
||
| 370 | 370 | * @filter `gravityview_cache_time_{$filter_name}` Modify the cache time for a type of cache |
| 371 | 371 | * @param int $time_in_seconds Default: `DAY_IN_SECONDS` |
| 372 | 372 | */ |
| 373 | - $cache_time = (int) apply_filters( 'gravityview_cache_time_' . $filter_name, DAY_IN_SECONDS ); |
|
| 373 | + $cache_time = (int)apply_filters( 'gravityview_cache_time_' . $filter_name, DAY_IN_SECONDS ); |
|
| 374 | 374 | |
| 375 | 375 | gravityview()->log->debug( 'Setting cache with transient key {key} for {cache_time} seconds', array( 'key' => $this->key, 'cache_time' => $cache_time ) ); |
| 376 | 376 | |
@@ -406,7 +406,7 @@ discard block |
||
| 406 | 406 | return; |
| 407 | 407 | } |
| 408 | 408 | |
| 409 | - foreach ( (array) $form_ids as $form_id ) { |
|
| 409 | + foreach ( (array)$form_ids as $form_id ) { |
|
| 410 | 410 | |
| 411 | 411 | $key = '_transient_gv-cache-'; |
| 412 | 412 | |
@@ -522,7 +522,7 @@ discard block |
||
| 522 | 522 | public function use_cache() { |
| 523 | 523 | |
| 524 | 524 | // Exit early if debugging (unless running PHPUnit) |
| 525 | - if ( defined( 'WP_DEBUG' ) && WP_DEBUG && ! ( defined('DOING_GRAVITYVIEW_TESTS' ) && DOING_GRAVITYVIEW_TESTS ) ) { |
|
| 525 | + if ( defined( 'WP_DEBUG' ) && WP_DEBUG && ! ( defined( 'DOING_GRAVITYVIEW_TESTS' ) && DOING_GRAVITYVIEW_TESTS ) ) { |
|
| 526 | 526 | return apply_filters( 'gravityview_use_cache', false, $this ); |
| 527 | 527 | } |
| 528 | 528 | |
@@ -530,7 +530,7 @@ discard block |
||
| 530 | 530 | |
| 531 | 531 | if ( GVCommon::has_cap( 'edit_gravityviews' ) ) { |
| 532 | 532 | |
| 533 | - if ( isset( $_GET['cache'] ) || isset( $_GET['nocache'] ) ) { |
|
| 533 | + if ( isset( $_GET[ 'cache' ] ) || isset( $_GET[ 'nocache' ] ) ) { |
|
| 534 | 534 | |
| 535 | 535 | gravityview()->log->debug( 'Not using cache: ?cache or ?nocache is in the URL' ); |
| 536 | 536 | |
@@ -557,7 +557,7 @@ discard block |
||
| 557 | 557 | */ |
| 558 | 558 | $use_cache = apply_filters( 'gravityview_use_cache', $use_cache, $this ); |
| 559 | 559 | |
| 560 | - return (boolean) $use_cache; |
|
| 560 | + return (boolean)$use_cache; |
|
| 561 | 561 | } |
| 562 | 562 | |
| 563 | 563 | } |