Completed
Branch master (3ac4b1)
by Zack
04:30
created
includes/widgets/search-widget/templates/search-field-radio.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Display the search RADIO input field
4
- *
5
- * @see class-search-widget.php
6
- */
3
+			 * Display the search RADIO input field
4
+			 *
5
+			 * @see class-search-widget.php
6
+			 */
7 7
 
8 8
 $gravityview_view = GravityView_View::getInstance();
9 9
 $view_id = $gravityview_view->getViewId();
Please login to merge, or discard this patch.
includes/widgets/search-widget/templates/search-field-single_checkbox.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Display the search single CHECKBOX input field ( on/off type)
4
- *
5
- * @see class-search-widget.php
6
- */
3
+			 * Display the search single CHECKBOX input field ( on/off type)
4
+			 *
5
+			 * @see class-search-widget.php
6
+			 */
7 7
 
8 8
 $gravityview_view = GravityView_View::getInstance();
9 9
 $view_id = $gravityview_view->getViewId();
Please login to merge, or discard this patch.
includes/wordpress-widgets/class-gravityview-recent-entries-widget.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file class-gravityview-recent-entries-widget.php
4
- */
3
+			 * @file class-gravityview-recent-entries-widget.php
4
+			 */
5 5
 
6 6
 /**
7 7
  * Class GravityView_Recent_Entries_Widget
@@ -184,8 +184,8 @@  discard block
 block discarded – undo
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'];
Please login to merge, or discard this patch.
templates/fields/address.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
templates/fields/gquiz_is_pass.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
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
 $gravityview_view = GravityView_View::getInstance();
10 10
 
Please login to merge, or discard this patch.
templates/fields/gquiz_percent.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
templates/fields/list.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Display the list field type
4
- *
5
- * @todo Confirm it works with http://gravitywiz.com/use-list-field-choices-gravity-forms/
6
- * @package GravityView
7
- * @subpackage GravityView/templates/fields
8
- * @global GF_Field_List $field
9
- * @global string $field_id ID of the field
10
- * @global string $value Gravity Forms serializes the list field values
11
- * @global string $display_value Field output HTML. For list fields with columns, it's a table. Otherwise, an unordered list
12
- */
3
+	 * Display the list field type
4
+	 *
5
+	 * @todo Confirm it works with http://gravitywiz.com/use-list-field-choices-gravity-forms/
6
+	 * @package GravityView
7
+	 * @subpackage GravityView/templates/fields
8
+	 * @global GF_Field_List $field
9
+	 * @global string $field_id ID of the field
10
+	 * @global string $value Gravity Forms serializes the list field values
11
+	 * @global string $display_value Field output HTML. For list fields with columns, it's a table. Otherwise, an unordered list
12
+	 */
13 13
 
14 14
 $gravityview_view = GravityView_View::getInstance();
15 15
 
Please login to merge, or discard this patch.
templates/fields/name.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Display the name field type
4
- *
5
- * @package GravityView
6
- * @subpackage GravityView/templates/fields
7
- */
3
+	 * Display the name field type
4
+	 *
5
+	 * @package GravityView
6
+	 * @subpackage GravityView/templates/fields
7
+	 */
8 8
 
9 9
 $gravityview_view = GravityView_View::getInstance();
10 10
 
Please login to merge, or discard this patch.
templates/fields/other_entries.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Display other entries created by the entry creator field type
4
- *
5
- * @package GravityView
6
- * @subpackage GravityView/templates/fields
7
- */
3
+	 * Display other entries created by the entry creator field type
4
+	 *
5
+	 * @package GravityView
6
+	 * @subpackage GravityView/templates/fields
7
+	 */
8 8
 
9 9
 $gravityview_view = GravityView_View::getInstance();
10 10
 
@@ -26,19 +26,19 @@  discard block
 block discarded – undo
26 26
 
27 27
 // Prepare paging criteria
28 28
 $criteria['paging'] = array(
29
-    'offset' => 0,
30
-    'page_size' => $view_settings['page_size']
29
+	'offset' => 0,
30
+	'page_size' => $view_settings['page_size']
31 31
 );
32 32
 
33 33
 // Prepare Search Criteria
34 34
 $criteria['search_criteria'] = array(
35
-    'field_filters' => array(
36
-        array(
37
-            'key' => 'created_by',
38
-            'value' => $created_by,
39
-            'operator' => 'is'
40
-        )
41
-    )
35
+	'field_filters' => array(
36
+		array(
37
+			'key' => 'created_by',
38
+			'value' => $created_by,
39
+			'operator' => 'is'
40
+		)
41
+	)
42 42
 );
43 43
 $criteria['search_criteria'] = GravityView_frontend::process_search_only_approved( $view_settings, $criteria['search_criteria'] );
44 44
 $criteria['search_criteria']['status'] = apply_filters( 'gravityview_status', 'active', $view_settings );
@@ -80,5 +80,5 @@  discard block
 block discarded – undo
80 80
  */
81 81
 $deprecated = apply_filters( 'gravityview/field/other_entries/args', array(), $field );
82 82
 if ( !empty( $deprecated ) ) {
83
-    _deprecated_function(  'The "gravityview/field/other_entries/args" filter', 'GravityView 1.11', 'gravityview/field/other_entries/criteria' );
83
+	_deprecated_function(  'The "gravityview/field/other_entries/args" filter', 'GravityView 1.11', 'gravityview/field/other_entries/criteria' );
84 84
 }
Please login to merge, or discard this patch.