Test Setup Failed
Push — add/multiplan ( 8b900a...ad3421 )
by Virginia
05:40
created
templates/partials/help.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,19 +1,19 @@
 block discarded – undo
1 1
 <?php
2
-	$lsx_hp_documentation = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/getting-started/' );
3
-	$lsx_hp_settings      = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/installation/' );
4
-	$lsx_hp_features      = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/' );
5
-	$version              = esc_html( LSX_HEALTH_PLAN_VER );
2
+     $lsx_hp_documentation = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/getting-started/' );
3
+     $lsx_hp_settings      = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/installation/' );
4
+     $lsx_hp_features      = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/' );
5
+     $version              = esc_html( LSX_HEALTH_PLAN_VER );
6 6
 
7
-	//Product Urls
8
-	$health_plan_link  = esc_url( 'https://wordpress.org/plugins/lsx-health-plan/' );
9
-	$lsx_hp_plans      = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/plans/' );
10
-	$lsx_hp_weeks      = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/plans/#week' );
11
-	$lsx_hp_tips       = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/tips/' );
12
-	$lsx_hp_workouts   = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/workouts/' );
13
-	$lsx_hp_exercises  = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/exercises/' );
14
-	$lsx_hp_meals      = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/meals/' );
15
-	$lsx_hp_recipes    = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/recipes/' );
16
-	$lsx_hp_shortcodes = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/shortcodes/' );
7
+     //Product Urls
8
+     $health_plan_link  = esc_url( 'https://wordpress.org/plugins/lsx-health-plan/' );
9
+     $lsx_hp_plans      = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/plans/' );
10
+     $lsx_hp_weeks      = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/plans/#week' );
11
+     $lsx_hp_tips       = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/tips/' );
12
+     $lsx_hp_workouts   = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/workouts/' );
13
+     $lsx_hp_exercises  = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/exercises/' );
14
+     $lsx_hp_meals      = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/meals/' );
15
+     $lsx_hp_recipes    = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/recipes/' );
16
+     $lsx_hp_shortcodes = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/shortcodes/' );
17 17
 	
18 18
 ?>
19 19
 
Please login to merge, or discard this patch.
classes/admin/class-help-page.php 1 patch
Indentation   +121 added lines, -121 removed lines patch added patch discarded remove patch
@@ -12,134 +12,134 @@
 block discarded – undo
12 12
  */
