Completed
Push — develop ( c08328...40b6cc )
by Zack
08:12 queued 03:54
created
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.
templates/fields/post_category.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 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
 
Please login to merge, or discard this patch.
templates/fields/post_content.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 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
 
Please login to merge, or discard this patch.
templates/fields/post_id.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 post_id field type
4
- *
5
- * @package GravityView
6
- * @subpackage GravityView/templates/fields
7
- */
3
+	 * Display the post_id 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/post_title.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 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
 
Please login to merge, or discard this patch.
templates/fields/product.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 product field type
4
- *
5
- * @package GravityView
6
- * @subpackage GravityView/templates/fields
7
- */
3
+	 * Display the product 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.