Completed
Push — develop ( bd6ad5...7b688d )
by Zack
04:29
created
includes/presets/default-edit/class-gravityview-default-template-edit.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -18,18 +18,18 @@  discard block
 block discarded – undo
18 18
  */
19 19
 class GravityView_Default_Template_Edit extends GravityView_Template {
20 20
 
21
-	function __construct( $id = 'default_table_edit', $settings = array(), $field_options = array(), $areas = array() ) {
21
+	function __construct($id = 'default_table_edit', $settings = array(), $field_options = array(), $areas = array()) {
22 22
 
23 23
 		$edit_settings = array(
24 24
 			'slug' => 'edit',
25 25
 			'type' => 'internal',
26
-			'label' =>  __( 'Edit Table', 'gravityview' ),
26
+			'label' =>  __('Edit Table', 'gravityview'),
27 27
 			'description' => __('Display items in a table view.', 'gravityview'),
28 28
 			'logo' => plugins_url('includes/presets/default-table/logo-default-table.png', GRAVITYVIEW_FILE),
29 29
 			'css_source' => plugins_url('templates/css/table-view.css', GRAVITYVIEW_FILE),
30 30
 		);
31 31
 
32
-		$settings = wp_parse_args( $settings, $edit_settings );
32
+		$settings = wp_parse_args($settings, $edit_settings);
33 33
 
34 34
 		/**
35 35
 		 * @see  GravityView_Admin_Views::get_default_field_options() for Generic Field Options
@@ -42,14 +42,14 @@  discard block
 block discarded – undo
42 42
 				'1-1' => array(
43 43
 					array(
44 44
 						'areaid' => 'edit-fields',
45
-						'title' => __('Visible Edit Fields', 'gravityview' )
45
+						'title' => __('Visible Edit Fields', 'gravityview')
46 46
 					)
47 47
 				)
48 48
 			)
49 49
 		);
50 50
 
51 51
 
52
-		parent::__construct( $id, $settings, $field_options, $areas );
52
+		parent::__construct($id, $settings, $field_options, $areas);
53 53
 
54 54
 	}
55 55
 
Please login to merge, or discard this patch.
includes/presets/default-list/class-gravityview-default-template-list.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -6,23 +6,23 @@  discard block
 block discarded – undo
6 6
  */
7 7
 class GravityView_Default_Template_List extends GravityView_Template {
8 8
 
9
-	function __construct( $id = 'default_list', $settings = array(), $field_options = array(), $areas = array() ) {
9
+	function __construct($id = 'default_list', $settings = array(), $field_options = array(), $areas = array()) {
10 10
 
11 11
 		$list_settings = array(
12 12
 			'slug'        => 'list',
13 13
 			'type'        => 'custom',
14
-			'label'       => __( 'List (default)', 'gravityview' ),
15
-			'description' => __( 'Display items in a listing view.', 'gravityview' ),
16
-			'logo'        => plugins_url( 'includes/presets/default-list/logo-default-list.png', GRAVITYVIEW_FILE ),
17
-			'css_source'  => plugins_url( 'templates/css/list-view.css', GRAVITYVIEW_FILE ),
14
+			'label'       => __('List (default)', 'gravityview'),
15
+			'description' => __('Display items in a listing view.', 'gravityview'),
16
+			'logo'        => plugins_url('includes/presets/default-list/logo-default-list.png', GRAVITYVIEW_FILE),
17
+			'css_source'  => plugins_url('templates/css/list-view.css', GRAVITYVIEW_FILE),
18 18
 		);
19 19
 
20
-		$settings = wp_parse_args( $settings, $list_settings );
20
+		$settings = wp_parse_args($settings, $list_settings);
21 21
 
22 22
 		$field_options = array(
23 23
 			'show_as_link' => array(
24 24
 				'type'    => 'checkbox',
25
-				'label'   => __( 'Link to single entry', 'gravityview' ),
25
+				'label'   => __('Link to single entry', 'gravityview'),
26 26
 				'value'   => false,
27 27
 				'context' => 'directory'
28 28
 			),
@@ -33,27 +33,27 @@  discard block
 block discarded – undo
33 33
 				'1-1' => array(
34 34
 					array(
35 35
 						'areaid'   => 'list-title',
36
-						'title'    => __( 'Listing Title', 'gravityview' ),
36
+						'title'    => __('Listing Title', 'gravityview'),
37 37
 						'subtitle' => ''
38 38
 					),
39 39
 					array(
40 40
 						'areaid'   => 'list-subtitle',
41
-						'title'    => __( 'Subheading', 'gravityview' ),
42
-						'subtitle' => __( 'Data placed here will be bold.', 'gravityview' ),
41
+						'title'    => __('Subheading', 'gravityview'),
42
+						'subtitle' => __('Data placed here will be bold.', 'gravityview'),
43 43
 					),
44 44
 				),
45 45
 				'1-3' => array(
46 46
 					array(
47 47
 						'areaid'   => 'list-image',
48
-						'title'    => __( 'Image', 'gravityview' ),
49
-						'subtitle' => __( 'Leave empty to remove.', 'gravityview' ),
48
+						'title'    => __('Image', 'gravityview'),
49
+						'subtitle' => __('Leave empty to remove.', 'gravityview'),
50 50
 					)
51 51
 				),
52 52
 				'2-3' => array(
53 53
 					array(
54 54
 						'areaid'   => 'list-description',
55
-						'title'    => __( 'Other Fields', 'gravityview' ),
56
-						'subtitle' => __( 'Below the subheading, a good place for description and other data.', 'gravityview' ),
55
+						'title'    => __('Other Fields', 'gravityview'),
56
+						'subtitle' => __('Below the subheading, a good place for description and other data.', 'gravityview'),
57 57
 					)
58 58
 				)
59 59
 			),
@@ -61,21 +61,21 @@  discard block
 block discarded – undo
61 61
 				'1-2' => array(
62 62
 					array(
63 63
 						'areaid'   => 'list-footer-left',
64
-						'title'    => __( 'Footer Left', 'gravityview' ),
64
+						'title'    => __('Footer Left', 'gravityview'),
65 65
 						'subtitle' => ''
66 66
 					)
67 67
 				),
68 68
 				'2-2' => array(
69 69
 					array(
70 70
 						'areaid'   => 'list-footer-right',
71
-						'title'    => __( 'Footer Right', 'gravityview' ),
71
+						'title'    => __('Footer Right', 'gravityview'),
72 72
 						'subtitle' => ''
73 73
 					)
74 74
 				)
75 75
 			)
76 76
 		);
77 77
 
78
-		parent::__construct( $id, $settings, $field_options, $areas );
78
+		parent::__construct($id, $settings, $field_options, $areas);
79 79
 
80 80
 	}
81 81
 }
Please login to merge, or discard this patch.
includes/presets/default-table/class-gravityview-default-template-table.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -6,18 +6,18 @@  discard block
 block discarded – undo
6 6
  */
7 7
 class GravityView_Default_Template_Table extends GravityView_Template {
8 8
 
9
-	function __construct( $id = 'default_table', $settings = array(), $field_options = array(), $areas = array() ) {
9
+	function __construct($id = 'default_table', $settings = array(), $field_options = array(), $areas = array()) {
10 10
 
11 11
 		$table_settings = array(
12 12
 			'slug'        => 'table',
13 13
 			'type'        => 'custom',
14
-			'label'       => __( 'Table (default)', 'gravityview' ),
15
-			'description' => __( 'Display items in a table view.', 'gravityview' ),
16
-			'logo'        => plugins_url( 'includes/presets/default-table/logo-default-table.png', GRAVITYVIEW_FILE ),
17
-			'css_source'  => plugins_url( 'templates/css/table-view.css', GRAVITYVIEW_FILE ),
14
+			'label'       => __('Table (default)', 'gravityview'),
15
+			'description' => __('Display items in a table view.', 'gravityview'),
16
+			'logo'        => plugins_url('includes/presets/default-table/logo-default-table.png', GRAVITYVIEW_FILE),
17
+			'css_source'  => plugins_url('templates/css/table-view.css', GRAVITYVIEW_FILE),
18 18
 		);
19 19
 
20
-		$settings = wp_parse_args( $settings, $table_settings );
20
+		$settings = wp_parse_args($settings, $table_settings);
21 21
 
22 22
 		/**
23 23
 		 * @see  GravityView_Admin_Views::get_default_field_options() for Generic Field Options
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 		$field_options = array(
27 27
 			'show_as_link' => array(
28 28
 				'type'    => 'checkbox',
29
-				'label'   => __( 'Link to single entry', 'gravityview' ),
29
+				'label'   => __('Link to single entry', 'gravityview'),
30 30
 				'value'   => false,
31 31
 				'context' => 'directory'
32 32
 			),
@@ -37,15 +37,15 @@  discard block
 block discarded – undo
37 37
 				'1-1' => array(
38 38
 					array(
39 39
 						'areaid'   => 'table-columns',
40
-						'title'    => __( 'Visible Table Columns', 'gravityview' ),
41
-						'subtitle' => __( 'Each field will be displayed as a column in the table.', 'gravityview' ),
40
+						'title'    => __('Visible Table Columns', 'gravityview'),
41
+						'subtitle' => __('Each field will be displayed as a column in the table.', 'gravityview'),
42 42
 					)
43 43
 				)
44 44
 			)
45 45
 		);
46 46
 
47 47
 
48
-		parent::__construct( $id, $settings, $field_options, $areas );
48
+		parent::__construct($id, $settings, $field_options, $areas);
49 49
 
50 50
 	}
51 51
 }
Please login to merge, or discard this patch.
includes/presets/event-listings/class-gravityview-preset-event-listings.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,15 +21,15 @@
 block discarded – undo
21 21
 		$settings = array(
22 22
 			'slug'          => 'list',
23 23
 			'type'          => 'preset',
24
-			'label'         => __( 'Event Listings', 'gravityview' ),
25
-			'description'   => __( 'Present a list of your events.', 'gravityview' ),
26
-			'logo'          => plugins_url( 'includes/presets/event-listings/logo-event-listings.png', GRAVITYVIEW_FILE ),
24
+			'label'         => __('Event Listings', 'gravityview'),
25
+			'description'   => __('Present a list of your events.', 'gravityview'),
26
+			'logo'          => plugins_url('includes/presets/event-listings/logo-event-listings.png', GRAVITYVIEW_FILE),
27 27
 			'preview'       => 'http://demo.gravityview.co/blog/view/event-listings/',
28
-			'preset_form'   => GRAVITYVIEW_DIR . 'includes/presets/event-listings/form-event-listings.xml',
29
-			'preset_fields' => GRAVITYVIEW_DIR . 'includes/presets/event-listings/fields-event-listings.xml'
28
+			'preset_form'   => GRAVITYVIEW_DIR.'includes/presets/event-listings/form-event-listings.xml',
29
+			'preset_fields' => GRAVITYVIEW_DIR.'includes/presets/event-listings/fields-event-listings.xml'
30 30
 		);
31 31
 
32
-		parent::__construct( $id, $settings );
32
+		parent::__construct($id, $settings);
33 33
 
34 34
 	}
35 35
 }
Please login to merge, or discard this patch.
includes/presets/issue-tracker/class-gravityview-preset-issue-tracker.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,16 +21,16 @@
 block discarded – undo
21 21
 		$settings = array(
22 22
 			'slug'          => 'table',
23 23
 			'type'          => 'preset',
24
-			'label'         => __( 'Issue Tracker', 'gravityview' ),
25
-			'description'   => __( 'Manage issues and their statuses.', 'gravityview' ),
26
-			'logo'          => plugins_url( 'includes/presets/issue-tracker/logo-issue-tracker.png', GRAVITYVIEW_FILE ),
24
+			'label'         => __('Issue Tracker', 'gravityview'),
25
+			'description'   => __('Manage issues and their statuses.', 'gravityview'),
26
+			'logo'          => plugins_url('includes/presets/issue-tracker/logo-issue-tracker.png', GRAVITYVIEW_FILE),
27 27
 			'preview'       => 'http://demo.gravityview.co/blog/view/issue-tracker/',
28
-			'preset_form'   => GRAVITYVIEW_DIR . 'includes/presets/issue-tracker/form-issue-tracker.xml',
29
-			'preset_fields' => GRAVITYVIEW_DIR . 'includes/presets/issue-tracker/fields-issue-tracker.xml'
28
+			'preset_form'   => GRAVITYVIEW_DIR.'includes/presets/issue-tracker/form-issue-tracker.xml',
29
+			'preset_fields' => GRAVITYVIEW_DIR.'includes/presets/issue-tracker/fields-issue-tracker.xml'
30 30
 
31 31
 		);
32 32
 
33
-		parent::__construct( $id, $settings );
33
+		parent::__construct($id, $settings);
34 34
 
35 35
 	}
36 36
 }
Please login to merge, or discard this patch.
includes/presets/job-board/class-gravityview-preset-job-board.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,16 +21,16 @@
 block discarded – undo
21 21
 		$settings = array(
22 22
 			'slug'          => 'list',
23 23
 			'type'          => 'preset',
24
-			'label'         => __( 'Job Board', 'gravityview' ),
25
-			'description'   => __( 'Post available jobs in a simple job board.', 'gravityview' ),
26
-			'logo'          => plugins_url( 'includes/presets/job-board/logo-job-board.png', GRAVITYVIEW_FILE ),
24
+			'label'         => __('Job Board', 'gravityview'),
25
+			'description'   => __('Post available jobs in a simple job board.', 'gravityview'),
26
+			'logo'          => plugins_url('includes/presets/job-board/logo-job-board.png', GRAVITYVIEW_FILE),
27 27
 			'preview'       => 'http://demo.gravityview.co/blog/view/job-board/',
28
-			'preset_form'   => GRAVITYVIEW_DIR . 'includes/presets/job-board/form-job-board.xml',
29
-			'preset_fields' => GRAVITYVIEW_DIR . 'includes/presets/job-board/fields-job-board.xml'
28
+			'preset_form'   => GRAVITYVIEW_DIR.'includes/presets/job-board/form-job-board.xml',
29
+			'preset_fields' => GRAVITYVIEW_DIR.'includes/presets/job-board/fields-job-board.xml'
30 30
 
31 31
 		);
32 32
 
33
-		parent::__construct( $id, $settings );
33
+		parent::__construct($id, $settings);
34 34
 	}
35 35
 }
36 36
 
Please login to merge, or discard this patch.
includes/presets/profiles/class-gravityview-preset-profiles.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,15 +21,15 @@
 block discarded – undo
21 21
 		$settings = array(
22 22
 			'slug'          => 'list',
23 23
 			'type'          => 'preset',
24
-			'label'         => __( 'People Profiles', 'gravityview' ),
25
-			'description'   => __( 'List people with individual profiles.', 'gravityview' ),
26
-			'logo'          => plugins_url( 'includes/presets/profiles/logo-profiles.png', GRAVITYVIEW_FILE ),
24
+			'label'         => __('People Profiles', 'gravityview'),
25
+			'description'   => __('List people with individual profiles.', 'gravityview'),
26
+			'logo'          => plugins_url('includes/presets/profiles/logo-profiles.png', GRAVITYVIEW_FILE),
27 27
 			'preview'       => 'http://demo.gravityview.co/blog/view/people-profiles/',
28
-			'preset_form'   => GRAVITYVIEW_DIR . 'includes/presets/profiles/form-profiles.xml',
29
-			'preset_fields' => GRAVITYVIEW_DIR . 'includes/presets/profiles/fields-profiles.xml'
28
+			'preset_form'   => GRAVITYVIEW_DIR.'includes/presets/profiles/form-profiles.xml',
29
+			'preset_fields' => GRAVITYVIEW_DIR.'includes/presets/profiles/fields-profiles.xml'
30 30
 		);
31 31
 
32
-		parent::__construct( $id, $settings );
32
+		parent::__construct($id, $settings);
33 33
 
34 34
 	}
35 35
 }
Please login to merge, or discard this patch.
includes/presets/register-default-templates.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  */
14 14
 
15 15
 // Load default templates
16
-add_action( 'init', 'gravityview_register_default_templates', 11 );
16
+add_action('init', 'gravityview_register_default_templates', 11);
17 17
 
18 18
 /**
19 19
  * Registers the default templates
@@ -23,19 +23,19 @@  discard block
 block discarded – undo
23 23
 	/** @define "GRAVITYVIEW_DIR" "../../" */
24 24
 
25 25
 	// The abstract class required by all template files.
26
-	require_once GRAVITYVIEW_DIR . 'includes/class-gravityview-template.php';
26
+	require_once GRAVITYVIEW_DIR.'includes/class-gravityview-template.php';
27 27
 
28
-	$path = GRAVITYVIEW_DIR . 'includes/presets/';
29
-	include_once $path . 'default-table/class-gravityview-default-template-table.php';
30
-	include_once $path . 'default-list/class-gravityview-default-template-list.php';
31
-	include_once $path . 'default-edit/class-gravityview-default-template-edit.php';
32
-	include_once $path . 'business-listings/class-gravityview-preset-business-listings.php';
33
-	include_once $path . 'business-data/class-gravityview-preset-business-data.php';
34
-	include_once $path . 'profiles/class-gravityview-preset-profiles.php';
35
-	include_once $path . 'staff-profiles/class-gravityview-preset-staff-profiles.php';
36
-	include_once $path . 'website-showcase/class-gravityview-preset-website-showcase.php';
37
-	include_once $path . 'issue-tracker/class-gravityview-preset-issue-tracker.php';
38
-	include_once $path . 'resume-board/class-gravityview-preset-resume-board.php';
39
-	include_once $path . 'job-board/class-gravityview-preset-job-board.php';
40
-	include_once $path . 'event-listings/class-gravityview-preset-event-listings.php';
28
+	$path = GRAVITYVIEW_DIR.'includes/presets/';
29
+	include_once $path.'default-table/class-gravityview-default-template-table.php';
30
+	include_once $path.'default-list/class-gravityview-default-template-list.php';
31
+	include_once $path.'default-edit/class-gravityview-default-template-edit.php';
32
+	include_once $path.'business-listings/class-gravityview-preset-business-listings.php';
33
+	include_once $path.'business-data/class-gravityview-preset-business-data.php';
34
+	include_once $path.'profiles/class-gravityview-preset-profiles.php';
35
+	include_once $path.'staff-profiles/class-gravityview-preset-staff-profiles.php';
36
+	include_once $path.'website-showcase/class-gravityview-preset-website-showcase.php';
37
+	include_once $path.'issue-tracker/class-gravityview-preset-issue-tracker.php';
38
+	include_once $path.'resume-board/class-gravityview-preset-resume-board.php';
39
+	include_once $path.'job-board/class-gravityview-preset-job-board.php';
40
+	include_once $path.'event-listings/class-gravityview-preset-event-listings.php';
41 41
 }
42 42
\ No newline at end of file
Please login to merge, or discard this patch.
includes/presets/resume-board/class-gravityview-preset-resume-board.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,15 +21,15 @@
 block discarded – undo
21 21
 		$settings = array(
22 22
 			'slug'          => 'table',
23 23
 			'type'          => 'preset',
24
-			'label'         => __( 'Resume Board', 'gravityview' ),
25
-			'description'   => __( 'Allow job-seekers to post their resumes.', 'gravityview' ),
26
-			'logo'          => plugins_url( 'includes/presets/resume-board/logo-resume-board.png', GRAVITYVIEW_FILE ),
24
+			'label'         => __('Resume Board', 'gravityview'),
25
+			'description'   => __('Allow job-seekers to post their resumes.', 'gravityview'),
26
+			'logo'          => plugins_url('includes/presets/resume-board/logo-resume-board.png', GRAVITYVIEW_FILE),
27 27
 			'preview'       => 'http://demo.gravityview.co/blog/view/resume-board/',
28
-			'preset_form'   => GRAVITYVIEW_DIR . 'includes/presets/resume-board/form-resume-board.xml',
29
-			'preset_fields' => GRAVITYVIEW_DIR . 'includes/presets/resume-board/fields-resume-board.xml'
28
+			'preset_form'   => GRAVITYVIEW_DIR.'includes/presets/resume-board/form-resume-board.xml',
29
+			'preset_fields' => GRAVITYVIEW_DIR.'includes/presets/resume-board/fields-resume-board.xml'
30 30
 		);
31 31
 
32
-		parent::__construct( $id, $settings );
32
+		parent::__construct($id, $settings);
33 33
 
34 34
 	}
35 35
 }
Please login to merge, or discard this patch.