13 13
 class Help_Page {
14 14
 
15
-	/**
16
-	 * Holds class instance
17
-	 *
18
-	 * @since 1.0.0
19
-	 *
20
-	 * @var      object \lsx_health_plan\classes\admin\Help_Page()
21
-	 */
22
-	protected static $instance = null;
23
-
24
-	/**
25
-	 * Option key, and option page slug
26
-	 *
27
-	 * @var string
28
-	 */
29
-	protected $screen_id = 'lsx_hp_help';
30
-
31
-	/**
32
-	 * Constructor
33
-	 */
34
-	public function __construct() {
35
-		add_action( 'admin_enqueue_scripts', array( $this, 'assets' ) );
36
-		add_action( 'admin_menu', array( $this, 'register_menu' ) );
37
-		add_action( 'lsx_hp_help', array( $this, 'header' ), 10 );
38
-		add_action( 'lsx_hp_help', array( $this, 'body' ), 20 );
39
-		add_action( 'lsx_hp_help', array( $this, 'footer' ), 30 );
40
-	}
41
-
42
-	/**
43
-	 * Return an instance of this class.
44
-	 *
45
-	 * @since 1.0.0
46
-	 *
47
-	 * @return    object \lsx_health_plan\classes\admin\Help_Page()    A single instance of this class.
48
-	 */
49
-	public static function get_instance() {
50
-		// If the single instance hasn't been set, set it now.
51
-		if ( null === self::$instance ) {
52
-			self::$instance = new self();
53
-		}
54
-		return self::$instance;
55
-	}
56
-
57
-
58
-
59
-	/**
60
-	 * Load hp_help screen css.
61
-	 *
62
-	 * @package    lsx
63
-	 * @subpackage hp-help-page
64
-	 *
65
-	 * @param string $hook_suffix the current page hook suffix.
66
-	 */
67
-	public function assets( $hook_suffix ) {
68
-		if ( 'plan_page_help' === $hook_suffix ) {
69
-			wp_enqueue_style( 'lsx-hp-help-screen', LSX_HEALTH_PLAN_URL . 'assets/css/help.css', array(), LSX_HEALTH_PLAN_VER );
70
-			wp_style_add_data( 'lsx-hp-help-screen', 'rtl', 'replace' );
71
-		}
72
-	}
73
-
74
-	/**
75
-	 * Creates the dashboard page.
76
-	 *
77
-	 * @package    lsx
78
-	 * @subpackage hp-help-page
79
-	 */
80
-	public function register_menu() {
81
-		add_submenu_page( 'edit.php?post_type=plan', __( 'Help', 'lsx-health-plan' ), __( 'Help', 'lsx-health-plan' ), 'manage_options', 'help', array( $this, 'screen' ) );
82
-	}
83
-
84
-
85
-	/**
86
-	 * The help screen.
87
-	 *
88
-	 * @package    lsx
89
-	 * @subpackage hp-help-page
90
-	 */
91
-	public function screen() {
92
-		require_once ABSPATH . 'wp-load.php';
93
-		require_once ABSPATH . 'wp-admin/admin.php';
94
-		require_once ABSPATH . 'wp-admin/admin-header.php';
95
-		?>
15
+     /**
16
+      * Holds class instance
17
+      *
18
+      * @since 1.0.0
19
+      *
20
+      * @var      object \lsx_health_plan\classes\admin\Help_Page()
21
+      */
22
+     protected static $instance = null;
23
+
24
+     /**
25
+      * Option key, and option page slug
26
+      *
27
+      * @var string
28
+      */
29
+     protected $screen_id = 'lsx_hp_help';
30
+
31
+     /**
32
+      * Constructor
33
+      */
34
+     public function __construct() {
35
+          add_action( 'admin_enqueue_scripts', array( $this, 'assets' ) );
36
+          add_action( 'admin_menu', array( $this, 'register_menu' ) );
37
+          add_action( 'lsx_hp_help', array( $this, 'header' ), 10 );
38
+          add_action( 'lsx_hp_help', array( $this, 'body' ), 20 );
39
+          add_action( 'lsx_hp_help', array( $this, 'footer' ), 30 );
40
+     }
41
+
42
+     /**
43
+      * Return an instance of this class.
44
+      *
45
+      * @since 1.0.0
46
+      *
47
+      * @return    object \lsx_health_plan\classes\admin\Help_Page()    A single instance of this class.
48
+      */
49
+     public static function get_instance() {
50
+          // If the single instance hasn't been set, set it now.
51
+          if ( null === self::$instance ) {
52
+               self::$instance = new self();
53
+          }
54
+          return self::$instance;
55
+     }
56
+
57
+
58
+
59
+     /**
60
+      * Load hp_help screen css.
61
+      *
62
+      * @package    lsx
63
+      * @subpackage hp-help-page
64
+      *
65
+      * @param string $hook_suffix the current page hook suffix.
66
+      */
67
+     public function assets( $hook_suffix ) {
68
+          if ( 'plan_page_help' === $hook_suffix ) {
69
+               wp_enqueue_style( 'lsx-hp-help-screen', LSX_HEALTH_PLAN_URL . 'assets/css/help.css', array(), LSX_HEALTH_PLAN_VER );
70
+               wp_style_add_data( 'lsx-hp-help-screen', 'rtl', 'replace' );
71
+          }
72
+     }
73
+
74
+     /**
75
+      * Creates the dashboard page.
76
+      *
77
+      * @package    lsx
78
+      * @subpackage hp-help-page
79
+      */
80
+     public function register_menu() {
81
+          add_submenu_page( 'edit.php?post_type=plan', __( 'Help', 'lsx-health-plan' ), __( 'Help', 'lsx-health-plan' ), 'manage_options', 'help', array( $this, 'screen' ) );
82
+     }
83
+
84
+
85
+     /**
86
+      * The help screen.
87
+      *
88
+      * @package    lsx
89
+      * @subpackage hp-help-page
90
+      */
91
+     public function screen() {
92
+          require_once ABSPATH . 'wp-load.php';
93
+          require_once ABSPATH . 'wp-admin/admin.php';
94
+          require_once ABSPATH . 'wp-admin/admin-header.php';
95
+          ?>
96 96
 		<div class="wrap about-wrap">
97 97
 			<?php
98
-			/**
99
-			 * Functions hooked into lsx_hp_help action
100
-			 *
101
-			 * @hooked lsx_hp_help_header  - 10
102
-			 * @hooked lsx_hp_help_body - 20
103
-			 * @hooked lsx_hp_help_footer  - 30
104
-			 */
105
-			do_action( 'lsx_hp_help' );
106
-			?>
98
+               /**
99
+                * Functions hooked into lsx_hp_help action
100
+                *
101
+                * @hooked lsx_hp_help_header  - 10
102
+                * @hooked lsx_hp_help_body - 20
103
+                * @hooked lsx_hp_help_footer  - 30
104
+                */
105
+               do_action( 'lsx_hp_help' );
106
+               ?>
107 107
 		</div>
108 108
 		<?php
109
-	}
110
-
111
-	/**
112
-	 * Help screen intro.
113
-	 *
114
-	 * @package    lsx
115
-	 * @subpackage hp-help-page
116
-	 */
117
-	public function header() {
118
-		?>
109
+     }
110
+
111
+     /**
112
+      * Help screen intro.
113
+      *
114
+      * @package    lsx
115
+      * @subpackage hp-help-page
116
+      */
117
+     public function header() {
118
+          ?>
119 119
 		<div class="enrich">
120 120
 			<h2><?php esc_html_e( 'LightSpeed’s LSX Health Plugin', 'lsx-health-plan' ); ?></h2>
121 121
 			<p><?php esc_html_e( "Thank you for using the LSX Health plugin. All of us here at LightSpeed appreciate your ongoing support and we can't wait to see what people create with the plugin. We're committed to ensuring you have all the help you need to make the most of the plugin.", 'lsx-health-plan' ); ?></p>
122 122
 		</div>
123 123
 		<?php
124
-	}
125
-
126
-	/**
127
-	 * Help screen body section.
128
-	 *
129
-	 * @package    lsx
130
-	 * @subpackage hp-help-page
131
-	 */
132
-	public function body() {
133
-		include LSX_HEALTH_PLAN_PATH . 'templates/partials/help.php';
134
-	}
135
-
136
-	/**
137
-	 * Help screen contribute section.
138
-	 *
139
-	 * @package    lsx
140
-	 * @subpackage hp-help-page
141
-	 */
142
-	public function footer() {
143
-
144
-	}
124
+     }
125
+
126
+     /**
127
+      * Help screen body section.
128
+      *
129
+      * @package    lsx
130
+      * @subpackage hp-help-page
131
+      */
132
+     public function body() {
133
+          include LSX_HEALTH_PLAN_PATH . 'templates/partials/help.php';
134
+     }
135
+
136
+     /**
137
+      * Help screen contribute section.
138
+      *
139
+      * @package    lsx
140
+      * @subpackage hp-help-page
141
+      */
142
+     public function footer() {
143
+
144
+     }
145 145
 }
Please login to merge, or discard this patch.