@@ -27,7 +27,7 @@ |
||
27 | 27 | |
28 | 28 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
29 | 29 | |
30 | - unset ( $field_options['search_filter'], $field_options['show_as_link'] ); |
|
30 | + unset ( $field_options[ 'search_filter' ], $field_options[ 'show_as_link' ] ); |
|
31 | 31 | |
32 | 32 | return $field_options; |
33 | 33 | } |
@@ -31,7 +31,7 @@ |
||
31 | 31 | |
32 | 32 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
33 | 33 | |
34 | - $this->add_field_support('link_to_post', $field_options ); |
|
34 | + $this->add_field_support( 'link_to_post', $field_options ); |
|
35 | 35 | |
36 | 36 | return $field_options; |
37 | 37 | } |
@@ -28,9 +28,9 @@ |
||
28 | 28 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
29 | 29 | |
30 | 30 | // It makes no sense to use this as the link. |
31 | - unset( $field_options['show_as_link'] ); |
|
31 | + unset( $field_options[ 'show_as_link' ] ); |
|
32 | 32 | |
33 | - if( 'edit' === $context ) { |
|
33 | + if ( 'edit' === $context ) { |
|
34 | 34 | return $field_options; |
35 | 35 | } |
36 | 36 |
@@ -41,7 +41,7 @@ |
||
41 | 41 | * @return string If Gravity Flow not found, or entry not processed yet, returns initial value. Otherwise, returns name of workflow step. |
42 | 42 | */ |
43 | 43 | function modify_entry_value_workflow_current_status_timestamp( $output, $entry, $field_settings, $field ) { |
44 | - $timestamp = gform_get_meta( $entry['id'], 'workflow_current_status_timestamp' ); |
|
44 | + $timestamp = gform_get_meta( $entry[ 'id' ], 'workflow_current_status_timestamp' ); |
|
45 | 45 | |
46 | 46 | if ( ! $timestamp ) { |
47 | 47 | return $timestamp; |
@@ -47,16 +47,16 @@ |
||
47 | 47 | |
48 | 48 | foreach ( $shortcodes->get_shortcode_information( 'gravitypdf', $content ) as $shortcode ) { |
49 | 49 | // Let's make sure this entry ID is correct for the supplied form |
50 | - $form_id = $wpdb->get_var( $wpdb->prepare( "SELECT form_id FROM $table WHERE display_meta LIKE %s", '%"' . $wpdb->esc_like( $shortcode['attr']['id'] ) . '"%' ) ); |
|
50 | + $form_id = $wpdb->get_var( $wpdb->prepare( "SELECT form_id FROM $table WHERE display_meta LIKE %s", '%"' . $wpdb->esc_like( $shortcode[ 'attr' ][ 'id' ] ) . '"%' ) ); |
|
51 | 51 | |
52 | 52 | // Inject the needed entry ID |
53 | 53 | $replace = str_replace( |
54 | - sprintf( 'entry="%d"', $shortcode['attr']['entry'] ), |
|
55 | - sprintf( 'entry="%d"', $context->entry[ $form_id ]['id'] ), |
|
56 | - $shortcode['shortcode'] |
|
54 | + sprintf( 'entry="%d"', $shortcode[ 'attr' ][ 'entry' ] ), |
|
55 | + sprintf( 'entry="%d"', $context->entry[ $form_id ][ 'id' ] ), |
|
56 | + $shortcode[ 'shortcode' ] |
|
57 | 57 | ); |
58 | 58 | |
59 | - $content = str_replace( $shortcode['shortcode'], $replace, $content ); |
|
59 | + $content = str_replace( $shortcode[ 'shortcode' ], $replace, $content ); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | return $content; |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | do_action( 'gravityview_search_widget_fields_before', $this ); |
28 | 28 | |
29 | - foreach( array_merge( $this->search_fields, $this->permalink_fields ) as $search_field ) { |
|
29 | + foreach ( array_merge( $this->search_fields, $this->permalink_fields ) as $search_field ) { |
|
30 | 30 | |
31 | 31 | /** |
32 | 32 | * @action `gravityview_search_widget_field_before` Before each search input is rendered (other than the submit button) |
@@ -36,10 +36,10 @@ discard block |
||
36 | 36 | do_action( 'gravityview_search_widget_field_before', $this, $search_field ); |
37 | 37 | |
38 | 38 | $gravityview_view->search_field = $search_field; |
39 | - $this->render( 'search-field', $search_field['input'], false ); |
|
39 | + $this->render( 'search-field', $search_field[ 'input' ], false ); |
|
40 | 40 | |
41 | 41 | // show/hide the search button if there are input type fields |
42 | - if( !$has_inputs && $search_field['input'] != 'link' ) { |
|
42 | + if ( ! $has_inputs && $search_field[ 'input' ] != 'link' ) { |
|
43 | 43 | $has_inputs = true; |
44 | 44 | } |
45 | 45 | |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | */ |
58 | 58 | do_action( 'gravityview_search_widget_fields_after', $this ); |
59 | 59 | |
60 | - if( $has_inputs ) { |
|
60 | + if ( $has_inputs ) { |
|
61 | 61 | $this->render( 'search-field', 'submit', false ); |
62 | 62 | } |
63 | 63 | ?> |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | /** |
32 | 32 | * @action `gravityview_search_widget_field_before` Before each search input is rendered (other than the submit button) |
33 | 33 | * @param GravityView_Widget_Search $this GravityView Widget instance |
34 | - * @param array{key:string,label:string,value:string,type:string,choices:array} $search_field |
|
34 | + * @param array{key:string,label:string,value:string,type:string,choices:array} $search_field |
|
35 | 35 | */ |
36 | 36 | do_action( 'gravityview_search_widget_field_before', $this, $search_field ); |
37 | 37 | |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | /** |
47 | 47 | * @action `gravityview_search_widget_field_after` After each search input is rendered (other than the submit button) |
48 | 48 | * @param GravityView_Widget_Search $this GravityView Widget instance |
49 | - * @param array $search_field |
|
49 | + * @param array $search_field |
|
50 | 50 | */ |
51 | 51 | do_action( 'gravityview_search_widget_field_after', $this, $search_field ); |
52 | 52 | } |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | do_action( 'gravityview_search_widget_fields_after', $this ); |
59 | 59 | |
60 | 60 | if( $has_inputs ) { |
61 | - $this->render( 'search-field', 'submit', false ); |
|
62 | - } |
|
61 | + $this->render( 'search-field', 'submit', false ); |
|
62 | + } |
|
63 | 63 | ?> |
64 | 64 | </form> |
@@ -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, $form_id ); |
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' ), |
@@ -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_Radio'; |
17 | 17 | |
@@ -40,8 +40,8 @@ discard block |
||
40 | 40 | // Set the $_field_id var |
41 | 41 | $field_options = parent::field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ); |
42 | 42 | |
43 | - if( $this->is_choice_value_enabled() ) { |
|
44 | - $field_options['choice_display'] = array( |
|
43 | + if ( $this->is_choice_value_enabled() ) { |
|
44 | + $field_options[ 'choice_display' ] = array( |
|
45 | 45 | 'type' => 'radio', |
46 | 46 | 'value' => 'value', |
47 | 47 | 'label' => __( 'What should be displayed:', 'gravityview' ), |
@@ -44,8 +44,8 @@ |
||
44 | 44 | // Set the $_field_id var |
45 | 45 | $field_options = parent::field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ); |
46 | 46 | |
47 | - if( $this->is_choice_value_enabled() ) { |
|
48 | - $field_options['choice_display'] = array( |
|
47 | + if ( $this->is_choice_value_enabled() ) { |
|
48 | + $field_options[ 'choice_display' ] = array( |
|
49 | 49 | 'type' => 'radio', |
50 | 50 | 'value' => 'value', |
51 | 51 | 'label' => __( 'What should be displayed:', 'gravityview' ), |