@@ -25,7 +25,7 @@ |
||
25 | 25 | if( !isset( $field_settings['show_map_link'] ) || !empty( $field_settings['show_map_link'] ) ){ |
26 | 26 | |
27 | 27 | // Add the map link as another line |
28 | - $value_with_newline .= "\n" . gravityview_get_map_link( $value_with_newline ); |
|
28 | + $value_with_newline .= "\n" . gravityview_get_map_link( $value_with_newline ); |
|
29 | 29 | |
30 | 30 | } |
31 | 31 |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Display the post_category field type |
|
4 | - * |
|
5 | - * @package GravityView |
|
6 | - * @subpackage GravityView/templates/fields |
|
7 | - */ |
|
3 | + * Display the post_category field type |
|
4 | + * |
|
5 | + * @package GravityView |
|
6 | + * @subpackage GravityView/templates/fields |
|
7 | + */ |
|
8 | 8 | |
9 | 9 | $gravityview_view = GravityView_View::getInstance(); |
10 | 10 |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Display the post_content field type |
|
4 | - * |
|
5 | - * @package GravityView |
|
6 | - * @subpackage GravityView/templates/fields |
|
7 | - */ |
|
3 | + * Display the post_content field type |
|
4 | + * |
|
5 | + * @package GravityView |
|
6 | + * @subpackage GravityView/templates/fields |
|
7 | + */ |
|
8 | 8 | |
9 | 9 | $gravityview_view = GravityView_View::getInstance(); |
10 | 10 |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Display the post_title field type |
|
4 | - * |
|
5 | - * @package GravityView |
|
6 | - * @subpackage GravityView/templates/fields |
|
7 | - */ |
|
3 | + * Display the post_title field type |
|
4 | + * |
|
5 | + * @package GravityView |
|
6 | + * @subpackage GravityView/templates/fields |
|
7 | + */ |
|
8 | 8 | |
9 | 9 | $gravityview_view = GravityView_View::getInstance(); |
10 | 10 |
@@ -18,7 +18,7 @@ |
||
18 | 18 | } |
19 | 19 | |
20 | 20 | if( !empty( $field_settings['make_clickable'] ) ) { |
21 | - $value = make_clickable( $value ); |
|
21 | + $value = make_clickable( $value ); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | if( ! empty( $field_settings['new_window'] ) ) { |
@@ -28,10 +28,10 @@ |
||
28 | 28 | |
29 | 29 | $show_mt = $this->show_merge_tags(); |
30 | 30 | |
31 | - if( $show_mt && $this->field['merge_tags'] !== false || $this->field['merge_tags'] === 'force' ) { |
|
32 | - $class = 'merge-tag-support mt-position-right mt-hide_all_fields '; |
|
33 | - } |
|
34 | - $class .= !empty( $this->field['class'] ) ? $this->field['class'] : 'widefat'; |
|
31 | + if( $show_mt && $this->field['merge_tags'] !== false || $this->field['merge_tags'] === 'force' ) { |
|
32 | + $class = 'merge-tag-support mt-position-right mt-hide_all_fields '; |
|
33 | + } |
|
34 | + $class .= !empty( $this->field['class'] ) ? $this->field['class'] : 'widefat'; |
|
35 | 35 | |
36 | 36 | ?> |
37 | 37 | <input name="<?php echo esc_attr( $this->name ); ?>" id="<?php echo $this->get_field_id(); ?>" type="text" value="<?php echo esc_attr( $this->value ); ?>" class="<?php echo esc_attr( $class ); ?>"> |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Display Gravity Forms Quiz value Pass/Fail |
|
4 | - * |
|
5 | - * @package GravityView |
|
6 | - * @subpackage GravityView/templates/fields |
|
7 | - */ |
|
3 | + * Display Gravity Forms Quiz value Pass/Fail |
|
4 | + * |
|
5 | + * @package GravityView |
|
6 | + * @subpackage GravityView/templates/fields |
|
7 | + */ |
|
8 | 8 | |
9 | 9 | $field = GravityView_View::getInstance()->getCurrentField(); |
10 | 10 |
@@ -184,8 +184,8 @@ |
||
184 | 184 | // Get the settings for the View ID |
185 | 185 | $view_settings = gravityview_get_template_settings( $instance['view_id'] ); |
186 | 186 | |
187 | - // Set the context view ID to avoid conflicts with the Advanced Filter extension. |
|
188 | - $criteria['context_view_id'] = $instance['view_id']; |
|
187 | + // Set the context view ID to avoid conflicts with the Advanced Filter extension. |
|
188 | + $criteria['context_view_id'] = $instance['view_id']; |
|
189 | 189 | |
190 | 190 | $instance['limit'] = isset( $instance['limit'] ) ? $instance['limit'] : 10; |
191 | 191 | $view_settings['id'] = $instance['view_id']; |
@@ -1,9 +1,9 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Display the Search widget |
|
4 | - * |
|
5 | - * @see class-search-widget.php |
|
6 | - */ |
|
3 | + * Display the Search widget |
|
4 | + * |
|
5 | + * @see class-search-widget.php |
|
6 | + */ |
|
7 | 7 | |
8 | 8 | $gravityview_view = GravityView_View::getInstance(); |
9 | 9 |