@@ -12,229 +12,229 @@ |
||
12 | 12 | */ |
13 | 13 | class Settings { |
14 | 14 | |
15 | - /** |
|
16 | - * Holds class instance |
|
17 | - * |
|
18 | - * @since 1.0.0 |
|
19 | - * |
|
20 | - * @var object \lsx_health_plan\classes\admin\Settings() |
|
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_health_plan_settings'; |
|
30 | - |
|
31 | - /** |
|
32 | - * An array of the post types for the Global Downloads field. |
|
33 | - * |
|
34 | - * @var array |
|
35 | - */ |
|
36 | - public $download_types = array(); |
|
37 | - |
|
38 | - /** |
|
39 | - * An array of the post types for the Global Defaults field. |
|
40 | - * |
|
41 | - * @var array |
|
42 | - */ |
|
43 | - //public $default_types = array(); |
|
44 | - |
|
45 | - /** |
|
46 | - * An array of the endpoints for the Endpoint Translation field. |
|
47 | - * |
|
48 | - * @var array |
|
49 | - */ |
|
50 | - public $endpoints = array(); |
|
51 | - |
|
52 | - /** |
|
53 | - * Constructor |
|
54 | - */ |
|
55 | - public function __construct() { |
|
56 | - $this->load_classes(); |
|
57 | - add_action( 'cmb2_admin_init', array( $this, 'register_settings_page' ) ); |
|
58 | - add_action( 'lsx_hp_settings_page', array( $this, 'generate_tabs' ), 1, 1 ); |
|
59 | - |
|
60 | - add_action( 'lsx_hp_settings_page_general_top', array( $this, 'general_settings' ), 1, 1 ); |
|
61 | - } |
|
62 | - |
|
63 | - /** |
|
64 | - * Return an instance of this class. |
|
65 | - * |
|
66 | - * @since 1.0.0 |
|
67 | - * |
|
68 | - * @return object \lsx_health_plan\classes\admin\Settings() A single instance of this class. |
|
69 | - */ |
|
70 | - public static function get_instance() { |
|
71 | - // If the single instance hasn't been set, set it now. |
|
72 | - if ( null === self::$instance ) { |
|
73 | - self::$instance = new self(); |
|
74 | - } |
|
75 | - return self::$instance; |
|
76 | - } |
|
77 | - |
|
78 | - /** |
|
79 | - * Loads the variable classes and the static classes. |
|
80 | - */ |
|
81 | - private function load_classes() { |
|
82 | - |
|
83 | - $this->post_types = array( |
|
84 | - 'plan', |
|
85 | - 'workout', |
|
86 | - 'exercise', |
|
87 | - 'meal', |
|
88 | - 'recipe', |
|
89 | - //'tip', |
|
90 | - ); |
|
91 | - |
|
92 | - foreach ( $this->post_types as $post_type ) { |
|
93 | - $this->$post_type = require_once LSX_HEALTH_PLAN_PATH . 'classes/admin/settings/class-' . $post_type . '.php'; |
|
94 | - } |
|
95 | - |
|
96 | - } |
|
97 | - |
|
98 | - /** |
|
99 | - * Hook in and register a submenu options page for the Page post-type menu. |
|
100 | - */ |
|
101 | - public function register_settings_page() { |
|
102 | - $cmb = new_cmb2_box( |
|
103 | - array( |
|
104 | - 'id' => $this->screen_id, |
|
105 | - 'title' => esc_html__( 'Settings', 'lsx-health-plan' ), |
|
106 | - 'object_types' => array( 'options-page' ), |
|
107 | - 'option_key' => 'lsx_health_plan_options', // The option key and admin menu page slug. |
|
108 | - 'parent_slug' => 'edit.php?post_type=plan', // Make options page a submenu item of the themes menu. |
|
109 | - 'capability' => 'manage_options', // Cap required to view options-page. |
|
110 | - ) |
|
111 | - ); |
|
112 | - do_action( 'lsx_hp_settings_page', $cmb ); |
|
113 | - } |
|
114 | - |
|
115 | - /** |
|
116 | - * Registers the general settings. |
|
117 | - * |
|
118 | - * @param object $cmb new_cmb2_box(). |
|
119 | - * @return void |
|
120 | - */ |
|
121 | - public function general_settings( $cmb ) { |
|
122 | - if ( function_exists( 'wc_memberships_is_post_content_restricted' ) ) { |
|
123 | - $cmb->add_field( |
|
124 | - array( |
|
125 | - 'name' => __( 'Membership Product', 'lsx-health-plan' ), |
|
126 | - 'id' => 'membership_product', |
|
127 | - 'type' => 'post_search_ajax', |
|
128 | - 'limit' => 1, |
|
129 | - 'sortable' => false, |
|
130 | - 'query_args' => array( |
|
131 | - 'post_type' => array( 'product' ), |
|
132 | - 'post_status' => array( 'publish' ), |
|
133 | - 'posts_per_page' => -1, |
|
134 | - ), |
|
135 | - ) |
|
136 | - ); |
|
137 | - } |
|
138 | - |
|
139 | - if ( false === \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
140 | - $cmb->add_field( |
|
141 | - array( |
|
142 | - 'name' => __( 'Exercises', 'lsx-health-plan' ), |
|
143 | - 'id' => 'exercise_enabled', |
|
144 | - 'type' => 'checkbox', |
|
145 | - 'value' => 1, |
|
146 | - 'default' => 0, |
|
147 | - 'description' => __( 'Enabling the exercise post type will automatically replace the Video post type.', 'lsx-health-plan' ), |
|
148 | - ) |
|
149 | - ); |
|
150 | - } |
|
15 | + /** |
|
16 | + * Holds class instance |
|
17 | + * |
|
18 | + * @since 1.0.0 |
|
19 | + * |
|
20 | + * @var object \lsx_health_plan\classes\admin\Settings() |
|
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_health_plan_settings'; |
|
30 | + |
|
31 | + /** |
|
32 | + * An array of the post types for the Global Downloads field. |
|
33 | + * |
|
34 | + * @var array |
|
35 | + */ |
|
36 | + public $download_types = array(); |
|
37 | + |
|
38 | + /** |
|
39 | + * An array of the post types for the Global Defaults field. |
|
40 | + * |
|
41 | + * @var array |
|
42 | + */ |
|
43 | + //public $default_types = array(); |
|
44 | + |
|
45 | + /** |
|
46 | + * An array of the endpoints for the Endpoint Translation field. |
|
47 | + * |
|
48 | + * @var array |
|
49 | + */ |
|
50 | + public $endpoints = array(); |
|
51 | + |
|
52 | + /** |
|
53 | + * Constructor |
|
54 | + */ |
|
55 | + public function __construct() { |
|
56 | + $this->load_classes(); |
|
57 | + add_action( 'cmb2_admin_init', array( $this, 'register_settings_page' ) ); |
|
58 | + add_action( 'lsx_hp_settings_page', array( $this, 'generate_tabs' ), 1, 1 ); |
|
59 | + |
|
60 | + add_action( 'lsx_hp_settings_page_general_top', array( $this, 'general_settings' ), 1, 1 ); |
|
61 | + } |
|
62 | + |
|
63 | + /** |
|
64 | + * Return an instance of this class. |
|
65 | + * |
|
66 | + * @since 1.0.0 |
|
67 | + * |
|
68 | + * @return object \lsx_health_plan\classes\admin\Settings() A single instance of this class. |
|
69 | + */ |
|
70 | + public static function get_instance() { |
|
71 | + // If the single instance hasn't been set, set it now. |
|
72 | + if ( null === self::$instance ) { |
|
73 | + self::$instance = new self(); |
|
74 | + } |
|
75 | + return self::$instance; |
|
76 | + } |
|
77 | + |
|
78 | + /** |
|
79 | + * Loads the variable classes and the static classes. |
|
80 | + */ |
|
81 | + private function load_classes() { |
|
82 | + |
|
83 | + $this->post_types = array( |
|
84 | + 'plan', |
|
85 | + 'workout', |
|
86 | + 'exercise', |
|
87 | + 'meal', |
|
88 | + 'recipe', |
|
89 | + //'tip', |
|
90 | + ); |
|
91 | + |
|
92 | + foreach ( $this->post_types as $post_type ) { |
|
93 | + $this->$post_type = require_once LSX_HEALTH_PLAN_PATH . 'classes/admin/settings/class-' . $post_type . '.php'; |
|
94 | + } |
|
95 | + |
|
96 | + } |
|
97 | + |
|
98 | + /** |
|
99 | + * Hook in and register a submenu options page for the Page post-type menu. |
|
100 | + */ |
|
101 | + public function register_settings_page() { |
|
102 | + $cmb = new_cmb2_box( |
|
103 | + array( |
|
104 | + 'id' => $this->screen_id, |
|
105 | + 'title' => esc_html__( 'Settings', 'lsx-health-plan' ), |
|
106 | + 'object_types' => array( 'options-page' ), |
|
107 | + 'option_key' => 'lsx_health_plan_options', // The option key and admin menu page slug. |
|
108 | + 'parent_slug' => 'edit.php?post_type=plan', // Make options page a submenu item of the themes menu. |
|
109 | + 'capability' => 'manage_options', // Cap required to view options-page. |
|
110 | + ) |
|
111 | + ); |
|
112 | + do_action( 'lsx_hp_settings_page', $cmb ); |
|
113 | + } |
|
114 | + |
|
115 | + /** |
|
116 | + * Registers the general settings. |
|
117 | + * |
|
118 | + * @param object $cmb new_cmb2_box(). |
|
119 | + * @return void |
|
120 | + */ |
|
121 | + public function general_settings( $cmb ) { |
|
122 | + if ( function_exists( 'wc_memberships_is_post_content_restricted' ) ) { |
|
123 | + $cmb->add_field( |
|
124 | + array( |
|
125 | + 'name' => __( 'Membership Product', 'lsx-health-plan' ), |
|
126 | + 'id' => 'membership_product', |
|
127 | + 'type' => 'post_search_ajax', |
|
128 | + 'limit' => 1, |
|
129 | + 'sortable' => false, |
|
130 | + 'query_args' => array( |
|
131 | + 'post_type' => array( 'product' ), |
|
132 | + 'post_status' => array( 'publish' ), |
|
133 | + 'posts_per_page' => -1, |
|
134 | + ), |
|
135 | + ) |
|
136 | + ); |
|
137 | + } |
|
138 | + |
|
139 | + if ( false === \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
140 | + $cmb->add_field( |
|
141 | + array( |
|
142 | + 'name' => __( 'Exercises', 'lsx-health-plan' ), |
|
143 | + 'id' => 'exercise_enabled', |
|
144 | + 'type' => 'checkbox', |
|
145 | + 'value' => 1, |
|
146 | + 'default' => 0, |
|
147 | + 'description' => __( 'Enabling the exercise post type will automatically replace the Video post type.', 'lsx-health-plan' ), |
|
148 | + ) |
|
149 | + ); |
|
150 | + } |
|
151 | 151 | |
152 | 152 | |
153 | - $cmb->add_field( |
|
154 | - array( |
|
155 | - 'name' => __( 'Login Slug', 'lsx-health-plan' ), |
|
156 | - 'id' => 'login_slug', |
|
157 | - 'type' => 'input', |
|
158 | - 'value' => '', |
|
159 | - 'default' => 'login', |
|
160 | - 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
161 | - ) |
|
162 | - ); |
|
163 | - |
|
164 | - } |
|
165 | - |
|
166 | - /** |
|
167 | - * Enable Business Directory Search settings only if LSX Search plugin is enabled. |
|
168 | - * |
|
169 | - * @param object $cmb The CMB2() class. |
|
170 | - * @param string $section either engine,archive or single. |
|
171 | - * @return void |
|
172 | - */ |
|
173 | - public function generate_tabs( $cmb ) { |
|
174 | - $tabs = $this->get_settings_tabs(); |
|
175 | - |
|
176 | - foreach ( $tabs as $tab_key => $tab ) { |
|
177 | - $cmb->add_field( |
|
178 | - array( |
|
179 | - 'id' => 'settings_' . $tab_key . '_title', |
|
180 | - 'type' => 'title', |
|
181 | - 'name' => $tab['title'], |
|
182 | - 'default' => $tab['title'], |
|
183 | - 'description' => $tab['desc'], |
|
184 | - ) |
|
185 | - ); |
|
186 | - do_action( 'lsx_hp_settings_page_' . $tab_key . '_top', $cmb ); |
|
187 | - |
|
188 | - do_action( 'lsx_hp_settings_page_' . $tab_key . '_middle', $cmb ); |
|
189 | - |
|
190 | - do_action( 'lsx_hp_settings_page_' . $tab_key . '_bottom', $cmb ); |
|
191 | - |
|
192 | - $cmb->add_field( |
|
193 | - array( |
|
194 | - 'id' => 'settings_' . $tab_key . '_closing', |
|
195 | - 'type' => 'tab_closing', |
|
196 | - ) |
|
197 | - ); |
|
198 | - } |
|
199 | - } |
|
200 | - |
|
201 | - |
|
202 | - /** |
|
203 | - * Returns the tabs and their descriptions. |
|
204 | - * |
|
205 | - * @return array |
|
206 | - */ |
|
207 | - public function get_settings_tabs() { |
|
208 | - $tabs = array( |
|
209 | - 'general' => array( |
|
210 | - 'title' => __( 'General', 'lsx-health-plan' ), |
|
211 | - 'desc' => __( 'Control the sitewide settings for the LSX HP site.', 'lsx-health-plan' ), |
|
212 | - ), |
|
213 | - ); |
|
214 | - |
|
215 | - foreach ( $this->post_types as $post_type ) { |
|
216 | - switch ( $post_type ) { |
|
217 | - default: |
|
218 | - //if ( ! in_array( $post_type, \lsx\search\includes\get_restricted_post_types() ) ) { |
|
219 | - $temp_post_type = get_post_type_object( $post_type ); |
|
220 | - if ( ! is_wp_error( $temp_post_type ) ) { |
|
221 | - $page_url = get_post_type_archive_link( $temp_post_type->name ); |
|
222 | - $description = sprintf( |
|
223 | - /* translators: %s: The subscription info */ |
|
224 | - __( 'Control the settings for your <a target="_blank" href="%1$s">%2$s</a> archive.', 'lsx-search' ), |
|
225 | - $page_url, |
|
226 | - $temp_post_type->label |
|
227 | - ); |
|
228 | - |
|
229 | - $tabs[ $post_type ] = array( |
|
230 | - 'title' => $temp_post_type->label, |
|
231 | - 'desc' => $description, |
|
232 | - ); |
|
233 | - } |
|
234 | - //} |
|
235 | - break; |
|
236 | - } |
|
237 | - } |
|
238 | - return $tabs; |
|
239 | - } |
|
153 | + $cmb->add_field( |
|
154 | + array( |
|
155 | + 'name' => __( 'Login Slug', 'lsx-health-plan' ), |
|
156 | + 'id' => 'login_slug', |
|
157 | + 'type' => 'input', |
|
158 | + 'value' => '', |
|
159 | + 'default' => 'login', |
|
160 | + 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
161 | + ) |
|
162 | + ); |
|
163 | + |
|
164 | + } |
|
165 | + |
|
166 | + /** |
|
167 | + * Enable Business Directory Search settings only if LSX Search plugin is enabled. |
|
168 | + * |
|
169 | + * @param object $cmb The CMB2() class. |
|
170 | + * @param string $section either engine,archive or single. |
|
171 | + * @return void |
|
172 | + */ |
|
173 | + public function generate_tabs( $cmb ) { |
|
174 | + $tabs = $this->get_settings_tabs(); |
|
175 | + |
|
176 | + foreach ( $tabs as $tab_key => $tab ) { |
|
177 | + $cmb->add_field( |
|
178 | + array( |
|
179 | + 'id' => 'settings_' . $tab_key . '_title', |
|
180 | + 'type' => 'title', |
|
181 | + 'name' => $tab['title'], |
|
182 | + 'default' => $tab['title'], |
|
183 | + 'description' => $tab['desc'], |
|
184 | + ) |
|
185 | + ); |
|
186 | + do_action( 'lsx_hp_settings_page_' . $tab_key . '_top', $cmb ); |
|
187 | + |
|
188 | + do_action( 'lsx_hp_settings_page_' . $tab_key . '_middle', $cmb ); |
|
189 | + |
|
190 | + do_action( 'lsx_hp_settings_page_' . $tab_key . '_bottom', $cmb ); |
|
191 | + |
|
192 | + $cmb->add_field( |
|
193 | + array( |
|
194 | + 'id' => 'settings_' . $tab_key . '_closing', |
|
195 | + 'type' => 'tab_closing', |
|
196 | + ) |
|
197 | + ); |
|
198 | + } |
|
199 | + } |
|
200 | + |
|
201 | + |
|
202 | + /** |
|
203 | + * Returns the tabs and their descriptions. |
|
204 | + * |
|
205 | + * @return array |
|
206 | + */ |
|
207 | + public function get_settings_tabs() { |
|
208 | + $tabs = array( |
|
209 | + 'general' => array( |
|
210 | + 'title' => __( 'General', 'lsx-health-plan' ), |
|
211 | + 'desc' => __( 'Control the sitewide settings for the LSX HP site.', 'lsx-health-plan' ), |
|
212 | + ), |
|
213 | + ); |
|
214 | + |
|
215 | + foreach ( $this->post_types as $post_type ) { |
|
216 | + switch ( $post_type ) { |
|
217 | + default: |
|
218 | + //if ( ! in_array( $post_type, \lsx\search\includes\get_restricted_post_types() ) ) { |
|
219 | + $temp_post_type = get_post_type_object( $post_type ); |
|
220 | + if ( ! is_wp_error( $temp_post_type ) ) { |
|
221 | + $page_url = get_post_type_archive_link( $temp_post_type->name ); |
|
222 | + $description = sprintf( |
|
223 | + /* translators: %s: The subscription info */ |
|
224 | + __( 'Control the settings for your <a target="_blank" href="%1$s">%2$s</a> archive.', 'lsx-search' ), |
|
225 | + $page_url, |
|
226 | + $temp_post_type->label |
|
227 | + ); |
|
228 | + |
|
229 | + $tabs[ $post_type ] = array( |
|
230 | + 'title' => $temp_post_type->label, |
|
231 | + 'desc' => $description, |
|
232 | + ); |
|
233 | + } |
|
234 | + //} |
|
235 | + break; |
|
236 | + } |
|
237 | + } |
|
238 | + return $tabs; |
|
239 | + } |
|
240 | 240 | } |
@@ -54,10 +54,10 @@ discard block |
||
54 | 54 | */ |
55 | 55 | public function __construct() { |
56 | 56 | $this->load_classes(); |
57 | - add_action( 'cmb2_admin_init', array( $this, 'register_settings_page' ) ); |
|
58 | - add_action( 'lsx_hp_settings_page', array( $this, 'generate_tabs' ), 1, 1 ); |
|
57 | + add_action('cmb2_admin_init', array($this, 'register_settings_page')); |
|
58 | + add_action('lsx_hp_settings_page', array($this, 'generate_tabs'), 1, 1); |
|
59 | 59 | |
60 | - add_action( 'lsx_hp_settings_page_general_top', array( $this, 'general_settings' ), 1, 1 ); |
|
60 | + add_action('lsx_hp_settings_page_general_top', array($this, 'general_settings'), 1, 1); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | */ |
70 | 70 | public static function get_instance() { |
71 | 71 | // If the single instance hasn't been set, set it now. |
72 | - if ( null === self::$instance ) { |
|
72 | + if (null === self::$instance) { |
|
73 | 73 | self::$instance = new self(); |
74 | 74 | } |
75 | 75 | return self::$instance; |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | //'tip', |
90 | 90 | ); |
91 | 91 | |
92 | - foreach ( $this->post_types as $post_type ) { |
|
92 | + foreach ($this->post_types as $post_type) { |
|
93 | 93 | $this->$post_type = require_once LSX_HEALTH_PLAN_PATH . 'classes/admin/settings/class-' . $post_type . '.php'; |
94 | 94 | } |
95 | 95 | |
@@ -102,14 +102,14 @@ discard block |
||
102 | 102 | $cmb = new_cmb2_box( |
103 | 103 | array( |
104 | 104 | 'id' => $this->screen_id, |
105 | - 'title' => esc_html__( 'Settings', 'lsx-health-plan' ), |
|
106 | - 'object_types' => array( 'options-page' ), |
|
105 | + 'title' => esc_html__('Settings', 'lsx-health-plan'), |
|
106 | + 'object_types' => array('options-page'), |
|
107 | 107 | 'option_key' => 'lsx_health_plan_options', // The option key and admin menu page slug. |
108 | 108 | 'parent_slug' => 'edit.php?post_type=plan', // Make options page a submenu item of the themes menu. |
109 | 109 | 'capability' => 'manage_options', // Cap required to view options-page. |
110 | 110 | ) |
111 | 111 | ); |
112 | - do_action( 'lsx_hp_settings_page', $cmb ); |
|
112 | + do_action('lsx_hp_settings_page', $cmb); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
@@ -118,33 +118,33 @@ discard block |
||
118 | 118 | * @param object $cmb new_cmb2_box(). |
119 | 119 | * @return void |
120 | 120 | */ |
121 | - public function general_settings( $cmb ) { |
|
122 | - if ( function_exists( 'wc_memberships_is_post_content_restricted' ) ) { |
|
121 | + public function general_settings($cmb) { |
|
122 | + if (function_exists('wc_memberships_is_post_content_restricted')) { |
|
123 | 123 | $cmb->add_field( |
124 | 124 | array( |
125 | - 'name' => __( 'Membership Product', 'lsx-health-plan' ), |
|
125 | + 'name' => __('Membership Product', 'lsx-health-plan'), |
|
126 | 126 | 'id' => 'membership_product', |
127 | 127 | 'type' => 'post_search_ajax', |
128 | 128 | 'limit' => 1, |
129 | 129 | 'sortable' => false, |
130 | 130 | 'query_args' => array( |
131 | - 'post_type' => array( 'product' ), |
|
132 | - 'post_status' => array( 'publish' ), |
|
131 | + 'post_type' => array('product'), |
|
132 | + 'post_status' => array('publish'), |
|
133 | 133 | 'posts_per_page' => -1, |
134 | 134 | ), |
135 | 135 | ) |
136 | 136 | ); |
137 | 137 | } |
138 | 138 | |
139 | - if ( false === \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
139 | + if (false === \lsx_health_plan\functions\get_option('exercise_enabled', false)) { |
|
140 | 140 | $cmb->add_field( |
141 | 141 | array( |
142 | - 'name' => __( 'Exercises', 'lsx-health-plan' ), |
|
142 | + 'name' => __('Exercises', 'lsx-health-plan'), |
|
143 | 143 | 'id' => 'exercise_enabled', |
144 | 144 | 'type' => 'checkbox', |
145 | 145 | 'value' => 1, |
146 | 146 | 'default' => 0, |
147 | - 'description' => __( 'Enabling the exercise post type will automatically replace the Video post type.', 'lsx-health-plan' ), |
|
147 | + 'description' => __('Enabling the exercise post type will automatically replace the Video post type.', 'lsx-health-plan'), |
|
148 | 148 | ) |
149 | 149 | ); |
150 | 150 | } |
@@ -152,12 +152,12 @@ discard block |
||
152 | 152 | |
153 | 153 | $cmb->add_field( |
154 | 154 | array( |
155 | - 'name' => __( 'Login Slug', 'lsx-health-plan' ), |
|
155 | + 'name' => __('Login Slug', 'lsx-health-plan'), |
|
156 | 156 | 'id' => 'login_slug', |
157 | 157 | 'type' => 'input', |
158 | 158 | 'value' => '', |
159 | 159 | 'default' => 'login', |
160 | - 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
160 | + 'after_row' => __('<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan'), |
|
161 | 161 | ) |
162 | 162 | ); |
163 | 163 | |
@@ -170,10 +170,10 @@ discard block |
||
170 | 170 | * @param string $section either engine,archive or single. |
171 | 171 | * @return void |
172 | 172 | */ |
173 | - public function generate_tabs( $cmb ) { |
|
173 | + public function generate_tabs($cmb) { |
|
174 | 174 | $tabs = $this->get_settings_tabs(); |
175 | 175 | |
176 | - foreach ( $tabs as $tab_key => $tab ) { |
|
176 | + foreach ($tabs as $tab_key => $tab) { |
|
177 | 177 | $cmb->add_field( |
178 | 178 | array( |
179 | 179 | 'id' => 'settings_' . $tab_key . '_title', |
@@ -183,11 +183,11 @@ discard block |
||
183 | 183 | 'description' => $tab['desc'], |
184 | 184 | ) |
185 | 185 | ); |
186 | - do_action( 'lsx_hp_settings_page_' . $tab_key . '_top', $cmb ); |
|
186 | + do_action('lsx_hp_settings_page_' . $tab_key . '_top', $cmb); |
|
187 | 187 | |
188 | - do_action( 'lsx_hp_settings_page_' . $tab_key . '_middle', $cmb ); |
|
188 | + do_action('lsx_hp_settings_page_' . $tab_key . '_middle', $cmb); |
|
189 | 189 | |
190 | - do_action( 'lsx_hp_settings_page_' . $tab_key . '_bottom', $cmb ); |
|
190 | + do_action('lsx_hp_settings_page_' . $tab_key . '_bottom', $cmb); |
|
191 | 191 | |
192 | 192 | $cmb->add_field( |
193 | 193 | array( |
@@ -207,26 +207,26 @@ discard block |
||
207 | 207 | public function get_settings_tabs() { |
208 | 208 | $tabs = array( |
209 | 209 | 'general' => array( |
210 | - 'title' => __( 'General', 'lsx-health-plan' ), |
|
211 | - 'desc' => __( 'Control the sitewide settings for the LSX HP site.', 'lsx-health-plan' ), |
|
210 | + 'title' => __('General', 'lsx-health-plan'), |
|
211 | + 'desc' => __('Control the sitewide settings for the LSX HP site.', 'lsx-health-plan'), |
|
212 | 212 | ), |
213 | 213 | ); |
214 | 214 | |
215 | - foreach ( $this->post_types as $post_type ) { |
|
216 | - switch ( $post_type ) { |
|
215 | + foreach ($this->post_types as $post_type) { |
|
216 | + switch ($post_type) { |
|
217 | 217 | default: |
218 | 218 | //if ( ! in_array( $post_type, \lsx\search\includes\get_restricted_post_types() ) ) { |
219 | - $temp_post_type = get_post_type_object( $post_type ); |
|
220 | - if ( ! is_wp_error( $temp_post_type ) ) { |
|
221 | - $page_url = get_post_type_archive_link( $temp_post_type->name ); |
|
219 | + $temp_post_type = get_post_type_object($post_type); |
|
220 | + if ( ! is_wp_error($temp_post_type)) { |
|
221 | + $page_url = get_post_type_archive_link($temp_post_type->name); |
|
222 | 222 | $description = sprintf( |
223 | 223 | /* translators: %s: The subscription info */ |
224 | - __( 'Control the settings for your <a target="_blank" href="%1$s">%2$s</a> archive.', 'lsx-search' ), |
|
224 | + __('Control the settings for your <a target="_blank" href="%1$s">%2$s</a> archive.', 'lsx-search'), |
|
225 | 225 | $page_url, |
226 | 226 | $temp_post_type->label |
227 | 227 | ); |
228 | 228 | |
229 | - $tabs[ $post_type ] = array( |
|
229 | + $tabs[$post_type] = array( |
|
230 | 230 | 'title' => $temp_post_type->label, |
231 | 231 | 'desc' => $description, |
232 | 232 | ); |
@@ -12,245 +12,245 @@ |
||
12 | 12 | */ |
13 | 13 | class Workout { |
14 | 14 | |
15 | - /** |
|
16 | - * Holds class instance |
|
17 | - * |
|
18 | - * @since 1.0.0 |
|
19 | - * |
|
20 | - * @var object \lsx_health_plan\classes\admin\Workout() |
|
21 | - */ |
|
22 | - protected static $instance = null; |
|
15 | + /** |
|
16 | + * Holds class instance |
|
17 | + * |
|
18 | + * @since 1.0.0 |
|
19 | + * |
|
20 | + * @var object \lsx_health_plan\classes\admin\Workout() |
|
21 | + */ |
|
22 | + protected static $instance = null; |
|
23 | 23 | |
24 | - /** |
|
25 | - * Constructor |
|
26 | - */ |
|
27 | - public function __construct() { |
|
28 | - add_action( 'lsx_hp_settings_page_workout_top', array( $this, 'settings' ), 1, 1 ); |
|
29 | - } |
|
24 | + /** |
|
25 | + * Constructor |
|
26 | + */ |
|
27 | + public function __construct() { |
|
28 | + add_action( 'lsx_hp_settings_page_workout_top', array( $this, 'settings' ), 1, 1 ); |
|
29 | + } |
|
30 | 30 | |
31 | - /** |
|
32 | - * Return an instance of this class. |
|
33 | - * |
|
34 | - * @since 1.0.0 |
|
35 | - * |
|
36 | - * @return object \lsx_health_plan\classes\admin\Workout() A single instance of this class. |
|
37 | - */ |
|
38 | - public static function get_instance() { |
|
39 | - // If the single instance hasn't been set, set it now. |
|
40 | - if ( null === self::$instance ) { |
|
41 | - self::$instance = new self(); |
|
42 | - } |
|
43 | - return self::$instance; |
|
44 | - } |
|
31 | + /** |
|
32 | + * Return an instance of this class. |
|
33 | + * |
|
34 | + * @since 1.0.0 |
|
35 | + * |
|
36 | + * @return object \lsx_health_plan\classes\admin\Workout() A single instance of this class. |
|
37 | + */ |
|
38 | + public static function get_instance() { |
|
39 | + // If the single instance hasn't been set, set it now. |
|
40 | + if ( null === self::$instance ) { |
|
41 | + self::$instance = new self(); |
|
42 | + } |
|
43 | + return self::$instance; |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * Registers the general settings. |
|
48 | - * |
|
49 | - * @param object $cmb new_cmb2_box(). |
|
50 | - * @return void |
|
51 | - */ |
|
52 | - public function settings( $cmb ) { |
|
53 | - $cmb->add_field( |
|
54 | - array( |
|
55 | - 'name' => __( 'Disable Workouts', 'lsx-health-plan' ), |
|
56 | - 'id' => 'workout_disabled', |
|
57 | - 'type' => 'checkbox', |
|
58 | - 'value' => 1, |
|
59 | - 'default' => 0, |
|
60 | - 'description' => __( 'Disable workout post type if you are wanting a minimal site.', 'lsx-health-plan' ), |
|
61 | - ) |
|
62 | - ); |
|
63 | - $cmb->add_field( |
|
64 | - array( |
|
65 | - 'name' => __( 'Your Warm-up Intro', 'lsx-health-plan' ), |
|
66 | - 'id' => 'warmup_intro', |
|
67 | - 'type' => 'textarea_small', |
|
68 | - 'value' => '', |
|
69 | - 'default' => __( "Don't forget your warm-up! It's a vital part of your daily workout routine.", 'lsx-health-plan' ), |
|
70 | - ) |
|
71 | - ); |
|
72 | - if ( post_type_exists( 'workout' ) ) { |
|
73 | - $cmb->add_field( |
|
74 | - array( |
|
75 | - 'name' => __( 'Your Workout Intro', 'lsx-health-plan' ), |
|
76 | - 'id' => 'workout_intro', |
|
77 | - 'type' => 'textarea_small', |
|
78 | - 'value' => '', |
|
79 | - 'default' => __( "Let's do this! Smash your daily workout and reach your fitness goals.", 'lsx-health-plan' ), |
|
80 | - ) |
|
81 | - ); |
|
82 | - } |
|
83 | - $cmb->add_field( |
|
84 | - array( |
|
85 | - 'before_row' => '<h4><b><u>Layout Options</u></b></h4>', |
|
86 | - 'id' => 'workout_tab_layout', |
|
87 | - 'type' => 'select', |
|
88 | - 'name' => __( 'Workout Tab Layout', 'lsx-health-plan' ), |
|
89 | - 'description' => __( 'Choose the layout for the workouts.', 'lsx-health-plan' ), |
|
90 | - 'options' => array( |
|
91 | - 'table' => __( 'Table', 'lsx-health-plan' ), |
|
92 | - 'list' => __( 'List', 'lsx-health-plan' ), |
|
93 | - 'grid' => __( 'Grid', 'lsx-health-plan' ), |
|
94 | - ), |
|
95 | - ) |
|
96 | - ); |
|
97 | - $cmb->add_field( |
|
98 | - array( |
|
99 | - 'id' => 'workout_tab_link', |
|
100 | - 'type' => 'select', |
|
101 | - 'name' => __( 'Workout Tab Link', 'lsx-health-plan' ), |
|
102 | - 'description' => __( 'Choose to show the excerpt, full content or nothing.', 'lsx-health-plan' ), |
|
103 | - 'options' => array( |
|
104 | - '' => __( 'None', 'lsx-health-plan' ), |
|
105 | - 'single' => __( 'Single', 'lsx-health-plan' ), |
|
106 | - 'modal' => __( 'Modal', 'lsx-health-plan' ), |
|
107 | - ), |
|
108 | - 'default' => 'modal', |
|
109 | - ) |
|
110 | - ); |
|
111 | - $cmb->add_field( |
|
112 | - array( |
|
113 | - 'id' => 'workout_tab_modal_content', |
|
114 | - 'type' => 'select', |
|
115 | - 'name' => __( 'Modal Content', 'lsx-health-plan' ), |
|
116 | - 'description' => __( 'Choose to show the excerpt, full content or nothing. For the modal content only', 'lsx-health-plan' ), |
|
117 | - 'options' => array( |
|
118 | - '' => __( 'None', 'lsx-health-plan' ), |
|
119 | - 'excerpt' => __( 'Excerpt', 'lsx-health-plan' ), |
|
120 | - 'full' => __( 'Full Content', 'lsx-health-plan' ), |
|
121 | - ), |
|
122 | - 'default' => '', |
|
123 | - ) |
|
124 | - ); |
|
125 | - $cmb->add_field( |
|
126 | - array( |
|
127 | - 'id' => 'workout_tab_columns', |
|
128 | - 'type' => 'select', |
|
129 | - 'name' => __( 'Grid Columns', 'lsx-health-plan' ), |
|
130 | - 'description' => __( 'If you are displaying a grid, set the amount of columns you want to use.', 'lsx-health-plan' ), |
|
131 | - 'options' => array( |
|
132 | - '12' => __( '1', 'lsx-health-plan' ), |
|
133 | - '6' => __( '2', 'lsx-health-plan' ), |
|
134 | - '4' => __( '3', 'lsx-health-plan' ), |
|
135 | - '3' => __( '4', 'lsx-health-plan' ), |
|
136 | - '2' => __( '6', 'lsx-health-plan' ), |
|
137 | - ), |
|
138 | - 'default' => '4', |
|
139 | - ) |
|
140 | - ); |
|
141 | - $cmb->add_field( |
|
142 | - array( |
|
143 | - 'id' => 'workout_tab_content', |
|
144 | - 'type' => 'select', |
|
145 | - 'name' => __( 'Grid Content', 'lsx-health-plan' ), |
|
146 | - 'description' => __( 'Choose to show the excerpt, full content or nothing. For the grid layout only', 'lsx-health-plan' ), |
|
147 | - 'options' => array( |
|
148 | - '' => __( 'None', 'lsx-health-plan' ), |
|
149 | - 'excerpt' => __( 'Excerpt', 'lsx-health-plan' ), |
|
150 | - 'full' => __( 'Full Content', 'lsx-health-plan' ), |
|
151 | - ), |
|
152 | - 'default' => '', |
|
153 | - ) |
|
154 | - ); |
|
46 | + /** |
|
47 | + * Registers the general settings. |
|
48 | + * |
|
49 | + * @param object $cmb new_cmb2_box(). |
|
50 | + * @return void |
|
51 | + */ |
|
52 | + public function settings( $cmb ) { |
|
53 | + $cmb->add_field( |
|
54 | + array( |
|
55 | + 'name' => __( 'Disable Workouts', 'lsx-health-plan' ), |
|
56 | + 'id' => 'workout_disabled', |
|
57 | + 'type' => 'checkbox', |
|
58 | + 'value' => 1, |
|
59 | + 'default' => 0, |
|
60 | + 'description' => __( 'Disable workout post type if you are wanting a minimal site.', 'lsx-health-plan' ), |
|
61 | + ) |
|
62 | + ); |
|
63 | + $cmb->add_field( |
|
64 | + array( |
|
65 | + 'name' => __( 'Your Warm-up Intro', 'lsx-health-plan' ), |
|
66 | + 'id' => 'warmup_intro', |
|
67 | + 'type' => 'textarea_small', |
|
68 | + 'value' => '', |
|
69 | + 'default' => __( "Don't forget your warm-up! It's a vital part of your daily workout routine.", 'lsx-health-plan' ), |
|
70 | + ) |
|
71 | + ); |
|
72 | + if ( post_type_exists( 'workout' ) ) { |
|
73 | + $cmb->add_field( |
|
74 | + array( |
|
75 | + 'name' => __( 'Your Workout Intro', 'lsx-health-plan' ), |
|
76 | + 'id' => 'workout_intro', |
|
77 | + 'type' => 'textarea_small', |
|
78 | + 'value' => '', |
|
79 | + 'default' => __( "Let's do this! Smash your daily workout and reach your fitness goals.", 'lsx-health-plan' ), |
|
80 | + ) |
|
81 | + ); |
|
82 | + } |
|
83 | + $cmb->add_field( |
|
84 | + array( |
|
85 | + 'before_row' => '<h4><b><u>Layout Options</u></b></h4>', |
|
86 | + 'id' => 'workout_tab_layout', |
|
87 | + 'type' => 'select', |
|
88 | + 'name' => __( 'Workout Tab Layout', 'lsx-health-plan' ), |
|
89 | + 'description' => __( 'Choose the layout for the workouts.', 'lsx-health-plan' ), |
|
90 | + 'options' => array( |
|
91 | + 'table' => __( 'Table', 'lsx-health-plan' ), |
|
92 | + 'list' => __( 'List', 'lsx-health-plan' ), |
|
93 | + 'grid' => __( 'Grid', 'lsx-health-plan' ), |
|
94 | + ), |
|
95 | + ) |
|
96 | + ); |
|
97 | + $cmb->add_field( |
|
98 | + array( |
|
99 | + 'id' => 'workout_tab_link', |
|
100 | + 'type' => 'select', |
|
101 | + 'name' => __( 'Workout Tab Link', 'lsx-health-plan' ), |
|
102 | + 'description' => __( 'Choose to show the excerpt, full content or nothing.', 'lsx-health-plan' ), |
|
103 | + 'options' => array( |
|
104 | + '' => __( 'None', 'lsx-health-plan' ), |
|
105 | + 'single' => __( 'Single', 'lsx-health-plan' ), |
|
106 | + 'modal' => __( 'Modal', 'lsx-health-plan' ), |
|
107 | + ), |
|
108 | + 'default' => 'modal', |
|
109 | + ) |
|
110 | + ); |
|
111 | + $cmb->add_field( |
|
112 | + array( |
|
113 | + 'id' => 'workout_tab_modal_content', |
|
114 | + 'type' => 'select', |
|
115 | + 'name' => __( 'Modal Content', 'lsx-health-plan' ), |
|
116 | + 'description' => __( 'Choose to show the excerpt, full content or nothing. For the modal content only', 'lsx-health-plan' ), |
|
117 | + 'options' => array( |
|
118 | + '' => __( 'None', 'lsx-health-plan' ), |
|
119 | + 'excerpt' => __( 'Excerpt', 'lsx-health-plan' ), |
|
120 | + 'full' => __( 'Full Content', 'lsx-health-plan' ), |
|
121 | + ), |
|
122 | + 'default' => '', |
|
123 | + ) |
|
124 | + ); |
|
125 | + $cmb->add_field( |
|
126 | + array( |
|
127 | + 'id' => 'workout_tab_columns', |
|
128 | + 'type' => 'select', |
|
129 | + 'name' => __( 'Grid Columns', 'lsx-health-plan' ), |
|
130 | + 'description' => __( 'If you are displaying a grid, set the amount of columns you want to use.', 'lsx-health-plan' ), |
|
131 | + 'options' => array( |
|
132 | + '12' => __( '1', 'lsx-health-plan' ), |
|
133 | + '6' => __( '2', 'lsx-health-plan' ), |
|
134 | + '4' => __( '3', 'lsx-health-plan' ), |
|
135 | + '3' => __( '4', 'lsx-health-plan' ), |
|
136 | + '2' => __( '6', 'lsx-health-plan' ), |
|
137 | + ), |
|
138 | + 'default' => '4', |
|
139 | + ) |
|
140 | + ); |
|
141 | + $cmb->add_field( |
|
142 | + array( |
|
143 | + 'id' => 'workout_tab_content', |
|
144 | + 'type' => 'select', |
|
145 | + 'name' => __( 'Grid Content', 'lsx-health-plan' ), |
|
146 | + 'description' => __( 'Choose to show the excerpt, full content or nothing. For the grid layout only', 'lsx-health-plan' ), |
|
147 | + 'options' => array( |
|
148 | + '' => __( 'None', 'lsx-health-plan' ), |
|
149 | + 'excerpt' => __( 'Excerpt', 'lsx-health-plan' ), |
|
150 | + 'full' => __( 'Full Content', 'lsx-health-plan' ), |
|
151 | + ), |
|
152 | + 'default' => '', |
|
153 | + ) |
|
154 | + ); |
|
155 | 155 | |
156 | - $cmb->add_field( |
|
157 | - array( |
|
158 | - 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
|
159 | - 'name' => __( 'Single Workout Slug', 'lsx-health-plan' ), |
|
160 | - 'id' => 'endpoint_workout', |
|
161 | - 'type' => 'input', |
|
162 | - 'value' => '', |
|
163 | - 'default' => 'workout', |
|
164 | - ) |
|
165 | - ); |
|
166 | - $cmb->add_field( |
|
167 | - array( |
|
168 | - 'name' => __( 'Workouts Archive Slug', 'lsx-health-plan' ), |
|
169 | - 'id' => 'endpoint_workout_archive', |
|
170 | - 'type' => 'input', |
|
171 | - 'value' => '', |
|
172 | - 'default' => 'workouts', |
|
173 | - ) |
|
174 | - ); |
|
175 | - $cmb->add_field( |
|
176 | - array( |
|
177 | - 'name' => __( 'Warm Up Slug', 'lsx-health-plan' ), |
|
178 | - 'id' => 'endpoint_warm_up', |
|
179 | - 'type' => 'input', |
|
180 | - 'value' => '', |
|
181 | - 'default' => 'warm-up', |
|
182 | - ) |
|
183 | - ); |
|
156 | + $cmb->add_field( |
|
157 | + array( |
|
158 | + 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
|
159 | + 'name' => __( 'Single Workout Slug', 'lsx-health-plan' ), |
|
160 | + 'id' => 'endpoint_workout', |
|
161 | + 'type' => 'input', |
|
162 | + 'value' => '', |
|
163 | + 'default' => 'workout', |
|
164 | + ) |
|
165 | + ); |
|
166 | + $cmb->add_field( |
|
167 | + array( |
|
168 | + 'name' => __( 'Workouts Archive Slug', 'lsx-health-plan' ), |
|
169 | + 'id' => 'endpoint_workout_archive', |
|
170 | + 'type' => 'input', |
|
171 | + 'value' => '', |
|
172 | + 'default' => 'workouts', |
|
173 | + ) |
|
174 | + ); |
|
175 | + $cmb->add_field( |
|
176 | + array( |
|
177 | + 'name' => __( 'Warm Up Slug', 'lsx-health-plan' ), |
|
178 | + 'id' => 'endpoint_warm_up', |
|
179 | + 'type' => 'input', |
|
180 | + 'value' => '', |
|
181 | + 'default' => 'warm-up', |
|
182 | + ) |
|
183 | + ); |
|
184 | 184 | |
185 | 185 | |
186 | - $cmb->add_field( |
|
187 | - array( |
|
188 | - 'before_row' => '<h4><b><u>Default Options</u></b></h4>', |
|
189 | - 'name' => __( 'Warm Up', 'lsx-health-plan' ), |
|
190 | - 'description' => __( 'Set a default warm up routine.', 'lsx-health-plan' ), |
|
191 | - 'limit' => 1, |
|
192 | - 'id' => 'plan_warmup', |
|
193 | - 'type' => 'post_search_ajax', |
|
194 | - 'query_args' => array( |
|
195 | - 'post_type' => 'post', |
|
196 | - 'post_status' => array( 'publish' ), |
|
197 | - 'posts_per_page' => -1, |
|
198 | - ), |
|
199 | - ) |
|
200 | - ); |
|
201 | - $cmb->add_field( |
|
202 | - array( |
|
203 | - 'name' => __( 'Workout', 'lsx-health-plan' ), |
|
204 | - 'description' => __( 'Set a default workout routine.', 'lsx-health-plan' ), |
|
205 | - 'limit' => 1, |
|
206 | - 'id' => 'connected_workouts', |
|
207 | - 'type' => 'post_search_ajax', |
|
208 | - 'query_args' => array( |
|
209 | - 'post_type' => 'workout', |
|
210 | - 'post_status' => array( 'publish' ), |
|
211 | - 'posts_per_page' => -1, |
|
212 | - ), |
|
213 | - ) |
|
214 | - ); |
|
215 | - if ( function_exists( 'download_monitor' ) ) { |
|
216 | - $page_url = 'https://wordpress.org/plugins/download-monitor/'; |
|
217 | - $plugin_name = 'Download Monitor'; |
|
218 | - $description = sprintf( |
|
219 | - /* translators: %s: The subscription info */ |
|
220 | - __( 'If you are using <a target="_blank" href="%1$s">%2$s</a> you can set a default download file for your meal here.', 'lsx-search' ), |
|
221 | - $page_url, |
|
222 | - $plugin_name |
|
223 | - ); |
|
224 | - $cmb->add_field( |
|
225 | - array( |
|
226 | - 'name' => __( 'Default Warm Up PDF', 'lsx-health-plan' ), |
|
227 | - 'description' => $description, |
|
228 | - 'id' => 'download_page', |
|
229 | - 'type' => 'post_search_ajax', |
|
230 | - 'limit' => 1, |
|
231 | - 'query_args' => array( |
|
232 | - 'post_type' => array( 'dlm_download' ), |
|
233 | - 'post_status' => array( 'publish' ), |
|
234 | - 'posts_per_page' => -1, |
|
235 | - ), |
|
236 | - ) |
|
237 | - ); |
|
238 | - $cmb->add_field( |
|
239 | - array( |
|
240 | - 'name' => __( 'Default Workout PDF', 'lsx-health-plan' ), |
|
241 | - 'description' => $description, |
|
242 | - 'id' => 'download_workout', |
|
243 | - 'type' => 'post_search_ajax', |
|
244 | - 'limit' => 1, |
|
245 | - 'query_args' => array( |
|
246 | - 'post_type' => array( 'dlm_download' ), |
|
247 | - 'post_status' => array( 'publish' ), |
|
248 | - 'posts_per_page' => -1, |
|
249 | - ), |
|
250 | - 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
251 | - ) |
|
252 | - ); |
|
253 | - } |
|
254 | - } |
|
186 | + $cmb->add_field( |
|
187 | + array( |
|
188 | + 'before_row' => '<h4><b><u>Default Options</u></b></h4>', |
|
189 | + 'name' => __( 'Warm Up', 'lsx-health-plan' ), |
|
190 | + 'description' => __( 'Set a default warm up routine.', 'lsx-health-plan' ), |
|
191 | + 'limit' => 1, |
|
192 | + 'id' => 'plan_warmup', |
|
193 | + 'type' => 'post_search_ajax', |
|
194 | + 'query_args' => array( |
|
195 | + 'post_type' => 'post', |
|
196 | + 'post_status' => array( 'publish' ), |
|
197 | + 'posts_per_page' => -1, |
|
198 | + ), |
|
199 | + ) |
|
200 | + ); |
|
201 | + $cmb->add_field( |
|
202 | + array( |
|
203 | + 'name' => __( 'Workout', 'lsx-health-plan' ), |
|
204 | + 'description' => __( 'Set a default workout routine.', 'lsx-health-plan' ), |
|
205 | + 'limit' => 1, |
|
206 | + 'id' => 'connected_workouts', |
|
207 | + 'type' => 'post_search_ajax', |
|
208 | + 'query_args' => array( |
|
209 | + 'post_type' => 'workout', |
|
210 | + 'post_status' => array( 'publish' ), |
|
211 | + 'posts_per_page' => -1, |
|
212 | + ), |
|
213 | + ) |
|
214 | + ); |
|
215 | + if ( function_exists( 'download_monitor' ) ) { |
|
216 | + $page_url = 'https://wordpress.org/plugins/download-monitor/'; |
|
217 | + $plugin_name = 'Download Monitor'; |
|
218 | + $description = sprintf( |
|
219 | + /* translators: %s: The subscription info */ |
|
220 | + __( 'If you are using <a target="_blank" href="%1$s">%2$s</a> you can set a default download file for your meal here.', 'lsx-search' ), |
|
221 | + $page_url, |
|
222 | + $plugin_name |
|
223 | + ); |
|
224 | + $cmb->add_field( |
|
225 | + array( |
|
226 | + 'name' => __( 'Default Warm Up PDF', 'lsx-health-plan' ), |
|
227 | + 'description' => $description, |
|
228 | + 'id' => 'download_page', |
|
229 | + 'type' => 'post_search_ajax', |
|
230 | + 'limit' => 1, |
|
231 | + 'query_args' => array( |
|
232 | + 'post_type' => array( 'dlm_download' ), |
|
233 | + 'post_status' => array( 'publish' ), |
|
234 | + 'posts_per_page' => -1, |
|
235 | + ), |
|
236 | + ) |
|
237 | + ); |
|
238 | + $cmb->add_field( |
|
239 | + array( |
|
240 | + 'name' => __( 'Default Workout PDF', 'lsx-health-plan' ), |
|
241 | + 'description' => $description, |
|
242 | + 'id' => 'download_workout', |
|
243 | + 'type' => 'post_search_ajax', |
|
244 | + 'limit' => 1, |
|
245 | + 'query_args' => array( |
|
246 | + 'post_type' => array( 'dlm_download' ), |
|
247 | + 'post_status' => array( 'publish' ), |
|
248 | + 'posts_per_page' => -1, |
|
249 | + ), |
|
250 | + 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
251 | + ) |
|
252 | + ); |
|
253 | + } |
|
254 | + } |
|
255 | 255 | } |
256 | 256 | Workout::get_instance(); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * Constructor |
26 | 26 | */ |
27 | 27 | public function __construct() { |
28 | - add_action( 'lsx_hp_settings_page_workout_top', array( $this, 'settings' ), 1, 1 ); |
|
28 | + add_action('lsx_hp_settings_page_workout_top', array($this, 'settings'), 1, 1); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public static function get_instance() { |
39 | 39 | // If the single instance hasn't been set, set it now. |
40 | - if ( null === self::$instance ) { |
|
40 | + if (null === self::$instance) { |
|
41 | 41 | self::$instance = new self(); |
42 | 42 | } |
43 | 43 | return self::$instance; |
@@ -49,34 +49,34 @@ discard block |
||
49 | 49 | * @param object $cmb new_cmb2_box(). |
50 | 50 | * @return void |
51 | 51 | */ |
52 | - public function settings( $cmb ) { |
|
52 | + public function settings($cmb) { |
|
53 | 53 | $cmb->add_field( |
54 | 54 | array( |
55 | - 'name' => __( 'Disable Workouts', 'lsx-health-plan' ), |
|
55 | + 'name' => __('Disable Workouts', 'lsx-health-plan'), |
|
56 | 56 | 'id' => 'workout_disabled', |
57 | 57 | 'type' => 'checkbox', |
58 | 58 | 'value' => 1, |
59 | 59 | 'default' => 0, |
60 | - 'description' => __( 'Disable workout post type if you are wanting a minimal site.', 'lsx-health-plan' ), |
|
60 | + 'description' => __('Disable workout post type if you are wanting a minimal site.', 'lsx-health-plan'), |
|
61 | 61 | ) |
62 | 62 | ); |
63 | 63 | $cmb->add_field( |
64 | 64 | array( |
65 | - 'name' => __( 'Your Warm-up Intro', 'lsx-health-plan' ), |
|
65 | + 'name' => __('Your Warm-up Intro', 'lsx-health-plan'), |
|
66 | 66 | 'id' => 'warmup_intro', |
67 | 67 | 'type' => 'textarea_small', |
68 | 68 | 'value' => '', |
69 | - 'default' => __( "Don't forget your warm-up! It's a vital part of your daily workout routine.", 'lsx-health-plan' ), |
|
69 | + 'default' => __("Don't forget your warm-up! It's a vital part of your daily workout routine.", 'lsx-health-plan'), |
|
70 | 70 | ) |
71 | 71 | ); |
72 | - if ( post_type_exists( 'workout' ) ) { |
|
72 | + if (post_type_exists('workout')) { |
|
73 | 73 | $cmb->add_field( |
74 | 74 | array( |
75 | - 'name' => __( 'Your Workout Intro', 'lsx-health-plan' ), |
|
75 | + 'name' => __('Your Workout Intro', 'lsx-health-plan'), |
|
76 | 76 | 'id' => 'workout_intro', |
77 | 77 | 'type' => 'textarea_small', |
78 | 78 | 'value' => '', |
79 | - 'default' => __( "Let's do this! Smash your daily workout and reach your fitness goals.", 'lsx-health-plan' ), |
|
79 | + 'default' => __("Let's do this! Smash your daily workout and reach your fitness goals.", 'lsx-health-plan'), |
|
80 | 80 | ) |
81 | 81 | ); |
82 | 82 | } |
@@ -85,12 +85,12 @@ discard block |
||
85 | 85 | 'before_row' => '<h4><b><u>Layout Options</u></b></h4>', |
86 | 86 | 'id' => 'workout_tab_layout', |
87 | 87 | 'type' => 'select', |
88 | - 'name' => __( 'Workout Tab Layout', 'lsx-health-plan' ), |
|
89 | - 'description' => __( 'Choose the layout for the workouts.', 'lsx-health-plan' ), |
|
88 | + 'name' => __('Workout Tab Layout', 'lsx-health-plan'), |
|
89 | + 'description' => __('Choose the layout for the workouts.', 'lsx-health-plan'), |
|
90 | 90 | 'options' => array( |
91 | - 'table' => __( 'Table', 'lsx-health-plan' ), |
|
92 | - 'list' => __( 'List', 'lsx-health-plan' ), |
|
93 | - 'grid' => __( 'Grid', 'lsx-health-plan' ), |
|
91 | + 'table' => __('Table', 'lsx-health-plan'), |
|
92 | + 'list' => __('List', 'lsx-health-plan'), |
|
93 | + 'grid' => __('Grid', 'lsx-health-plan'), |
|
94 | 94 | ), |
95 | 95 | ) |
96 | 96 | ); |
@@ -98,12 +98,12 @@ discard block |
||
98 | 98 | array( |
99 | 99 | 'id' => 'workout_tab_link', |
100 | 100 | 'type' => 'select', |
101 | - 'name' => __( 'Workout Tab Link', 'lsx-health-plan' ), |
|
102 | - 'description' => __( 'Choose to show the excerpt, full content or nothing.', 'lsx-health-plan' ), |
|
101 | + 'name' => __('Workout Tab Link', 'lsx-health-plan'), |
|
102 | + 'description' => __('Choose to show the excerpt, full content or nothing.', 'lsx-health-plan'), |
|
103 | 103 | 'options' => array( |
104 | - '' => __( 'None', 'lsx-health-plan' ), |
|
105 | - 'single' => __( 'Single', 'lsx-health-plan' ), |
|
106 | - 'modal' => __( 'Modal', 'lsx-health-plan' ), |
|
104 | + '' => __('None', 'lsx-health-plan'), |
|
105 | + 'single' => __('Single', 'lsx-health-plan'), |
|
106 | + 'modal' => __('Modal', 'lsx-health-plan'), |
|
107 | 107 | ), |
108 | 108 | 'default' => 'modal', |
109 | 109 | ) |
@@ -112,12 +112,12 @@ discard block |
||
112 | 112 | array( |
113 | 113 | 'id' => 'workout_tab_modal_content', |
114 | 114 | 'type' => 'select', |
115 | - 'name' => __( 'Modal Content', 'lsx-health-plan' ), |
|
116 | - 'description' => __( 'Choose to show the excerpt, full content or nothing. For the modal content only', 'lsx-health-plan' ), |
|
115 | + 'name' => __('Modal Content', 'lsx-health-plan'), |
|
116 | + 'description' => __('Choose to show the excerpt, full content or nothing. For the modal content only', 'lsx-health-plan'), |
|
117 | 117 | 'options' => array( |
118 | - '' => __( 'None', 'lsx-health-plan' ), |
|
119 | - 'excerpt' => __( 'Excerpt', 'lsx-health-plan' ), |
|
120 | - 'full' => __( 'Full Content', 'lsx-health-plan' ), |
|
118 | + '' => __('None', 'lsx-health-plan'), |
|
119 | + 'excerpt' => __('Excerpt', 'lsx-health-plan'), |
|
120 | + 'full' => __('Full Content', 'lsx-health-plan'), |
|
121 | 121 | ), |
122 | 122 | 'default' => '', |
123 | 123 | ) |
@@ -126,14 +126,14 @@ discard block |
||
126 | 126 | array( |
127 | 127 | 'id' => 'workout_tab_columns', |
128 | 128 | 'type' => 'select', |
129 | - 'name' => __( 'Grid Columns', 'lsx-health-plan' ), |
|
130 | - 'description' => __( 'If you are displaying a grid, set the amount of columns you want to use.', 'lsx-health-plan' ), |
|
129 | + 'name' => __('Grid Columns', 'lsx-health-plan'), |
|
130 | + 'description' => __('If you are displaying a grid, set the amount of columns you want to use.', 'lsx-health-plan'), |
|
131 | 131 | 'options' => array( |
132 | - '12' => __( '1', 'lsx-health-plan' ), |
|
133 | - '6' => __( '2', 'lsx-health-plan' ), |
|
134 | - '4' => __( '3', 'lsx-health-plan' ), |
|
135 | - '3' => __( '4', 'lsx-health-plan' ), |
|
136 | - '2' => __( '6', 'lsx-health-plan' ), |
|
132 | + '12' => __('1', 'lsx-health-plan'), |
|
133 | + '6' => __('2', 'lsx-health-plan'), |
|
134 | + '4' => __('3', 'lsx-health-plan'), |
|
135 | + '3' => __('4', 'lsx-health-plan'), |
|
136 | + '2' => __('6', 'lsx-health-plan'), |
|
137 | 137 | ), |
138 | 138 | 'default' => '4', |
139 | 139 | ) |
@@ -142,12 +142,12 @@ discard block |
||
142 | 142 | array( |
143 | 143 | 'id' => 'workout_tab_content', |
144 | 144 | 'type' => 'select', |
145 | - 'name' => __( 'Grid Content', 'lsx-health-plan' ), |
|
146 | - 'description' => __( 'Choose to show the excerpt, full content or nothing. For the grid layout only', 'lsx-health-plan' ), |
|
145 | + 'name' => __('Grid Content', 'lsx-health-plan'), |
|
146 | + 'description' => __('Choose to show the excerpt, full content or nothing. For the grid layout only', 'lsx-health-plan'), |
|
147 | 147 | 'options' => array( |
148 | - '' => __( 'None', 'lsx-health-plan' ), |
|
149 | - 'excerpt' => __( 'Excerpt', 'lsx-health-plan' ), |
|
150 | - 'full' => __( 'Full Content', 'lsx-health-plan' ), |
|
148 | + '' => __('None', 'lsx-health-plan'), |
|
149 | + 'excerpt' => __('Excerpt', 'lsx-health-plan'), |
|
150 | + 'full' => __('Full Content', 'lsx-health-plan'), |
|
151 | 151 | ), |
152 | 152 | 'default' => '', |
153 | 153 | ) |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | $cmb->add_field( |
157 | 157 | array( |
158 | 158 | 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
159 | - 'name' => __( 'Single Workout Slug', 'lsx-health-plan' ), |
|
159 | + 'name' => __('Single Workout Slug', 'lsx-health-plan'), |
|
160 | 160 | 'id' => 'endpoint_workout', |
161 | 161 | 'type' => 'input', |
162 | 162 | 'value' => '', |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | ); |
166 | 166 | $cmb->add_field( |
167 | 167 | array( |
168 | - 'name' => __( 'Workouts Archive Slug', 'lsx-health-plan' ), |
|
168 | + 'name' => __('Workouts Archive Slug', 'lsx-health-plan'), |
|
169 | 169 | 'id' => 'endpoint_workout_archive', |
170 | 170 | 'type' => 'input', |
171 | 171 | 'value' => '', |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | ); |
175 | 175 | $cmb->add_field( |
176 | 176 | array( |
177 | - 'name' => __( 'Warm Up Slug', 'lsx-health-plan' ), |
|
177 | + 'name' => __('Warm Up Slug', 'lsx-health-plan'), |
|
178 | 178 | 'id' => 'endpoint_warm_up', |
179 | 179 | 'type' => 'input', |
180 | 180 | 'value' => '', |
@@ -186,68 +186,68 @@ discard block |
||
186 | 186 | $cmb->add_field( |
187 | 187 | array( |
188 | 188 | 'before_row' => '<h4><b><u>Default Options</u></b></h4>', |
189 | - 'name' => __( 'Warm Up', 'lsx-health-plan' ), |
|
190 | - 'description' => __( 'Set a default warm up routine.', 'lsx-health-plan' ), |
|
189 | + 'name' => __('Warm Up', 'lsx-health-plan'), |
|
190 | + 'description' => __('Set a default warm up routine.', 'lsx-health-plan'), |
|
191 | 191 | 'limit' => 1, |
192 | 192 | 'id' => 'plan_warmup', |
193 | 193 | 'type' => 'post_search_ajax', |
194 | 194 | 'query_args' => array( |
195 | 195 | 'post_type' => 'post', |
196 | - 'post_status' => array( 'publish' ), |
|
196 | + 'post_status' => array('publish'), |
|
197 | 197 | 'posts_per_page' => -1, |
198 | 198 | ), |
199 | 199 | ) |
200 | 200 | ); |
201 | 201 | $cmb->add_field( |
202 | 202 | array( |
203 | - 'name' => __( 'Workout', 'lsx-health-plan' ), |
|
204 | - 'description' => __( 'Set a default workout routine.', 'lsx-health-plan' ), |
|
203 | + 'name' => __('Workout', 'lsx-health-plan'), |
|
204 | + 'description' => __('Set a default workout routine.', 'lsx-health-plan'), |
|
205 | 205 | 'limit' => 1, |
206 | 206 | 'id' => 'connected_workouts', |
207 | 207 | 'type' => 'post_search_ajax', |
208 | 208 | 'query_args' => array( |
209 | 209 | 'post_type' => 'workout', |
210 | - 'post_status' => array( 'publish' ), |
|
210 | + 'post_status' => array('publish'), |
|
211 | 211 | 'posts_per_page' => -1, |
212 | 212 | ), |
213 | 213 | ) |
214 | 214 | ); |
215 | - if ( function_exists( 'download_monitor' ) ) { |
|
215 | + if (function_exists('download_monitor')) { |
|
216 | 216 | $page_url = 'https://wordpress.org/plugins/download-monitor/'; |
217 | 217 | $plugin_name = 'Download Monitor'; |
218 | 218 | $description = sprintf( |
219 | 219 | /* translators: %s: The subscription info */ |
220 | - __( 'If you are using <a target="_blank" href="%1$s">%2$s</a> you can set a default download file for your meal here.', 'lsx-search' ), |
|
220 | + __('If you are using <a target="_blank" href="%1$s">%2$s</a> you can set a default download file for your meal here.', 'lsx-search'), |
|
221 | 221 | $page_url, |
222 | 222 | $plugin_name |
223 | 223 | ); |
224 | 224 | $cmb->add_field( |
225 | 225 | array( |
226 | - 'name' => __( 'Default Warm Up PDF', 'lsx-health-plan' ), |
|
226 | + 'name' => __('Default Warm Up PDF', 'lsx-health-plan'), |
|
227 | 227 | 'description' => $description, |
228 | 228 | 'id' => 'download_page', |
229 | 229 | 'type' => 'post_search_ajax', |
230 | 230 | 'limit' => 1, |
231 | 231 | 'query_args' => array( |
232 | - 'post_type' => array( 'dlm_download' ), |
|
233 | - 'post_status' => array( 'publish' ), |
|
232 | + 'post_type' => array('dlm_download'), |
|
233 | + 'post_status' => array('publish'), |
|
234 | 234 | 'posts_per_page' => -1, |
235 | 235 | ), |
236 | 236 | ) |
237 | 237 | ); |
238 | 238 | $cmb->add_field( |
239 | 239 | array( |
240 | - 'name' => __( 'Default Workout PDF', 'lsx-health-plan' ), |
|
240 | + 'name' => __('Default Workout PDF', 'lsx-health-plan'), |
|
241 | 241 | 'description' => $description, |
242 | 242 | 'id' => 'download_workout', |
243 | 243 | 'type' => 'post_search_ajax', |
244 | 244 | 'limit' => 1, |
245 | 245 | 'query_args' => array( |
246 | - 'post_type' => array( 'dlm_download' ), |
|
247 | - 'post_status' => array( 'publish' ), |
|
246 | + 'post_type' => array('dlm_download'), |
|
247 | + 'post_status' => array('publish'), |
|
248 | 248 | 'posts_per_page' => -1, |
249 | 249 | ), |
250 | - 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
250 | + 'after_row' => __('<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan'), |
|
251 | 251 | ) |
252 | 252 | ); |
253 | 253 | } |
@@ -12,147 +12,147 @@ |
||
12 | 12 | */ |
13 | 13 | class Meal { |
14 | 14 | |
15 | - /** |
|
16 | - * Holds class instance |
|
17 | - * |
|
18 | - * @since 1.0.0 |
|
19 | - * |
|
20 | - * @var object \lsx_health_plan\classes\admin\Meal() |
|
21 | - */ |
|
22 | - protected static $instance = null; |
|
15 | + /** |
|
16 | + * Holds class instance |
|
17 | + * |
|
18 | + * @since 1.0.0 |
|
19 | + * |
|
20 | + * @var object \lsx_health_plan\classes\admin\Meal() |
|
21 | + */ |
|
22 | + protected static $instance = null; |
|
23 | 23 | |
24 | - /** |
|
25 | - * Constructor |
|
26 | - */ |
|
27 | - public function __construct() { |
|
28 | - add_action( 'lsx_hp_settings_page_meal_top', array( $this, 'settings' ), 1, 1 ); |
|
29 | - } |
|
24 | + /** |
|
25 | + * Constructor |
|
26 | + */ |
|
27 | + public function __construct() { |
|
28 | + add_action( 'lsx_hp_settings_page_meal_top', array( $this, 'settings' ), 1, 1 ); |
|
29 | + } |
|
30 | 30 | |
31 | - /** |
|
32 | - * Return an instance of this class. |
|
33 | - * |
|
34 | - * @since 1.0.0 |
|
35 | - * |
|
36 | - * @return object \lsx_health_plan\classes\admin\Meal() A single instance of this class. |
|
37 | - */ |
|
38 | - public static function get_instance() { |
|
39 | - // If the single instance hasn't been set, set it now. |
|
40 | - if ( null === self::$instance ) { |
|
41 | - self::$instance = new self(); |
|
42 | - } |
|
43 | - return self::$instance; |
|
44 | - } |
|
31 | + /** |
|
32 | + * Return an instance of this class. |
|
33 | + * |
|
34 | + * @since 1.0.0 |
|
35 | + * |
|
36 | + * @return object \lsx_health_plan\classes\admin\Meal() A single instance of this class. |
|
37 | + */ |
|
38 | + public static function get_instance() { |
|
39 | + // If the single instance hasn't been set, set it now. |
|
40 | + if ( null === self::$instance ) { |
|
41 | + self::$instance = new self(); |
|
42 | + } |
|
43 | + return self::$instance; |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * Registers the general settings. |
|
48 | - * |
|
49 | - * @param object $cmb new_cmb2_box(). |
|
50 | - * @return void |
|
51 | - */ |
|
52 | - public function settings( $cmb ) { |
|
53 | - $cmb->add_field( |
|
54 | - array( |
|
55 | - 'name' => __( 'Disable Meals', 'lsx-health-plan' ), |
|
56 | - 'id' => 'meal_disabled', |
|
57 | - 'type' => 'checkbox', |
|
58 | - 'value' => 1, |
|
59 | - 'default' => 0, |
|
60 | - 'description' => __( 'Disable meal post type if you are wanting a minimal site.', 'lsx-health-plan' ), |
|
61 | - ) |
|
62 | - ); |
|
46 | + /** |
|
47 | + * Registers the general settings. |
|
48 | + * |
|
49 | + * @param object $cmb new_cmb2_box(). |
|
50 | + * @return void |
|
51 | + */ |
|
52 | + public function settings( $cmb ) { |
|
53 | + $cmb->add_field( |
|
54 | + array( |
|
55 | + 'name' => __( 'Disable Meals', 'lsx-health-plan' ), |
|
56 | + 'id' => 'meal_disabled', |
|
57 | + 'type' => 'checkbox', |
|
58 | + 'value' => 1, |
|
59 | + 'default' => 0, |
|
60 | + 'description' => __( 'Disable meal post type if you are wanting a minimal site.', 'lsx-health-plan' ), |
|
61 | + ) |
|
62 | + ); |
|
63 | 63 | |
64 | - $cmb->add_field( |
|
65 | - array( |
|
66 | - 'id' => 'meal_archive_description', |
|
67 | - 'type' => 'wysiwyg', |
|
68 | - 'name' => __( 'Archive Description', 'lsx-health-plan' ), |
|
69 | - 'description' => __( 'This will show up on the post type archive.', 'lsx-health-plan' ), |
|
70 | - 'options' => array( |
|
71 | - 'textarea_rows' => get_option('default_post_edit_rows', 6), |
|
72 | - ), |
|
73 | - ) |
|
74 | - ); |
|
64 | + $cmb->add_field( |
|
65 | + array( |
|
66 | + 'id' => 'meal_archive_description', |
|
67 | + 'type' => 'wysiwyg', |
|
68 | + 'name' => __( 'Archive Description', 'lsx-health-plan' ), |
|
69 | + 'description' => __( 'This will show up on the post type archive.', 'lsx-health-plan' ), |
|
70 | + 'options' => array( |
|
71 | + 'textarea_rows' => get_option('default_post_edit_rows', 6), |
|
72 | + ), |
|
73 | + ) |
|
74 | + ); |
|
75 | 75 | |
76 | - $cmb->add_field( |
|
77 | - array( |
|
78 | - 'name' => __( 'Your Meal Plan Intro', 'lsx-health-plan' ), |
|
79 | - 'id' => 'meal_plan_intro', |
|
80 | - 'type' => 'textarea_small', |
|
81 | - 'value' => '', |
|
82 | - 'default' => __( 'Get the right mix of nutrients to keep muscles strong & healthy.', 'lsx-health-plan' ), |
|
83 | - ) |
|
84 | - ); |
|
76 | + $cmb->add_field( |
|
77 | + array( |
|
78 | + 'name' => __( 'Your Meal Plan Intro', 'lsx-health-plan' ), |
|
79 | + 'id' => 'meal_plan_intro', |
|
80 | + 'type' => 'textarea_small', |
|
81 | + 'value' => '', |
|
82 | + 'default' => __( 'Get the right mix of nutrients to keep muscles strong & healthy.', 'lsx-health-plan' ), |
|
83 | + ) |
|
84 | + ); |
|
85 | 85 | |
86 | - $cmb->add_field( |
|
87 | - array( |
|
88 | - 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
|
89 | - 'name' => __( 'Meal Slug', 'lsx-health-plan' ), |
|
90 | - 'id' => 'endpoint_meal', |
|
91 | - 'type' => 'input', |
|
92 | - 'value' => '', |
|
93 | - 'default' => 'meal', |
|
94 | - ) |
|
95 | - ); |
|
96 | - $cmb->add_field( |
|
97 | - array( |
|
98 | - 'name' => __( 'Meals Archive Slug', 'lsx-health-plan' ), |
|
99 | - 'id' => 'endpoint_meal_archive', |
|
100 | - 'type' => 'input', |
|
101 | - 'value' => '', |
|
102 | - 'default' => 'meals', |
|
103 | - ) |
|
104 | - ); |
|
105 | - $cmb->add_field( |
|
106 | - array( |
|
107 | - 'name' => __( 'Single Meal Slug', 'lsx-health-plan' ), |
|
108 | - 'id' => 'meal_single_slug', |
|
109 | - 'type' => 'input', |
|
110 | - 'value' => '', |
|
111 | - 'default' => 'meal', |
|
112 | - ) |
|
113 | - ); |
|
86 | + $cmb->add_field( |
|
87 | + array( |
|
88 | + 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
|
89 | + 'name' => __( 'Meal Slug', 'lsx-health-plan' ), |
|
90 | + 'id' => 'endpoint_meal', |
|
91 | + 'type' => 'input', |
|
92 | + 'value' => '', |
|
93 | + 'default' => 'meal', |
|
94 | + ) |
|
95 | + ); |
|
96 | + $cmb->add_field( |
|
97 | + array( |
|
98 | + 'name' => __( 'Meals Archive Slug', 'lsx-health-plan' ), |
|
99 | + 'id' => 'endpoint_meal_archive', |
|
100 | + 'type' => 'input', |
|
101 | + 'value' => '', |
|
102 | + 'default' => 'meals', |
|
103 | + ) |
|
104 | + ); |
|
105 | + $cmb->add_field( |
|
106 | + array( |
|
107 | + 'name' => __( 'Single Meal Slug', 'lsx-health-plan' ), |
|
108 | + 'id' => 'meal_single_slug', |
|
109 | + 'type' => 'input', |
|
110 | + 'value' => '', |
|
111 | + 'default' => 'meal', |
|
112 | + ) |
|
113 | + ); |
|
114 | 114 | |
115 | - $cmb->add_field( |
|
116 | - array( |
|
117 | - 'before_row' => '<h4><b><u>Default Options</u></b></h4>', |
|
118 | - 'name' => __( 'Default Meal Plan', 'lsx-health-plan' ), |
|
119 | - 'description' => __( 'Set a default meal plan.', 'lsx-health-plan' ), |
|
120 | - 'limit' => 1, |
|
121 | - 'id' => 'connected_meals', |
|
122 | - 'type' => 'post_search_ajax', |
|
123 | - 'query_args' => array( |
|
124 | - 'post_type' => 'meal', |
|
125 | - 'post_status' => array( 'publish' ), |
|
126 | - 'posts_per_page' => -1, |
|
127 | - ), |
|
128 | - ) |
|
129 | - ); |
|
130 | - if ( function_exists( 'download_monitor' ) ) { |
|
131 | - $page_url = 'https://wordpress.org/plugins/download-monitor/'; |
|
132 | - $plugin_name = 'Download Monitor'; |
|
133 | - $description = sprintf( |
|
134 | - /* translators: %s: The subscription info */ |
|
135 | - __( 'If you are using <a target="_blank" href="%1$s">%2$s</a> you can set a default download file for your meal here.', 'lsx-search' ), |
|
136 | - $page_url, |
|
137 | - $plugin_name |
|
138 | - ); |
|
139 | - $cmb->add_field( |
|
140 | - array( |
|
141 | - 'name' => __( 'Default Meal Plan PDF', 'lsx-health-plan' ), |
|
142 | - 'description' => $description, |
|
143 | - 'id' => 'download_meal', |
|
144 | - 'type' => 'post_search_ajax', |
|
145 | - 'limit' => 1, |
|
146 | - 'query_args' => array( |
|
147 | - 'post_type' => array( 'dlm_download' ), |
|
148 | - 'post_status' => array( 'publish' ), |
|
149 | - 'posts_per_page' => -1, |
|
150 | - ), |
|
151 | - 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
152 | - ) |
|
153 | - ); |
|
154 | - } |
|
115 | + $cmb->add_field( |
|
116 | + array( |
|
117 | + 'before_row' => '<h4><b><u>Default Options</u></b></h4>', |
|
118 | + 'name' => __( 'Default Meal Plan', 'lsx-health-plan' ), |
|
119 | + 'description' => __( 'Set a default meal plan.', 'lsx-health-plan' ), |
|
120 | + 'limit' => 1, |
|
121 | + 'id' => 'connected_meals', |
|
122 | + 'type' => 'post_search_ajax', |
|
123 | + 'query_args' => array( |
|
124 | + 'post_type' => 'meal', |
|
125 | + 'post_status' => array( 'publish' ), |
|
126 | + 'posts_per_page' => -1, |
|
127 | + ), |
|
128 | + ) |
|
129 | + ); |
|
130 | + if ( function_exists( 'download_monitor' ) ) { |
|
131 | + $page_url = 'https://wordpress.org/plugins/download-monitor/'; |
|
132 | + $plugin_name = 'Download Monitor'; |
|
133 | + $description = sprintf( |
|
134 | + /* translators: %s: The subscription info */ |
|
135 | + __( 'If you are using <a target="_blank" href="%1$s">%2$s</a> you can set a default download file for your meal here.', 'lsx-search' ), |
|
136 | + $page_url, |
|
137 | + $plugin_name |
|
138 | + ); |
|
139 | + $cmb->add_field( |
|
140 | + array( |
|
141 | + 'name' => __( 'Default Meal Plan PDF', 'lsx-health-plan' ), |
|
142 | + 'description' => $description, |
|
143 | + 'id' => 'download_meal', |
|
144 | + 'type' => 'post_search_ajax', |
|
145 | + 'limit' => 1, |
|
146 | + 'query_args' => array( |
|
147 | + 'post_type' => array( 'dlm_download' ), |
|
148 | + 'post_status' => array( 'publish' ), |
|
149 | + 'posts_per_page' => -1, |
|
150 | + ), |
|
151 | + 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
152 | + ) |
|
153 | + ); |
|
154 | + } |
|
155 | 155 | |
156 | - } |
|
156 | + } |
|
157 | 157 | } |
158 | 158 | Meal::get_instance(); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * Constructor |
26 | 26 | */ |
27 | 27 | public function __construct() { |
28 | - add_action( 'lsx_hp_settings_page_meal_top', array( $this, 'settings' ), 1, 1 ); |
|
28 | + add_action('lsx_hp_settings_page_meal_top', array($this, 'settings'), 1, 1); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public static function get_instance() { |
39 | 39 | // If the single instance hasn't been set, set it now. |
40 | - if ( null === self::$instance ) { |
|
40 | + if (null === self::$instance) { |
|
41 | 41 | self::$instance = new self(); |
42 | 42 | } |
43 | 43 | return self::$instance; |
@@ -49,15 +49,15 @@ discard block |
||
49 | 49 | * @param object $cmb new_cmb2_box(). |
50 | 50 | * @return void |
51 | 51 | */ |
52 | - public function settings( $cmb ) { |
|
52 | + public function settings($cmb) { |
|
53 | 53 | $cmb->add_field( |
54 | 54 | array( |
55 | - 'name' => __( 'Disable Meals', 'lsx-health-plan' ), |
|
55 | + 'name' => __('Disable Meals', 'lsx-health-plan'), |
|
56 | 56 | 'id' => 'meal_disabled', |
57 | 57 | 'type' => 'checkbox', |
58 | 58 | 'value' => 1, |
59 | 59 | 'default' => 0, |
60 | - 'description' => __( 'Disable meal post type if you are wanting a minimal site.', 'lsx-health-plan' ), |
|
60 | + 'description' => __('Disable meal post type if you are wanting a minimal site.', 'lsx-health-plan'), |
|
61 | 61 | ) |
62 | 62 | ); |
63 | 63 | |
@@ -65,8 +65,8 @@ discard block |
||
65 | 65 | array( |
66 | 66 | 'id' => 'meal_archive_description', |
67 | 67 | 'type' => 'wysiwyg', |
68 | - 'name' => __( 'Archive Description', 'lsx-health-plan' ), |
|
69 | - 'description' => __( 'This will show up on the post type archive.', 'lsx-health-plan' ), |
|
68 | + 'name' => __('Archive Description', 'lsx-health-plan'), |
|
69 | + 'description' => __('This will show up on the post type archive.', 'lsx-health-plan'), |
|
70 | 70 | 'options' => array( |
71 | 71 | 'textarea_rows' => get_option('default_post_edit_rows', 6), |
72 | 72 | ), |
@@ -75,18 +75,18 @@ discard block |
||
75 | 75 | |
76 | 76 | $cmb->add_field( |
77 | 77 | array( |
78 | - 'name' => __( 'Your Meal Plan Intro', 'lsx-health-plan' ), |
|
78 | + 'name' => __('Your Meal Plan Intro', 'lsx-health-plan'), |
|
79 | 79 | 'id' => 'meal_plan_intro', |
80 | 80 | 'type' => 'textarea_small', |
81 | 81 | 'value' => '', |
82 | - 'default' => __( 'Get the right mix of nutrients to keep muscles strong & healthy.', 'lsx-health-plan' ), |
|
82 | + 'default' => __('Get the right mix of nutrients to keep muscles strong & healthy.', 'lsx-health-plan'), |
|
83 | 83 | ) |
84 | 84 | ); |
85 | 85 | |
86 | 86 | $cmb->add_field( |
87 | 87 | array( |
88 | 88 | 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
89 | - 'name' => __( 'Meal Slug', 'lsx-health-plan' ), |
|
89 | + 'name' => __('Meal Slug', 'lsx-health-plan'), |
|
90 | 90 | 'id' => 'endpoint_meal', |
91 | 91 | 'type' => 'input', |
92 | 92 | 'value' => '', |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | ); |
96 | 96 | $cmb->add_field( |
97 | 97 | array( |
98 | - 'name' => __( 'Meals Archive Slug', 'lsx-health-plan' ), |
|
98 | + 'name' => __('Meals Archive Slug', 'lsx-health-plan'), |
|
99 | 99 | 'id' => 'endpoint_meal_archive', |
100 | 100 | 'type' => 'input', |
101 | 101 | 'value' => '', |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | ); |
105 | 105 | $cmb->add_field( |
106 | 106 | array( |
107 | - 'name' => __( 'Single Meal Slug', 'lsx-health-plan' ), |
|
107 | + 'name' => __('Single Meal Slug', 'lsx-health-plan'), |
|
108 | 108 | 'id' => 'meal_single_slug', |
109 | 109 | 'type' => 'input', |
110 | 110 | 'value' => '', |
@@ -115,40 +115,40 @@ discard block |
||
115 | 115 | $cmb->add_field( |
116 | 116 | array( |
117 | 117 | 'before_row' => '<h4><b><u>Default Options</u></b></h4>', |
118 | - 'name' => __( 'Default Meal Plan', 'lsx-health-plan' ), |
|
119 | - 'description' => __( 'Set a default meal plan.', 'lsx-health-plan' ), |
|
118 | + 'name' => __('Default Meal Plan', 'lsx-health-plan'), |
|
119 | + 'description' => __('Set a default meal plan.', 'lsx-health-plan'), |
|
120 | 120 | 'limit' => 1, |
121 | 121 | 'id' => 'connected_meals', |
122 | 122 | 'type' => 'post_search_ajax', |
123 | 123 | 'query_args' => array( |
124 | 124 | 'post_type' => 'meal', |
125 | - 'post_status' => array( 'publish' ), |
|
125 | + 'post_status' => array('publish'), |
|
126 | 126 | 'posts_per_page' => -1, |
127 | 127 | ), |
128 | 128 | ) |
129 | 129 | ); |
130 | - if ( function_exists( 'download_monitor' ) ) { |
|
130 | + if (function_exists('download_monitor')) { |
|
131 | 131 | $page_url = 'https://wordpress.org/plugins/download-monitor/'; |
132 | 132 | $plugin_name = 'Download Monitor'; |
133 | 133 | $description = sprintf( |
134 | 134 | /* translators: %s: The subscription info */ |
135 | - __( 'If you are using <a target="_blank" href="%1$s">%2$s</a> you can set a default download file for your meal here.', 'lsx-search' ), |
|
135 | + __('If you are using <a target="_blank" href="%1$s">%2$s</a> you can set a default download file for your meal here.', 'lsx-search'), |
|
136 | 136 | $page_url, |
137 | 137 | $plugin_name |
138 | 138 | ); |
139 | 139 | $cmb->add_field( |
140 | 140 | array( |
141 | - 'name' => __( 'Default Meal Plan PDF', 'lsx-health-plan' ), |
|
141 | + 'name' => __('Default Meal Plan PDF', 'lsx-health-plan'), |
|
142 | 142 | 'description' => $description, |
143 | 143 | 'id' => 'download_meal', |
144 | 144 | 'type' => 'post_search_ajax', |
145 | 145 | 'limit' => 1, |
146 | 146 | 'query_args' => array( |
147 | - 'post_type' => array( 'dlm_download' ), |
|
148 | - 'post_status' => array( 'publish' ), |
|
147 | + 'post_type' => array('dlm_download'), |
|
148 | + 'post_status' => array('publish'), |
|
149 | 149 | 'posts_per_page' => -1, |
150 | 150 | ), |
151 | - 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
151 | + 'after_row' => __('<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan'), |
|
152 | 152 | ) |
153 | 153 | ); |
154 | 154 | } |
@@ -12,133 +12,133 @@ |
||
12 | 12 | */ |
13 | 13 | class Plan { |
14 | 14 | |
15 | - /** |
|
16 | - * Holds class instance |
|
17 | - * |
|
18 | - * @since 1.0.0 |
|
19 | - * |
|
20 | - * @var object \lsx_health_plan\classes\admin\Plan() |
|
21 | - */ |
|
22 | - protected static $instance = null; |
|
15 | + /** |
|
16 | + * Holds class instance |
|
17 | + * |
|
18 | + * @since 1.0.0 |
|
19 | + * |
|
20 | + * @var object \lsx_health_plan\classes\admin\Plan() |
|
21 | + */ |
|
22 | + protected static $instance = null; |
|
23 | 23 | |
24 | - /** |
|
25 | - * Constructor |
|
26 | - */ |
|
27 | - public function __construct() { |
|
28 | - add_action( 'lsx_hp_settings_page_plan_top', array( $this, 'settings' ), 1, 1 ); |
|
29 | - } |
|
24 | + /** |
|
25 | + * Constructor |
|
26 | + */ |
|
27 | + public function __construct() { |
|
28 | + add_action( 'lsx_hp_settings_page_plan_top', array( $this, 'settings' ), 1, 1 ); |
|
29 | + } |
|
30 | 30 | |
31 | - /** |
|
32 | - * Return an instance of this class. |
|
33 | - * |
|
34 | - * @since 1.0.0 |
|
35 | - * |
|
36 | - * @return object \lsx_health_plan\classes\admin\Plan() A single instance of this class. |
|
37 | - */ |
|
38 | - public static function get_instance() { |
|
39 | - // If the single instance hasn't been set, set it now. |
|
40 | - if ( null === self::$instance ) { |
|
41 | - self::$instance = new self(); |
|
42 | - } |
|
43 | - return self::$instance; |
|
44 | - } |
|
31 | + /** |
|
32 | + * Return an instance of this class. |
|
33 | + * |
|
34 | + * @since 1.0.0 |
|
35 | + * |
|
36 | + * @return object \lsx_health_plan\classes\admin\Plan() A single instance of this class. |
|
37 | + */ |
|
38 | + public static function get_instance() { |
|
39 | + // If the single instance hasn't been set, set it now. |
|
40 | + if ( null === self::$instance ) { |
|
41 | + self::$instance = new self(); |
|
42 | + } |
|
43 | + return self::$instance; |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * Registers the general settings. |
|
48 | - * |
|
49 | - * @param object $cmb new_cmb2_box(). |
|
50 | - * @return void |
|
51 | - */ |
|
52 | - public function settings( $cmb ) { |
|
53 | - $cmb->add_field( |
|
54 | - array( |
|
55 | - 'name' => __( 'Plan Filters', 'lsx-health-plan' ), |
|
56 | - 'id' => 'plan_filters_disabled', |
|
57 | - 'type' => 'checkbox', |
|
58 | - 'value' => 1, |
|
59 | - 'default' => 0, |
|
60 | - 'description' => __( 'Toggle the display of the tab filters on the post type archive.', 'lsx-health-plan' ), |
|
61 | - ) |
|
62 | - ); |
|
46 | + /** |
|
47 | + * Registers the general settings. |
|
48 | + * |
|
49 | + * @param object $cmb new_cmb2_box(). |
|
50 | + * @return void |
|
51 | + */ |
|
52 | + public function settings( $cmb ) { |
|
53 | + $cmb->add_field( |
|
54 | + array( |
|
55 | + 'name' => __( 'Plan Filters', 'lsx-health-plan' ), |
|
56 | + 'id' => 'plan_filters_disabled', |
|
57 | + 'type' => 'checkbox', |
|
58 | + 'value' => 1, |
|
59 | + 'default' => 0, |
|
60 | + 'description' => __( 'Toggle the display of the tab filters on the post type archive.', 'lsx-health-plan' ), |
|
61 | + ) |
|
62 | + ); |
|
63 | 63 | |
64 | - $cmb->add_field( |
|
65 | - array( |
|
66 | - 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
|
67 | - 'name' => __( 'My Plan Slug', 'lsx-health-plan' ), |
|
68 | - 'description' => __( 'This will be the slug url for redirecting users after login, use the login page slug.', 'lsx-health-plan' ), |
|
69 | - 'id' => 'my_plan_slug', |
|
70 | - 'type' => 'input', |
|
71 | - 'value' => '', |
|
72 | - 'default' => 'my-plan', |
|
73 | - ) |
|
74 | - ); |
|
75 | - $cmb->add_field( |
|
76 | - array( |
|
77 | - 'name' => __( 'Single Plan Slug', 'lsx-health-plan' ), |
|
78 | - 'id' => 'plan_single_slug', |
|
79 | - 'type' => 'input', |
|
80 | - 'value' => '', |
|
81 | - 'default' => 'plan', |
|
82 | - ) |
|
83 | - ); |
|
84 | - $cmb->add_field( |
|
85 | - array( |
|
86 | - 'name' => __( 'Plans Archive Slug', 'lsx-health-plan' ), |
|
87 | - 'id' => 'endpoint_plan_archive', |
|
88 | - 'type' => 'input', |
|
89 | - 'value' => '', |
|
90 | - 'default' => 'plans', |
|
91 | - ) |
|
92 | - ); |
|
64 | + $cmb->add_field( |
|
65 | + array( |
|
66 | + 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
|
67 | + 'name' => __( 'My Plan Slug', 'lsx-health-plan' ), |
|
68 | + 'description' => __( 'This will be the slug url for redirecting users after login, use the login page slug.', 'lsx-health-plan' ), |
|
69 | + 'id' => 'my_plan_slug', |
|
70 | + 'type' => 'input', |
|
71 | + 'value' => '', |
|
72 | + 'default' => 'my-plan', |
|
73 | + ) |
|
74 | + ); |
|
75 | + $cmb->add_field( |
|
76 | + array( |
|
77 | + 'name' => __( 'Single Plan Slug', 'lsx-health-plan' ), |
|
78 | + 'id' => 'plan_single_slug', |
|
79 | + 'type' => 'input', |
|
80 | + 'value' => '', |
|
81 | + 'default' => 'plan', |
|
82 | + ) |
|
83 | + ); |
|
84 | + $cmb->add_field( |
|
85 | + array( |
|
86 | + 'name' => __( 'Plans Archive Slug', 'lsx-health-plan' ), |
|
87 | + 'id' => 'endpoint_plan_archive', |
|
88 | + 'type' => 'input', |
|
89 | + 'value' => '', |
|
90 | + 'default' => 'plans', |
|
91 | + ) |
|
92 | + ); |
|
93 | 93 | |
94 | - $cmb->add_field( |
|
95 | - array( |
|
96 | - 'before_row' => '<h4><b><u>My Stats Options</u></b></h4>', |
|
97 | - 'name' => __( 'Disable All Stats', 'lsx-health-plan' ), |
|
98 | - 'desc' => 'Disable All Stats', |
|
99 | - 'id' => 'disable_all_stats', |
|
100 | - 'type' => 'checkbox', |
|
101 | - 'value' => 1, |
|
102 | - 'default' => 0, |
|
103 | - ) |
|
104 | - ); |
|
105 | - $cmb->add_field( |
|
106 | - array( |
|
107 | - 'name' => __( 'Disable Weight', 'lsx-health-plan' ), |
|
108 | - 'id' => 'disable_weight_checkbox', |
|
109 | - 'type' => 'checkbox', |
|
110 | - 'value' => 1, |
|
111 | - 'default' => 0, |
|
112 | - ) |
|
113 | - ); |
|
114 | - $cmb->add_field( |
|
115 | - array( |
|
116 | - 'name' => __( 'Disable Height', 'lsx-health-plan' ), |
|
117 | - 'id' => 'disable_height_checkbox', |
|
118 | - 'type' => 'checkbox', |
|
119 | - 'value' => 1, |
|
120 | - 'default' => 0, |
|
121 | - ) |
|
122 | - ); |
|
123 | - $cmb->add_field( |
|
124 | - array( |
|
125 | - 'name' => __( 'Disable Waist', 'lsx-health-plan' ), |
|
126 | - 'id' => 'disable_waist_checkbox', |
|
127 | - 'type' => 'checkbox', |
|
128 | - 'value' => 1, |
|
129 | - 'default' => 0, |
|
130 | - ) |
|
131 | - ); |
|
132 | - $cmb->add_field( |
|
133 | - array( |
|
134 | - 'name' => __( 'Disable BMI', 'lsx-health-plan' ), |
|
135 | - 'id' => 'disable_bmi_checkbox', |
|
136 | - 'type' => 'checkbox', |
|
137 | - 'value' => 1, |
|
138 | - 'default' => 0, |
|
139 | - 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
140 | - ) |
|
141 | - ); |
|
142 | - } |
|
94 | + $cmb->add_field( |
|
95 | + array( |
|
96 | + 'before_row' => '<h4><b><u>My Stats Options</u></b></h4>', |
|
97 | + 'name' => __( 'Disable All Stats', 'lsx-health-plan' ), |
|
98 | + 'desc' => 'Disable All Stats', |
|
99 | + 'id' => 'disable_all_stats', |
|
100 | + 'type' => 'checkbox', |
|
101 | + 'value' => 1, |
|
102 | + 'default' => 0, |
|
103 | + ) |
|
104 | + ); |
|
105 | + $cmb->add_field( |
|
106 | + array( |
|
107 | + 'name' => __( 'Disable Weight', 'lsx-health-plan' ), |
|
108 | + 'id' => 'disable_weight_checkbox', |
|
109 | + 'type' => 'checkbox', |
|
110 | + 'value' => 1, |
|
111 | + 'default' => 0, |
|
112 | + ) |
|
113 | + ); |
|
114 | + $cmb->add_field( |
|
115 | + array( |
|
116 | + 'name' => __( 'Disable Height', 'lsx-health-plan' ), |
|
117 | + 'id' => 'disable_height_checkbox', |
|
118 | + 'type' => 'checkbox', |
|
119 | + 'value' => 1, |
|
120 | + 'default' => 0, |
|
121 | + ) |
|
122 | + ); |
|
123 | + $cmb->add_field( |
|
124 | + array( |
|
125 | + 'name' => __( 'Disable Waist', 'lsx-health-plan' ), |
|
126 | + 'id' => 'disable_waist_checkbox', |
|
127 | + 'type' => 'checkbox', |
|
128 | + 'value' => 1, |
|
129 | + 'default' => 0, |
|
130 | + ) |
|
131 | + ); |
|
132 | + $cmb->add_field( |
|
133 | + array( |
|
134 | + 'name' => __( 'Disable BMI', 'lsx-health-plan' ), |
|
135 | + 'id' => 'disable_bmi_checkbox', |
|
136 | + 'type' => 'checkbox', |
|
137 | + 'value' => 1, |
|
138 | + 'default' => 0, |
|
139 | + 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
140 | + ) |
|
141 | + ); |
|
142 | + } |
|
143 | 143 | } |
144 | 144 | Plan::get_instance(); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * Constructor |
26 | 26 | */ |
27 | 27 | public function __construct() { |
28 | - add_action( 'lsx_hp_settings_page_plan_top', array( $this, 'settings' ), 1, 1 ); |
|
28 | + add_action('lsx_hp_settings_page_plan_top', array($this, 'settings'), 1, 1); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public static function get_instance() { |
39 | 39 | // If the single instance hasn't been set, set it now. |
40 | - if ( null === self::$instance ) { |
|
40 | + if (null === self::$instance) { |
|
41 | 41 | self::$instance = new self(); |
42 | 42 | } |
43 | 43 | return self::$instance; |
@@ -49,23 +49,23 @@ discard block |
||
49 | 49 | * @param object $cmb new_cmb2_box(). |
50 | 50 | * @return void |
51 | 51 | */ |
52 | - public function settings( $cmb ) { |
|
52 | + public function settings($cmb) { |
|
53 | 53 | $cmb->add_field( |
54 | 54 | array( |
55 | - 'name' => __( 'Plan Filters', 'lsx-health-plan' ), |
|
55 | + 'name' => __('Plan Filters', 'lsx-health-plan'), |
|
56 | 56 | 'id' => 'plan_filters_disabled', |
57 | 57 | 'type' => 'checkbox', |
58 | 58 | 'value' => 1, |
59 | 59 | 'default' => 0, |
60 | - 'description' => __( 'Toggle the display of the tab filters on the post type archive.', 'lsx-health-plan' ), |
|
60 | + 'description' => __('Toggle the display of the tab filters on the post type archive.', 'lsx-health-plan'), |
|
61 | 61 | ) |
62 | 62 | ); |
63 | 63 | |
64 | 64 | $cmb->add_field( |
65 | 65 | array( |
66 | 66 | 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
67 | - 'name' => __( 'My Plan Slug', 'lsx-health-plan' ), |
|
68 | - 'description' => __( 'This will be the slug url for redirecting users after login, use the login page slug.', 'lsx-health-plan' ), |
|
67 | + 'name' => __('My Plan Slug', 'lsx-health-plan'), |
|
68 | + 'description' => __('This will be the slug url for redirecting users after login, use the login page slug.', 'lsx-health-plan'), |
|
69 | 69 | 'id' => 'my_plan_slug', |
70 | 70 | 'type' => 'input', |
71 | 71 | 'value' => '', |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | ); |
75 | 75 | $cmb->add_field( |
76 | 76 | array( |
77 | - 'name' => __( 'Single Plan Slug', 'lsx-health-plan' ), |
|
77 | + 'name' => __('Single Plan Slug', 'lsx-health-plan'), |
|
78 | 78 | 'id' => 'plan_single_slug', |
79 | 79 | 'type' => 'input', |
80 | 80 | 'value' => '', |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | ); |
84 | 84 | $cmb->add_field( |
85 | 85 | array( |
86 | - 'name' => __( 'Plans Archive Slug', 'lsx-health-plan' ), |
|
86 | + 'name' => __('Plans Archive Slug', 'lsx-health-plan'), |
|
87 | 87 | 'id' => 'endpoint_plan_archive', |
88 | 88 | 'type' => 'input', |
89 | 89 | 'value' => '', |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | $cmb->add_field( |
95 | 95 | array( |
96 | 96 | 'before_row' => '<h4><b><u>My Stats Options</u></b></h4>', |
97 | - 'name' => __( 'Disable All Stats', 'lsx-health-plan' ), |
|
97 | + 'name' => __('Disable All Stats', 'lsx-health-plan'), |
|
98 | 98 | 'desc' => 'Disable All Stats', |
99 | 99 | 'id' => 'disable_all_stats', |
100 | 100 | 'type' => 'checkbox', |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | ); |
105 | 105 | $cmb->add_field( |
106 | 106 | array( |
107 | - 'name' => __( 'Disable Weight', 'lsx-health-plan' ), |
|
107 | + 'name' => __('Disable Weight', 'lsx-health-plan'), |
|
108 | 108 | 'id' => 'disable_weight_checkbox', |
109 | 109 | 'type' => 'checkbox', |
110 | 110 | 'value' => 1, |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | ); |
114 | 114 | $cmb->add_field( |
115 | 115 | array( |
116 | - 'name' => __( 'Disable Height', 'lsx-health-plan' ), |
|
116 | + 'name' => __('Disable Height', 'lsx-health-plan'), |
|
117 | 117 | 'id' => 'disable_height_checkbox', |
118 | 118 | 'type' => 'checkbox', |
119 | 119 | 'value' => 1, |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | ); |
123 | 123 | $cmb->add_field( |
124 | 124 | array( |
125 | - 'name' => __( 'Disable Waist', 'lsx-health-plan' ), |
|
125 | + 'name' => __('Disable Waist', 'lsx-health-plan'), |
|
126 | 126 | 'id' => 'disable_waist_checkbox', |
127 | 127 | 'type' => 'checkbox', |
128 | 128 | 'value' => 1, |
@@ -131,12 +131,12 @@ discard block |
||
131 | 131 | ); |
132 | 132 | $cmb->add_field( |
133 | 133 | array( |
134 | - 'name' => __( 'Disable BMI', 'lsx-health-plan' ), |
|
134 | + 'name' => __('Disable BMI', 'lsx-health-plan'), |
|
135 | 135 | 'id' => 'disable_bmi_checkbox', |
136 | 136 | 'type' => 'checkbox', |
137 | 137 | 'value' => 1, |
138 | 138 | 'default' => 0, |
139 | - 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
139 | + 'after_row' => __('<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan'), |
|
140 | 140 | ) |
141 | 141 | ); |
142 | 142 | } |
@@ -12,128 +12,128 @@ |
||
12 | 12 | */ |
13 | 13 | class Recipe { |
14 | 14 | |
15 | - /** |
|
16 | - * Holds class instance |
|
17 | - * |
|
18 | - * @since 1.0.0 |
|
19 | - * |
|
20 | - * @var object \lsx_health_plan\classes\admin\Recipe() |
|
21 | - */ |
|
22 | - protected static $instance = null; |
|
15 | + /** |
|
16 | + * Holds class instance |
|
17 | + * |
|
18 | + * @since 1.0.0 |
|
19 | + * |
|
20 | + * @var object \lsx_health_plan\classes\admin\Recipe() |
|
21 | + */ |
|
22 | + protected static $instance = null; |
|
23 | 23 | |
24 | - /** |
|
25 | - * Constructor |
|
26 | - */ |
|
27 | - public function __construct() { |
|
28 | - add_action( 'lsx_hp_settings_page_recipe_top', array( $this, 'settings' ), 1, 1 ); |
|
29 | - } |
|
24 | + /** |
|
25 | + * Constructor |
|
26 | + */ |
|
27 | + public function __construct() { |
|
28 | + add_action( 'lsx_hp_settings_page_recipe_top', array( $this, 'settings' ), 1, 1 ); |
|
29 | + } |
|
30 | 30 | |
31 | - /** |
|
32 | - * Return an instance of this class. |
|
33 | - * |
|
34 | - * @since 1.0.0 |
|
35 | - * |
|
36 | - * @return object \lsx_health_plan\classes\admin\Recipe() A single instance of this class. |
|
37 | - */ |
|
38 | - public static function get_instance() { |
|
39 | - // If the single instance hasn't been set, set it now. |
|
40 | - if ( null === self::$instance ) { |
|
41 | - self::$instance = new self(); |
|
42 | - } |
|
43 | - return self::$instance; |
|
44 | - } |
|
31 | + /** |
|
32 | + * Return an instance of this class. |
|
33 | + * |
|
34 | + * @since 1.0.0 |
|
35 | + * |
|
36 | + * @return object \lsx_health_plan\classes\admin\Recipe() A single instance of this class. |
|
37 | + */ |
|
38 | + public static function get_instance() { |
|
39 | + // If the single instance hasn't been set, set it now. |
|
40 | + if ( null === self::$instance ) { |
|
41 | + self::$instance = new self(); |
|
42 | + } |
|
43 | + return self::$instance; |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * Registers the general settings. |
|
48 | - * |
|
49 | - * @param object $cmb new_cmb2_box(). |
|
50 | - * @return void |
|
51 | - */ |
|
52 | - public function settings( $cmb ) { |
|
53 | - $cmb->add_field( |
|
54 | - array( |
|
55 | - 'name' => __( 'Disable Recipes', 'lsx-health-plan' ), |
|
56 | - 'id' => 'recipe_disabled', |
|
57 | - 'type' => 'checkbox', |
|
58 | - 'value' => 1, |
|
59 | - 'default' => 0, |
|
60 | - 'description' => __( 'Disable recipe post type if you are wanting a minimal site.', 'lsx-health-plan' ), |
|
61 | - ) |
|
62 | - ); |
|
46 | + /** |
|
47 | + * Registers the general settings. |
|
48 | + * |
|
49 | + * @param object $cmb new_cmb2_box(). |
|
50 | + * @return void |
|
51 | + */ |
|
52 | + public function settings( $cmb ) { |
|
53 | + $cmb->add_field( |
|
54 | + array( |
|
55 | + 'name' => __( 'Disable Recipes', 'lsx-health-plan' ), |
|
56 | + 'id' => 'recipe_disabled', |
|
57 | + 'type' => 'checkbox', |
|
58 | + 'value' => 1, |
|
59 | + 'default' => 0, |
|
60 | + 'description' => __( 'Disable recipe post type if you are wanting a minimal site.', 'lsx-health-plan' ), |
|
61 | + ) |
|
62 | + ); |
|
63 | 63 | |
64 | - $cmb->add_field( |
|
65 | - array( |
|
66 | - 'id' => 'recipe_archive_description', |
|
67 | - 'type' => 'wysiwyg', |
|
68 | - 'name' => __( 'Archive Description', 'lsx-health-plan' ), |
|
69 | - 'description' => __( 'This will show up on the post type archive.', 'lsx-health-plan' ), |
|
70 | - 'options' => array( |
|
71 | - 'textarea_rows' => get_option('default_post_edit_rows', 6), |
|
72 | - ), |
|
73 | - ) |
|
74 | - ); |
|
64 | + $cmb->add_field( |
|
65 | + array( |
|
66 | + 'id' => 'recipe_archive_description', |
|
67 | + 'type' => 'wysiwyg', |
|
68 | + 'name' => __( 'Archive Description', 'lsx-health-plan' ), |
|
69 | + 'description' => __( 'This will show up on the post type archive.', 'lsx-health-plan' ), |
|
70 | + 'options' => array( |
|
71 | + 'textarea_rows' => get_option('default_post_edit_rows', 6), |
|
72 | + ), |
|
73 | + ) |
|
74 | + ); |
|
75 | 75 | |
76 | - $cmb->add_field( |
|
77 | - array( |
|
78 | - 'name' => __( 'Recipes Intro', 'lsx-health-plan' ), |
|
79 | - 'id' => 'recipes_intro', |
|
80 | - 'type' => 'textarea_small', |
|
81 | - 'value' => '', |
|
82 | - 'default' => __( "Let's get cooking! Delicious and easy to follow recipes.", 'lsx-health-plan' ), |
|
83 | - ) |
|
84 | - ); |
|
76 | + $cmb->add_field( |
|
77 | + array( |
|
78 | + 'name' => __( 'Recipes Intro', 'lsx-health-plan' ), |
|
79 | + 'id' => 'recipes_intro', |
|
80 | + 'type' => 'textarea_small', |
|
81 | + 'value' => '', |
|
82 | + 'default' => __( "Let's get cooking! Delicious and easy to follow recipes.", 'lsx-health-plan' ), |
|
83 | + ) |
|
84 | + ); |
|
85 | 85 | |
86 | - $cmb->add_field( |
|
87 | - array( |
|
88 | - 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
|
89 | - 'name' => __( 'Recipes Slug', 'lsx-health-plan' ), |
|
90 | - 'id' => 'endpoint_recipe', |
|
91 | - 'type' => 'input', |
|
92 | - 'value' => '', |
|
93 | - 'default' => 'recipe', |
|
94 | - ) |
|
95 | - ); |
|
86 | + $cmb->add_field( |
|
87 | + array( |
|
88 | + 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
|
89 | + 'name' => __( 'Recipes Slug', 'lsx-health-plan' ), |
|
90 | + 'id' => 'endpoint_recipe', |
|
91 | + 'type' => 'input', |
|
92 | + 'value' => '', |
|
93 | + 'default' => 'recipe', |
|
94 | + ) |
|
95 | + ); |
|
96 | 96 | |
97 | - $cmb->add_field( |
|
98 | - array( |
|
99 | - 'before_row' => '<h4><b><u>Default Options</u></b></h4>', |
|
100 | - 'name' => __( 'Recipe', 'lsx-health-plan' ), |
|
101 | - 'description' => __( 'Set a default recipe.', 'lsx-health-plan' ), |
|
102 | - 'limit' => 1, |
|
103 | - 'id' => 'connected_recipes', |
|
104 | - 'type' => 'post_search_ajax', |
|
105 | - 'query_args' => array( |
|
106 | - 'post_type' => 'recipe', |
|
107 | - 'post_status' => array( 'publish' ), |
|
108 | - 'posts_per_page' => -1, |
|
109 | - ), |
|
110 | - ) |
|
111 | - ); |
|
112 | - if ( function_exists( 'download_monitor' ) ) { |
|
113 | - $page_url = 'https://wordpress.org/plugins/download-monitor/'; |
|
114 | - $plugin_name = 'Download Monitor'; |
|
115 | - $description = sprintf( |
|
116 | - /* translators: %s: The subscription info */ |
|
117 | - __( 'If you are using <a target="_blank" href="%1$s">%2$s</a> you can set a default download file for your recipe here.', 'lsx-search' ), |
|
118 | - $page_url, |
|
119 | - $plugin_name |
|
120 | - ); |
|
121 | - $cmb->add_field( |
|
122 | - array( |
|
123 | - 'name' => __( 'Default Recipe PDF', 'lsx-health-plan' ), |
|
124 | - 'description' => $description, |
|
125 | - 'id' => 'download_recipe', |
|
126 | - 'type' => 'post_search_ajax', |
|
127 | - 'limit' => 1, |
|
128 | - 'query_args' => array( |
|
129 | - 'post_type' => array( 'dlm_download' ), |
|
130 | - 'post_status' => array( 'publish' ), |
|
131 | - 'posts_per_page' => -1, |
|
132 | - ), |
|
133 | - 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
134 | - ) |
|
135 | - ); |
|
136 | - } |
|
137 | - } |
|
97 | + $cmb->add_field( |
|
98 | + array( |
|
99 | + 'before_row' => '<h4><b><u>Default Options</u></b></h4>', |
|
100 | + 'name' => __( 'Recipe', 'lsx-health-plan' ), |
|
101 | + 'description' => __( 'Set a default recipe.', 'lsx-health-plan' ), |
|
102 | + 'limit' => 1, |
|
103 | + 'id' => 'connected_recipes', |
|
104 | + 'type' => 'post_search_ajax', |
|
105 | + 'query_args' => array( |
|
106 | + 'post_type' => 'recipe', |
|
107 | + 'post_status' => array( 'publish' ), |
|
108 | + 'posts_per_page' => -1, |
|
109 | + ), |
|
110 | + ) |
|
111 | + ); |
|
112 | + if ( function_exists( 'download_monitor' ) ) { |
|
113 | + $page_url = 'https://wordpress.org/plugins/download-monitor/'; |
|
114 | + $plugin_name = 'Download Monitor'; |
|
115 | + $description = sprintf( |
|
116 | + /* translators: %s: The subscription info */ |
|
117 | + __( 'If you are using <a target="_blank" href="%1$s">%2$s</a> you can set a default download file for your recipe here.', 'lsx-search' ), |
|
118 | + $page_url, |
|
119 | + $plugin_name |
|
120 | + ); |
|
121 | + $cmb->add_field( |
|
122 | + array( |
|
123 | + 'name' => __( 'Default Recipe PDF', 'lsx-health-plan' ), |
|
124 | + 'description' => $description, |
|
125 | + 'id' => 'download_recipe', |
|
126 | + 'type' => 'post_search_ajax', |
|
127 | + 'limit' => 1, |
|
128 | + 'query_args' => array( |
|
129 | + 'post_type' => array( 'dlm_download' ), |
|
130 | + 'post_status' => array( 'publish' ), |
|
131 | + 'posts_per_page' => -1, |
|
132 | + ), |
|
133 | + 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
134 | + ) |
|
135 | + ); |
|
136 | + } |
|
137 | + } |
|
138 | 138 | } |
139 | 139 | Recipe::get_instance(); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * Constructor |
26 | 26 | */ |
27 | 27 | public function __construct() { |
28 | - add_action( 'lsx_hp_settings_page_recipe_top', array( $this, 'settings' ), 1, 1 ); |
|
28 | + add_action('lsx_hp_settings_page_recipe_top', array($this, 'settings'), 1, 1); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public static function get_instance() { |
39 | 39 | // If the single instance hasn't been set, set it now. |
40 | - if ( null === self::$instance ) { |
|
40 | + if (null === self::$instance) { |
|
41 | 41 | self::$instance = new self(); |
42 | 42 | } |
43 | 43 | return self::$instance; |
@@ -49,15 +49,15 @@ discard block |
||
49 | 49 | * @param object $cmb new_cmb2_box(). |
50 | 50 | * @return void |
51 | 51 | */ |
52 | - public function settings( $cmb ) { |
|
52 | + public function settings($cmb) { |
|
53 | 53 | $cmb->add_field( |
54 | 54 | array( |
55 | - 'name' => __( 'Disable Recipes', 'lsx-health-plan' ), |
|
55 | + 'name' => __('Disable Recipes', 'lsx-health-plan'), |
|
56 | 56 | 'id' => 'recipe_disabled', |
57 | 57 | 'type' => 'checkbox', |
58 | 58 | 'value' => 1, |
59 | 59 | 'default' => 0, |
60 | - 'description' => __( 'Disable recipe post type if you are wanting a minimal site.', 'lsx-health-plan' ), |
|
60 | + 'description' => __('Disable recipe post type if you are wanting a minimal site.', 'lsx-health-plan'), |
|
61 | 61 | ) |
62 | 62 | ); |
63 | 63 | |
@@ -65,8 +65,8 @@ discard block |
||
65 | 65 | array( |
66 | 66 | 'id' => 'recipe_archive_description', |
67 | 67 | 'type' => 'wysiwyg', |
68 | - 'name' => __( 'Archive Description', 'lsx-health-plan' ), |
|
69 | - 'description' => __( 'This will show up on the post type archive.', 'lsx-health-plan' ), |
|
68 | + 'name' => __('Archive Description', 'lsx-health-plan'), |
|
69 | + 'description' => __('This will show up on the post type archive.', 'lsx-health-plan'), |
|
70 | 70 | 'options' => array( |
71 | 71 | 'textarea_rows' => get_option('default_post_edit_rows', 6), |
72 | 72 | ), |
@@ -75,18 +75,18 @@ discard block |
||
75 | 75 | |
76 | 76 | $cmb->add_field( |
77 | 77 | array( |
78 | - 'name' => __( 'Recipes Intro', 'lsx-health-plan' ), |
|
78 | + 'name' => __('Recipes Intro', 'lsx-health-plan'), |
|
79 | 79 | 'id' => 'recipes_intro', |
80 | 80 | 'type' => 'textarea_small', |
81 | 81 | 'value' => '', |
82 | - 'default' => __( "Let's get cooking! Delicious and easy to follow recipes.", 'lsx-health-plan' ), |
|
82 | + 'default' => __("Let's get cooking! Delicious and easy to follow recipes.", 'lsx-health-plan'), |
|
83 | 83 | ) |
84 | 84 | ); |
85 | 85 | |
86 | 86 | $cmb->add_field( |
87 | 87 | array( |
88 | 88 | 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
89 | - 'name' => __( 'Recipes Slug', 'lsx-health-plan' ), |
|
89 | + 'name' => __('Recipes Slug', 'lsx-health-plan'), |
|
90 | 90 | 'id' => 'endpoint_recipe', |
91 | 91 | 'type' => 'input', |
92 | 92 | 'value' => '', |
@@ -97,40 +97,40 @@ discard block |
||
97 | 97 | $cmb->add_field( |
98 | 98 | array( |
99 | 99 | 'before_row' => '<h4><b><u>Default Options</u></b></h4>', |
100 | - 'name' => __( 'Recipe', 'lsx-health-plan' ), |
|
101 | - 'description' => __( 'Set a default recipe.', 'lsx-health-plan' ), |
|
100 | + 'name' => __('Recipe', 'lsx-health-plan'), |
|
101 | + 'description' => __('Set a default recipe.', 'lsx-health-plan'), |
|
102 | 102 | 'limit' => 1, |
103 | 103 | 'id' => 'connected_recipes', |
104 | 104 | 'type' => 'post_search_ajax', |
105 | 105 | 'query_args' => array( |
106 | 106 | 'post_type' => 'recipe', |
107 | - 'post_status' => array( 'publish' ), |
|
107 | + 'post_status' => array('publish'), |
|
108 | 108 | 'posts_per_page' => -1, |
109 | 109 | ), |
110 | 110 | ) |
111 | 111 | ); |
112 | - if ( function_exists( 'download_monitor' ) ) { |
|
112 | + if (function_exists('download_monitor')) { |
|
113 | 113 | $page_url = 'https://wordpress.org/plugins/download-monitor/'; |
114 | 114 | $plugin_name = 'Download Monitor'; |
115 | 115 | $description = sprintf( |
116 | 116 | /* translators: %s: The subscription info */ |
117 | - __( 'If you are using <a target="_blank" href="%1$s">%2$s</a> you can set a default download file for your recipe here.', 'lsx-search' ), |
|
117 | + __('If you are using <a target="_blank" href="%1$s">%2$s</a> you can set a default download file for your recipe here.', 'lsx-search'), |
|
118 | 118 | $page_url, |
119 | 119 | $plugin_name |
120 | 120 | ); |
121 | 121 | $cmb->add_field( |
122 | 122 | array( |
123 | - 'name' => __( 'Default Recipe PDF', 'lsx-health-plan' ), |
|
123 | + 'name' => __('Default Recipe PDF', 'lsx-health-plan'), |
|
124 | 124 | 'description' => $description, |
125 | 125 | 'id' => 'download_recipe', |
126 | 126 | 'type' => 'post_search_ajax', |
127 | 127 | 'limit' => 1, |
128 | 128 | 'query_args' => array( |
129 | - 'post_type' => array( 'dlm_download' ), |
|
130 | - 'post_status' => array( 'publish' ), |
|
129 | + 'post_type' => array('dlm_download'), |
|
130 | + 'post_status' => array('publish'), |
|
131 | 131 | 'posts_per_page' => -1, |
132 | 132 | ), |
133 | - 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
133 | + 'after_row' => __('<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan'), |
|
134 | 134 | ) |
135 | 135 | ); |
136 | 136 | } |
@@ -12,112 +12,112 @@ |
||
12 | 12 | */ |
13 | 13 | class Exercise { |
14 | 14 | |
15 | - /** |
|
16 | - * Holds class instance |
|
17 | - * |
|
18 | - * @since 1.0.0 |
|
19 | - * |
|
20 | - * @var object \lsx_health_plan\classes\admin\Exercise() |
|
21 | - */ |
|
22 | - protected static $instance = null; |
|
15 | + /** |
|
16 | + * Holds class instance |
|
17 | + * |
|
18 | + * @since 1.0.0 |
|
19 | + * |
|
20 | + * @var object \lsx_health_plan\classes\admin\Exercise() |
|
21 | + */ |
|
22 | + protected static $instance = null; |
|
23 | 23 | |
24 | - /** |
|
25 | - * Constructor |
|
26 | - */ |
|
27 | - public function __construct() { |
|
28 | - add_action( 'lsx_hp_settings_page_exercise_top', array( $this, 'settings' ), 1, 1 ); |
|
29 | - } |
|
24 | + /** |
|
25 | + * Constructor |
|
26 | + */ |
|
27 | + public function __construct() { |
|
28 | + add_action( 'lsx_hp_settings_page_exercise_top', array( $this, 'settings' ), 1, 1 ); |
|
29 | + } |
|
30 | 30 | |
31 | - /** |
|
32 | - * Return an instance of this class. |
|
33 | - * |
|
34 | - * @since 1.0.0 |
|
35 | - * |
|
36 | - * @return object \lsx_health_plan\classes\admin\Exercise() A single instance of this class. |
|
37 | - */ |
|
38 | - public static function get_instance() { |
|
39 | - // If the single instance hasn't been set, set it now. |
|
40 | - if ( null === self::$instance ) { |
|
41 | - self::$instance = new self(); |
|
42 | - } |
|
43 | - return self::$instance; |
|
44 | - } |
|
31 | + /** |
|
32 | + * Return an instance of this class. |
|
33 | + * |
|
34 | + * @since 1.0.0 |
|
35 | + * |
|
36 | + * @return object \lsx_health_plan\classes\admin\Exercise() A single instance of this class. |
|
37 | + */ |
|
38 | + public static function get_instance() { |
|
39 | + // If the single instance hasn't been set, set it now. |
|
40 | + if ( null === self::$instance ) { |
|
41 | + self::$instance = new self(); |
|
42 | + } |
|
43 | + return self::$instance; |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * Registers the general settings. |
|
48 | - * |
|
49 | - * @param object $cmb new_cmb2_box(). |
|
50 | - * @return void |
|
51 | - */ |
|
52 | - public function settings( $cmb ) { |
|
53 | - $cmb->add_field( |
|
54 | - array( |
|
55 | - 'name' => __( 'Exercises', 'lsx-health-plan' ), |
|
56 | - 'id' => 'exercise_enabled', |
|
57 | - 'type' => 'checkbox', |
|
58 | - 'value' => 1, |
|
59 | - 'default' => 0, |
|
60 | - 'description' => __( 'Enabling the exercise post type will automatically replace the Video post type.', 'lsx-health-plan' ), |
|
61 | - ) |
|
62 | - ); |
|
63 | - $cmb->add_field( |
|
64 | - array( |
|
65 | - 'id' => 'exercise_archive_description', |
|
66 | - 'type' => 'wysiwyg', |
|
67 | - 'name' => __( 'Archive Description', 'lsx-health-plan' ), |
|
68 | - 'description' => __( 'This will show up on the post type archive.', 'lsx-health-plan' ), |
|
69 | - 'options' => array( |
|
70 | - 'textarea_rows' => get_option('default_post_edit_rows', 6), |
|
71 | - ), |
|
72 | - ) |
|
73 | - ); |
|
74 | - $cmb->add_field( |
|
75 | - array( |
|
76 | - 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
|
77 | - 'name' => __( 'Single Exercise Slug', 'lsx-health-plan' ), |
|
78 | - 'id' => 'endpoint_exercise_single', |
|
79 | - 'type' => 'input', |
|
80 | - 'value' => '', |
|
81 | - 'default' => 'exercise', |
|
82 | - ) |
|
83 | - ); |
|
84 | - $cmb->add_field( |
|
85 | - array( |
|
86 | - 'name' => __( 'Archive Exercise Slug', 'lsx-health-plan' ), |
|
87 | - 'id' => 'endpoint_exercise_archive', |
|
88 | - 'type' => 'input', |
|
89 | - 'value' => '', |
|
90 | - 'default' => 'exercises', |
|
91 | - ) |
|
92 | - ); |
|
93 | - $cmb->add_field( |
|
94 | - array( |
|
95 | - 'name' => __( 'Exercise Type Slug', 'lsx-health-plan' ), |
|
96 | - 'id' => 'endpoint_exercise_type', |
|
97 | - 'type' => 'input', |
|
98 | - 'value' => '', |
|
99 | - 'default' => 'exercise-type', |
|
100 | - ) |
|
101 | - ); |
|
102 | - $cmb->add_field( |
|
103 | - array( |
|
104 | - 'name' => __( 'Equipment Slug', 'lsx-health-plan' ), |
|
105 | - 'id' => 'endpoint_exercise_equipment', |
|
106 | - 'type' => 'input', |
|
107 | - 'value' => '', |
|
108 | - 'default' => 'equipment', |
|
109 | - ) |
|
110 | - ); |
|
111 | - $cmb->add_field( |
|
112 | - array( |
|
113 | - 'name' => __( 'Muscle Group Slug', 'lsx-health-plan' ), |
|
114 | - 'id' => 'endpoint_exercise_musclegroup', |
|
115 | - 'type' => 'input', |
|
116 | - 'value' => '', |
|
117 | - 'default' => 'muscle-group', |
|
118 | - 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
119 | - ) |
|
120 | - ); |
|
121 | - } |
|
46 | + /** |
|
47 | + * Registers the general settings. |
|
48 | + * |
|
49 | + * @param object $cmb new_cmb2_box(). |
|
50 | + * @return void |
|
51 | + */ |
|
52 | + public function settings( $cmb ) { |
|
53 | + $cmb->add_field( |
|
54 | + array( |
|
55 | + 'name' => __( 'Exercises', 'lsx-health-plan' ), |
|
56 | + 'id' => 'exercise_enabled', |
|
57 | + 'type' => 'checkbox', |
|
58 | + 'value' => 1, |
|
59 | + 'default' => 0, |
|
60 | + 'description' => __( 'Enabling the exercise post type will automatically replace the Video post type.', 'lsx-health-plan' ), |
|
61 | + ) |
|
62 | + ); |
|
63 | + $cmb->add_field( |
|
64 | + array( |
|
65 | + 'id' => 'exercise_archive_description', |
|
66 | + 'type' => 'wysiwyg', |
|
67 | + 'name' => __( 'Archive Description', 'lsx-health-plan' ), |
|
68 | + 'description' => __( 'This will show up on the post type archive.', 'lsx-health-plan' ), |
|
69 | + 'options' => array( |
|
70 | + 'textarea_rows' => get_option('default_post_edit_rows', 6), |
|
71 | + ), |
|
72 | + ) |
|
73 | + ); |
|
74 | + $cmb->add_field( |
|
75 | + array( |
|
76 | + 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
|
77 | + 'name' => __( 'Single Exercise Slug', 'lsx-health-plan' ), |
|
78 | + 'id' => 'endpoint_exercise_single', |
|
79 | + 'type' => 'input', |
|
80 | + 'value' => '', |
|
81 | + 'default' => 'exercise', |
|
82 | + ) |
|
83 | + ); |
|
84 | + $cmb->add_field( |
|
85 | + array( |
|
86 | + 'name' => __( 'Archive Exercise Slug', 'lsx-health-plan' ), |
|
87 | + 'id' => 'endpoint_exercise_archive', |
|
88 | + 'type' => 'input', |
|
89 | + 'value' => '', |
|
90 | + 'default' => 'exercises', |
|
91 | + ) |
|
92 | + ); |
|
93 | + $cmb->add_field( |
|
94 | + array( |
|
95 | + 'name' => __( 'Exercise Type Slug', 'lsx-health-plan' ), |
|
96 | + 'id' => 'endpoint_exercise_type', |
|
97 | + 'type' => 'input', |
|
98 | + 'value' => '', |
|
99 | + 'default' => 'exercise-type', |
|
100 | + ) |
|
101 | + ); |
|
102 | + $cmb->add_field( |
|
103 | + array( |
|
104 | + 'name' => __( 'Equipment Slug', 'lsx-health-plan' ), |
|
105 | + 'id' => 'endpoint_exercise_equipment', |
|
106 | + 'type' => 'input', |
|
107 | + 'value' => '', |
|
108 | + 'default' => 'equipment', |
|
109 | + ) |
|
110 | + ); |
|
111 | + $cmb->add_field( |
|
112 | + array( |
|
113 | + 'name' => __( 'Muscle Group Slug', 'lsx-health-plan' ), |
|
114 | + 'id' => 'endpoint_exercise_musclegroup', |
|
115 | + 'type' => 'input', |
|
116 | + 'value' => '', |
|
117 | + 'default' => 'muscle-group', |
|
118 | + 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
119 | + ) |
|
120 | + ); |
|
121 | + } |
|
122 | 122 | } |
123 | 123 | Exercise::get_instance(); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * Constructor |
26 | 26 | */ |
27 | 27 | public function __construct() { |
28 | - add_action( 'lsx_hp_settings_page_exercise_top', array( $this, 'settings' ), 1, 1 ); |
|
28 | + add_action('lsx_hp_settings_page_exercise_top', array($this, 'settings'), 1, 1); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public static function get_instance() { |
39 | 39 | // If the single instance hasn't been set, set it now. |
40 | - if ( null === self::$instance ) { |
|
40 | + if (null === self::$instance) { |
|
41 | 41 | self::$instance = new self(); |
42 | 42 | } |
43 | 43 | return self::$instance; |
@@ -49,23 +49,23 @@ discard block |
||
49 | 49 | * @param object $cmb new_cmb2_box(). |
50 | 50 | * @return void |
51 | 51 | */ |
52 | - public function settings( $cmb ) { |
|
52 | + public function settings($cmb) { |
|
53 | 53 | $cmb->add_field( |
54 | 54 | array( |
55 | - 'name' => __( 'Exercises', 'lsx-health-plan' ), |
|
55 | + 'name' => __('Exercises', 'lsx-health-plan'), |
|
56 | 56 | 'id' => 'exercise_enabled', |
57 | 57 | 'type' => 'checkbox', |
58 | 58 | 'value' => 1, |
59 | 59 | 'default' => 0, |
60 | - 'description' => __( 'Enabling the exercise post type will automatically replace the Video post type.', 'lsx-health-plan' ), |
|
60 | + 'description' => __('Enabling the exercise post type will automatically replace the Video post type.', 'lsx-health-plan'), |
|
61 | 61 | ) |
62 | 62 | ); |
63 | 63 | $cmb->add_field( |
64 | 64 | array( |
65 | 65 | 'id' => 'exercise_archive_description', |
66 | 66 | 'type' => 'wysiwyg', |
67 | - 'name' => __( 'Archive Description', 'lsx-health-plan' ), |
|
68 | - 'description' => __( 'This will show up on the post type archive.', 'lsx-health-plan' ), |
|
67 | + 'name' => __('Archive Description', 'lsx-health-plan'), |
|
68 | + 'description' => __('This will show up on the post type archive.', 'lsx-health-plan'), |
|
69 | 69 | 'options' => array( |
70 | 70 | 'textarea_rows' => get_option('default_post_edit_rows', 6), |
71 | 71 | ), |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | $cmb->add_field( |
75 | 75 | array( |
76 | 76 | 'before_row' => '<h4><b><u>URL Slug Options</u></b></h4><p style="font-style: italic;">If you need to translate the custom slug for this custom post type, do so below.</p>', |
77 | - 'name' => __( 'Single Exercise Slug', 'lsx-health-plan' ), |
|
77 | + 'name' => __('Single Exercise Slug', 'lsx-health-plan'), |
|
78 | 78 | 'id' => 'endpoint_exercise_single', |
79 | 79 | 'type' => 'input', |
80 | 80 | 'value' => '', |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | ); |
84 | 84 | $cmb->add_field( |
85 | 85 | array( |
86 | - 'name' => __( 'Archive Exercise Slug', 'lsx-health-plan' ), |
|
86 | + 'name' => __('Archive Exercise Slug', 'lsx-health-plan'), |
|
87 | 87 | 'id' => 'endpoint_exercise_archive', |
88 | 88 | 'type' => 'input', |
89 | 89 | 'value' => '', |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | ); |
93 | 93 | $cmb->add_field( |
94 | 94 | array( |
95 | - 'name' => __( 'Exercise Type Slug', 'lsx-health-plan' ), |
|
95 | + 'name' => __('Exercise Type Slug', 'lsx-health-plan'), |
|
96 | 96 | 'id' => 'endpoint_exercise_type', |
97 | 97 | 'type' => 'input', |
98 | 98 | 'value' => '', |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | ); |
102 | 102 | $cmb->add_field( |
103 | 103 | array( |
104 | - 'name' => __( 'Equipment Slug', 'lsx-health-plan' ), |
|
104 | + 'name' => __('Equipment Slug', 'lsx-health-plan'), |
|
105 | 105 | 'id' => 'endpoint_exercise_equipment', |
106 | 106 | 'type' => 'input', |
107 | 107 | 'value' => '', |
@@ -110,12 +110,12 @@ discard block |
||
110 | 110 | ); |
111 | 111 | $cmb->add_field( |
112 | 112 | array( |
113 | - 'name' => __( 'Muscle Group Slug', 'lsx-health-plan' ), |
|
113 | + 'name' => __('Muscle Group Slug', 'lsx-health-plan'), |
|
114 | 114 | 'id' => 'endpoint_exercise_musclegroup', |
115 | 115 | 'type' => 'input', |
116 | 116 | 'value' => '', |
117 | 117 | 'default' => 'muscle-group', |
118 | - 'after_row' => __( '<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan' ), |
|
118 | + 'after_row' => __('<p style="font-style: italic;">If you have changed any URL slugs, please remember re-save your permalinks in Settings > Permalinks.</p>', 'lsx-health-plan'), |
|
119 | 119 | ) |
120 | 120 | ); |
121 | 121 | } |