@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | |
41 | 41 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
42 | 42 | |
43 | - unset ( $field_options['search_filter'], $field_options['show_as_link'] ); |
|
43 | + unset ( $field_options[ 'search_filter' ], $field_options[ 'show_as_link' ] ); |
|
44 | 44 | |
45 | 45 | $new_fields = array( |
46 | 46 | 'content' => array( |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | ); |
69 | 69 | |
70 | 70 | if ( 'edit' === $context ) { |
71 | - unset( $field_options['custom_label'], $field_options['show_label'], $field_options['allow_edit_cap'], $new_fields['wpautop'], $new_fields['oembed'] ); |
|
71 | + unset( $field_options[ 'custom_label' ], $field_options[ 'show_label' ], $field_options[ 'allow_edit_cap' ], $new_fields[ 'wpautop' ], $new_fields[ 'oembed' ] ); |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | return $new_fields + $field_options; |
@@ -102,9 +102,9 @@ discard block |
||
102 | 102 | |
103 | 103 | // Loop through the configured Edit Entry fields and add Custom Content fields if there are any |
104 | 104 | // TODO: Make this available to other custom GV field types |
105 | - foreach ( (array) $edit_fields as $edit_field ) { |
|
105 | + foreach ( (array)$edit_fields as $edit_field ) { |
|
106 | 106 | |
107 | - if( 'custom' === \GV\Utils::get( $edit_field, 'id') ) { |
|
107 | + if ( 'custom' === \GV\Utils::get( $edit_field, 'id' ) ) { |
|
108 | 108 | |
109 | 109 | $field_data = array( |
110 | 110 | 'label' => \GV\Utils::get( $edit_field, 'custom_label' ), |
@@ -117,13 +117,13 @@ discard block |
||
117 | 117 | $field_data[ $key ] = GravityView_Merge_Tags::replace_variables( $field_datum, $form, $entry->as_entry(), false, false ); |
118 | 118 | } |
119 | 119 | |
120 | - $field_data['cssClass'] = \GV\Utils::get( $edit_field, 'custom_class' ); |
|
120 | + $field_data[ 'cssClass' ] = \GV\Utils::get( $edit_field, 'custom_class' ); |
|
121 | 121 | |
122 | - $new_fields[] = new GF_Field_HTML( $field_data ); |
|
122 | + $new_fields[ ] = new GF_Field_HTML( $field_data ); |
|
123 | 123 | |
124 | 124 | } else { |
125 | - if( isset( $fields[ $i ] ) ) { |
|
126 | - $new_fields[] = $fields[ $i ]; |
|
125 | + if ( isset( $fields[ $i ] ) ) { |
|
126 | + $new_fields[ ] = $fields[ $i ]; |
|
127 | 127 | } |
128 | 128 | $i++; |
129 | 129 | } |