@@ -8,88 +8,88 @@ |
||
8 | 8 | */ |
9 | 9 | class Endpoints { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\frontend\Endpoints() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\frontend\Endpoints() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | 19 | |
20 | - /** |
|
21 | - * Constructor |
|
22 | - */ |
|
23 | - public function __construct() { |
|
24 | - add_action( 'init', array( $this, 'setup' ) ); |
|
25 | - } |
|
20 | + /** |
|
21 | + * Constructor |
|
22 | + */ |
|
23 | + public function __construct() { |
|
24 | + add_action( 'init', array( $this, 'setup' ) ); |
|
25 | + } |
|
26 | 26 | |
27 | - /** |
|
28 | - * Return an instance of this class. |
|
29 | - * |
|
30 | - * @since 1.0.0 |
|
31 | - * |
|
32 | - * @return object \lsx_health_plan\classes\frontend\Endpoints() A single instance of this class. |
|
33 | - */ |
|
34 | - public static function get_instance() { |
|
35 | - // If the single instance hasn't been set, set it now. |
|
36 | - if ( null === self::$instance ) { |
|
37 | - self::$instance = new self(); |
|
38 | - } |
|
39 | - return self::$instance; |
|
40 | - } |
|
27 | + /** |
|
28 | + * Return an instance of this class. |
|
29 | + * |
|
30 | + * @since 1.0.0 |
|
31 | + * |
|
32 | + * @return object \lsx_health_plan\classes\frontend\Endpoints() A single instance of this class. |
|
33 | + */ |
|
34 | + public static function get_instance() { |
|
35 | + // If the single instance hasn't been set, set it now. |
|
36 | + if ( null === self::$instance ) { |
|
37 | + self::$instance = new self(); |
|
38 | + } |
|
39 | + return self::$instance; |
|
40 | + } |
|
41 | 41 | |
42 | - /** |
|
43 | - * Runs on init |
|
44 | - */ |
|
45 | - public function setup() { |
|
46 | - $this->add_rewrite_rules(); |
|
47 | - } |
|
42 | + /** |
|
43 | + * Runs on init |
|
44 | + */ |
|
45 | + public function setup() { |
|
46 | + $this->add_rewrite_rules(); |
|
47 | + } |
|
48 | 48 | |
49 | - /** |
|
50 | - * Registers the rewrites. |
|
51 | - */ |
|
52 | - public function add_rewrite_rules() { |
|
53 | - // Here is where we add in the rewrite rules above the normal WP ones. |
|
54 | - add_rewrite_tag( '%endpoint%', '([^&]+)' ); |
|
55 | - add_rewrite_tag( '%section%', '([^&]+)' ); |
|
49 | + /** |
|
50 | + * Registers the rewrites. |
|
51 | + */ |
|
52 | + public function add_rewrite_rules() { |
|
53 | + // Here is where we add in the rewrite rules above the normal WP ones. |
|
54 | + add_rewrite_tag( '%endpoint%', '([^&]+)' ); |
|
55 | + add_rewrite_tag( '%section%', '([^&]+)' ); |
|
56 | 56 | |
57 | - // Plan Sections. |
|
58 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/?$', 'index.php?plan=$matches[1]§ion=$matches[2]', 'top' ); |
|
57 | + // Plan Sections. |
|
58 | + add_rewrite_rule( 'plan/([^/]+)/([^/]+)/?$', 'index.php?plan=$matches[1]§ion=$matches[2]', 'top' ); |
|
59 | 59 | |
60 | - // Warm up. |
|
61 | - $warm_up = \lsx_health_plan\functions\get_option( 'endpoint_warm_up', false ); |
|
62 | - if ( false === $warm_up ) { |
|
63 | - $warm_up = 'warm-up'; |
|
64 | - } |
|
60 | + // Warm up. |
|
61 | + $warm_up = \lsx_health_plan\functions\get_option( 'endpoint_warm_up', false ); |
|
62 | + if ( false === $warm_up ) { |
|
63 | + $warm_up = 'warm-up'; |
|
64 | + } |
|
65 | 65 | |
66 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $warm_up . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=warm-up', 'top' ); |
|
66 | + add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $warm_up . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=warm-up', 'top' ); |
|
67 | 67 | |
68 | - // Workout. |
|
69 | - if ( post_type_exists( 'workout' ) ) { |
|
70 | - $workout = \lsx_health_plan\functions\get_option( 'endpoint_workout', false ); |
|
71 | - if ( false === $workout ) { |
|
72 | - $workout = 'workout'; |
|
73 | - } |
|
74 | - } |
|
75 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $workout . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=workout', 'top' ); |
|
68 | + // Workout. |
|
69 | + if ( post_type_exists( 'workout' ) ) { |
|
70 | + $workout = \lsx_health_plan\functions\get_option( 'endpoint_workout', false ); |
|
71 | + if ( false === $workout ) { |
|
72 | + $workout = 'workout'; |
|
73 | + } |
|
74 | + } |
|
75 | + add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $workout . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=workout', 'top' ); |
|
76 | 76 | |
77 | - // Meal. |
|
78 | - if ( post_type_exists( 'meal' ) ) { |
|
79 | - $meal = \lsx_health_plan\functions\get_option( 'endpoint_meal', false ); |
|
80 | - if ( false === $meal ) { |
|
81 | - $meal = 'meal'; |
|
82 | - } |
|
83 | - } |
|
84 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $meal . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=meal', 'top' ); |
|
77 | + // Meal. |
|
78 | + if ( post_type_exists( 'meal' ) ) { |
|
79 | + $meal = \lsx_health_plan\functions\get_option( 'endpoint_meal', false ); |
|
80 | + if ( false === $meal ) { |
|
81 | + $meal = 'meal'; |
|
82 | + } |
|
83 | + } |
|
84 | + add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $meal . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=meal', 'top' ); |
|
85 | 85 | |
86 | - // Recipe. |
|
87 | - if ( post_type_exists( 'recipe' ) ) { |
|
88 | - $recipe = \lsx_health_plan\functions\get_option( 'endpoint_recipe', false ); |
|
89 | - if ( false === $recipe ) { |
|
90 | - $recipe = 'recipes'; |
|
91 | - } |
|
92 | - } |
|
93 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $recipe . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=recipes', 'top' ); |
|
94 | - } |
|
86 | + // Recipe. |
|
87 | + if ( post_type_exists( 'recipe' ) ) { |
|
88 | + $recipe = \lsx_health_plan\functions\get_option( 'endpoint_recipe', false ); |
|
89 | + if ( false === $recipe ) { |
|
90 | + $recipe = 'recipes'; |
|
91 | + } |
|
92 | + } |
|
93 | + add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $recipe . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=recipes', 'top' ); |
|
94 | + } |
|
95 | 95 | } |
@@ -8,53 +8,53 @@ |
||
8 | 8 | */ |
9 | 9 | class Plan_Status { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\frontend\Plan_Status() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\frontend\Plan_Status() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | 19 | |
20 | - /** |
|
21 | - * Constructor |
|
22 | - */ |
|
23 | - public function __construct() { |
|
24 | - add_action( 'init', array( $this, 'handle_day_action' ), 100 ); |
|
25 | - } |
|
20 | + /** |
|
21 | + * Constructor |
|
22 | + */ |
|
23 | + public function __construct() { |
|
24 | + add_action( 'init', array( $this, 'handle_day_action' ), 100 ); |
|
25 | + } |
|
26 | 26 | |
27 | - /** |
|
28 | - * Return an instance of this class. |
|
29 | - * |
|
30 | - * @since 1.0.0 |
|
31 | - * |
|
32 | - * @return object \lsx_health_plan\classes\frontend\Plan_Status() A single instance of this class. |
|
33 | - */ |
|
34 | - public static function get_instance() { |
|
35 | - // If the single instance hasn't been set, set it now. |
|
36 | - if ( null === self::$instance ) { |
|
37 | - self::$instance = new self(); |
|
38 | - } |
|
39 | - return self::$instance; |
|
40 | - } |
|
27 | + /** |
|
28 | + * Return an instance of this class. |
|
29 | + * |
|
30 | + * @since 1.0.0 |
|
31 | + * |
|
32 | + * @return object \lsx_health_plan\classes\frontend\Plan_Status() A single instance of this class. |
|
33 | + */ |
|
34 | + public static function get_instance() { |
|
35 | + // If the single instance hasn't been set, set it now. |
|
36 | + if ( null === self::$instance ) { |
|
37 | + self::$instance = new self(); |
|
38 | + } |
|
39 | + return self::$instance; |
|
40 | + } |
|
41 | 41 | |
42 | - /** |
|
43 | - * Registers the rewrites. |
|
44 | - */ |
|
45 | - public function handle_day_action() { |
|
46 | - if ( isset( $_POST['lsx-health-plan-actions'] ) && wp_verify_nonce( $_POST['lsx-health-plan-actions'], 'complete' ) ) { |
|
47 | - update_user_meta( get_current_user_id(), 'day_' . sanitize_key( $_POST['lsx-health-plan-id'] ) . '_complete', true ); |
|
48 | - $plan_id = sanitize_key( $_POST['lsx-health-plan-id'] ); |
|
49 | - $plan_parent = wp_get_post_parent_id( $plan_id ); |
|
50 | - if ( 0 !== $plan_parent ) { |
|
51 | - $plan_id = $plan_parent; |
|
52 | - } |
|
53 | - wp_safe_redirect( get_permalink( $plan_id ) ); |
|
54 | - } |
|
42 | + /** |
|
43 | + * Registers the rewrites. |
|
44 | + */ |
|
45 | + public function handle_day_action() { |
|
46 | + if ( isset( $_POST['lsx-health-plan-actions'] ) && wp_verify_nonce( $_POST['lsx-health-plan-actions'], 'complete' ) ) { |
|
47 | + update_user_meta( get_current_user_id(), 'day_' . sanitize_key( $_POST['lsx-health-plan-id'] ) . '_complete', true ); |
|
48 | + $plan_id = sanitize_key( $_POST['lsx-health-plan-id'] ); |
|
49 | + $plan_parent = wp_get_post_parent_id( $plan_id ); |
|
50 | + if ( 0 !== $plan_parent ) { |
|
51 | + $plan_id = $plan_parent; |
|
52 | + } |
|
53 | + wp_safe_redirect( get_permalink( $plan_id ) ); |
|
54 | + } |
|
55 | 55 | |
56 | - if ( isset( $_POST['lsx-health-plan-actions'] ) && wp_verify_nonce( $_POST['lsx-health-plan-actions'], 'unlock' ) ) { |
|
57 | - delete_user_meta( get_current_user_id(), 'day_' . sanitize_key( $_POST['lsx-health-plan-id'] ) . '_complete' ); |
|
58 | - } |
|
59 | - } |
|
56 | + if ( isset( $_POST['lsx-health-plan-actions'] ) && wp_verify_nonce( $_POST['lsx-health-plan-actions'], 'unlock' ) ) { |
|
57 | + delete_user_meta( get_current_user_id(), 'day_' . sanitize_key( $_POST['lsx-health-plan-id'] ) . '_complete' ); |
|
58 | + } |
|
59 | + } |
|
60 | 60 | } |
@@ -8,68 +8,68 @@ |
||
8 | 8 | */ |
9 | 9 | class Modals { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\Modals() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\Modals() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | 19 | |
20 | - /** |
|
21 | - * Holds the modals to be outputted |
|
22 | - * |
|
23 | - * @var array |
|
24 | - */ |
|
25 | - public $modals = array(); |
|
20 | + /** |
|
21 | + * Holds the modals to be outputted |
|
22 | + * |
|
23 | + * @var array |
|
24 | + */ |
|
25 | + public $modals = array(); |
|
26 | 26 | |
27 | - /** |
|
28 | - * Constructor |
|
29 | - */ |
|
30 | - public function __construct() { |
|
31 | - add_action( 'wp_footer', array( $this, 'output_modals' ) ); |
|
32 | - } |
|
27 | + /** |
|
28 | + * Constructor |
|
29 | + */ |
|
30 | + public function __construct() { |
|
31 | + add_action( 'wp_footer', array( $this, 'output_modals' ) ); |
|
32 | + } |
|
33 | 33 | |
34 | - /** |
|
35 | - * Return an instance of this class. |
|
36 | - * |
|
37 | - * @since 1.0.0 |
|
38 | - * |
|
39 | - * @return object \lsx_health_plan\classes\Endpoints() A single instance of this class. |
|
40 | - */ |
|
41 | - public static function get_instance() { |
|
42 | - // If the single instance hasn't been set, set it now. |
|
43 | - if ( null === self::$instance ) { |
|
44 | - self::$instance = new self(); |
|
45 | - } |
|
46 | - return self::$instance; |
|
47 | - } |
|
34 | + /** |
|
35 | + * Return an instance of this class. |
|
36 | + * |
|
37 | + * @since 1.0.0 |
|
38 | + * |
|
39 | + * @return object \lsx_health_plan\classes\Endpoints() A single instance of this class. |
|
40 | + */ |
|
41 | + public static function get_instance() { |
|
42 | + // If the single instance hasn't been set, set it now. |
|
43 | + if ( null === self::$instance ) { |
|
44 | + self::$instance = new self(); |
|
45 | + } |
|
46 | + return self::$instance; |
|
47 | + } |
|
48 | 48 | |
49 | - /** |
|
50 | - * Registers a modal to be outputted |
|
51 | - * |
|
52 | - * @param array $modal |
|
53 | - * @param string $index |
|
54 | - * @return void |
|
55 | - */ |
|
56 | - public function register_modal( $modal = array(), $index = '' ) { |
|
57 | - if ( '' !== $index && ! empty( $modal ) ) { |
|
58 | - $modal['id'] = $index; |
|
59 | - $this->modals[ $index ] = $modal; |
|
60 | - } |
|
61 | - } |
|
49 | + /** |
|
50 | + * Registers a modal to be outputted |
|
51 | + * |
|
52 | + * @param array $modal |
|
53 | + * @param string $index |
|
54 | + * @return void |
|
55 | + */ |
|
56 | + public function register_modal( $modal = array(), $index = '' ) { |
|
57 | + if ( '' !== $index && ! empty( $modal ) ) { |
|
58 | + $modal['id'] = $index; |
|
59 | + $this->modals[ $index ] = $modal; |
|
60 | + } |
|
61 | + } |
|
62 | 62 | |
63 | - /** |
|
64 | - * Registers the rewrites. |
|
65 | - */ |
|
66 | - public function output_modals() { |
|
67 | - if ( ! empty( $this->modals ) ) { |
|
68 | - wp_enqueue_script( 'lsx-health-plan-modals', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-modals.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
63 | + /** |
|
64 | + * Registers the rewrites. |
|
65 | + */ |
|
66 | + public function output_modals() { |
|
67 | + if ( ! empty( $this->modals ) ) { |
|
68 | + wp_enqueue_script( 'lsx-health-plan-modals', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-modals.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
69 | 69 | |
70 | - foreach ( $this->modals as $index => $modal ) { |
|
71 | - \lsx_health_plan\functions\output_modal( $modal ); |
|
72 | - } |
|
73 | - } |
|
74 | - } |
|
70 | + foreach ( $this->modals as $index => $modal ) { |
|
71 | + \lsx_health_plan\functions\output_modal( $modal ); |
|
72 | + } |
|
73 | + } |
|
74 | + } |
|
75 | 75 | } |
@@ -8,264 +8,264 @@ |
||
8 | 8 | */ |
9 | 9 | class Gallery { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @var object \lsx_health_plan\classes\lib\Gallery() |
|
15 | - */ |
|
16 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @var object \lsx_health_plan\classes\lib\Gallery() |
|
15 | + */ |
|
16 | + protected static $instance = null; |
|
17 | 17 | |
18 | - /** |
|
19 | - * The current item ID. |
|
20 | - * |
|
21 | - * @var boolean | int |
|
22 | - */ |
|
23 | - public $item_id = false; |
|
18 | + /** |
|
19 | + * The current item ID. |
|
20 | + * |
|
21 | + * @var boolean | int |
|
22 | + */ |
|
23 | + public $item_id = false; |
|
24 | 24 | |
25 | - /** |
|
26 | - * The current item post_type used in the custom field retrival.. |
|
27 | - * |
|
28 | - * @var boolean | int |
|
29 | - */ |
|
30 | - public $post_type = false; |
|
25 | + /** |
|
26 | + * The current item post_type used in the custom field retrival.. |
|
27 | + * |
|
28 | + * @var boolean | int |
|
29 | + */ |
|
30 | + public $post_type = false; |
|
31 | 31 | |
32 | - /** |
|
33 | - * Holds the the default parameters for the gallery output. |
|
34 | - * |
|
35 | - * @var array |
|
36 | - */ |
|
37 | - public $defaults = array(); |
|
32 | + /** |
|
33 | + * Holds the the default parameters for the gallery output. |
|
34 | + * |
|
35 | + * @var array |
|
36 | + */ |
|
37 | + public $defaults = array(); |
|
38 | 38 | |
39 | - /** |
|
40 | - * If the current post has a gallery. |
|
41 | - * |
|
42 | - * @var boolean |
|
43 | - */ |
|
44 | - public $has_gallery = false; |
|
39 | + /** |
|
40 | + * If the current post has a gallery. |
|
41 | + * |
|
42 | + * @var boolean |
|
43 | + */ |
|
44 | + public $has_gallery = false; |
|
45 | 45 | |
46 | - /** |
|
47 | - * Holds the array of gallery images. |
|
48 | - * |
|
49 | - * @var array |
|
50 | - */ |
|
51 | - public $gallery = array(); |
|
46 | + /** |
|
47 | + * Holds the array of gallery images. |
|
48 | + * |
|
49 | + * @var array |
|
50 | + */ |
|
51 | + public $gallery = array(); |
|
52 | 52 | |
53 | - /** |
|
54 | - * Holds the html for the current gallery being output. |
|
55 | - * |
|
56 | - * @var array |
|
57 | - */ |
|
58 | - public $html = array(); |
|
53 | + /** |
|
54 | + * Holds the html for the current gallery being output. |
|
55 | + * |
|
56 | + * @var array |
|
57 | + */ |
|
58 | + public $html = array(); |
|
59 | 59 | |
60 | - /** |
|
61 | - * Holds the parameters for the current gallery being output. |
|
62 | - * |
|
63 | - * @var array |
|
64 | - */ |
|
65 | - public $args = array(); |
|
60 | + /** |
|
61 | + * Holds the parameters for the current gallery being output. |
|
62 | + * |
|
63 | + * @var array |
|
64 | + */ |
|
65 | + public $args = array(); |
|
66 | 66 | |
67 | - /** |
|
68 | - * Constructor |
|
69 | - */ |
|
70 | - public function __construct() { |
|
71 | - } |
|
67 | + /** |
|
68 | + * Constructor |
|
69 | + */ |
|
70 | + public function __construct() { |
|
71 | + } |
|
72 | 72 | |
73 | - /** |
|
74 | - * Return an instance of this class. |
|
75 | - * |
|
76 | - * @since 1.0.0 |
|
77 | - * |
|
78 | - * @return object \lsx_health_plan\classes\lib\Gallery() A single instance of this class. |
|
79 | - */ |
|
80 | - public static function get_instance() { |
|
81 | - // If the single instance hasn't been set, set it now. |
|
82 | - if ( null === self::$instance ) { |
|
83 | - self::$instance = new self(); |
|
84 | - } |
|
85 | - return self::$instance; |
|
86 | - } |
|
73 | + /** |
|
74 | + * Return an instance of this class. |
|
75 | + * |
|
76 | + * @since 1.0.0 |
|
77 | + * |
|
78 | + * @return object \lsx_health_plan\classes\lib\Gallery() A single instance of this class. |
|
79 | + */ |
|
80 | + public static function get_instance() { |
|
81 | + // If the single instance hasn't been set, set it now. |
|
82 | + if ( null === self::$instance ) { |
|
83 | + self::$instance = new self(); |
|
84 | + } |
|
85 | + return self::$instance; |
|
86 | + } |
|
87 | 87 | |
88 | - /** |
|
89 | - * Check if the item has a gallery of images returns true or false. |
|
90 | - * |
|
91 | - * @param string $item_id |
|
92 | - * @param string $post_type |
|
93 | - * @return boolean |
|
94 | - */ |
|
95 | - public function has_gallery( $item_id = '', $post_type = '' ) { |
|
88 | + /** |
|
89 | + * Check if the item has a gallery of images returns true or false. |
|
90 | + * |
|
91 | + * @param string $item_id |
|
92 | + * @param string $post_type |
|
93 | + * @return boolean |
|
94 | + */ |
|
95 | + public function has_gallery( $item_id = '', $post_type = '' ) { |
|
96 | 96 | |
97 | - if ( '' === $item_id ) { |
|
98 | - $this->item_id = get_the_ID(); |
|
99 | - } else { |
|
100 | - $this->item_id = $item_id; |
|
101 | - } |
|
102 | - $this->has_gallery = false; |
|
103 | - if ( '' === $post_type ) { |
|
104 | - $this->post_type = get_post_type( $this->item_id ); |
|
105 | - } |
|
106 | - $gallery = get_post_meta( $this->item_id, $this->post_type . '_gallery', true ); |
|
97 | + if ( '' === $item_id ) { |
|
98 | + $this->item_id = get_the_ID(); |
|
99 | + } else { |
|
100 | + $this->item_id = $item_id; |
|
101 | + } |
|
102 | + $this->has_gallery = false; |
|
103 | + if ( '' === $post_type ) { |
|
104 | + $this->post_type = get_post_type( $this->item_id ); |
|
105 | + } |
|
106 | + $gallery = get_post_meta( $this->item_id, $this->post_type . '_gallery', true ); |
|
107 | 107 | |
108 | - if ( ! empty( $gallery ) && ( '' !== $gallery ) ) { |
|
109 | - $this->gallery = $gallery; |
|
110 | - $this->has_gallery = true; |
|
111 | - wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/src/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true ); |
|
112 | - wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/src/lsx-health-plan-slider.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
113 | - } |
|
114 | - return $this->has_gallery; |
|
115 | - } |
|
108 | + if ( ! empty( $gallery ) && ( '' !== $gallery ) ) { |
|
109 | + $this->gallery = $gallery; |
|
110 | + $this->has_gallery = true; |
|
111 | + wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/src/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true ); |
|
112 | + wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/src/lsx-health-plan-slider.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
113 | + } |
|
114 | + return $this->has_gallery; |
|
115 | + } |
|
116 | 116 | |
117 | - /** |
|
118 | - * Returns the defaults for the gallery, after grabbing the setting from the item. |
|
119 | - * |
|
120 | - * @param string $item_id |
|
121 | - * @param string $post_type |
|
122 | - * @return array |
|
123 | - */ |
|
124 | - public function get_defaults( $item_id = '', $post_type = '' ) { |
|
125 | - if ( '' === $item_id ) { |
|
126 | - $item_id = $this->item_id; |
|
127 | - } |
|
128 | - if ( '' === $post_type ) { |
|
129 | - $post_type = $this->post_type; |
|
130 | - } |
|
131 | - $this->defaults = array( |
|
132 | - 'columns' => '3', |
|
133 | - 'layout' => 'slider', |
|
134 | - 'interval' => false, |
|
135 | - 'css_class' => false, |
|
136 | - ); |
|
137 | - foreach ( $this->defaults as $key => $default ) { |
|
138 | - $override = get_post_meta( $item_id, $this->post_type . '_gallery_' . $key, true ); |
|
139 | - if ( '' !== $override && false !== $override && ! empty( $override ) ) { |
|
140 | - $this->defaults[ $key ] = $override; |
|
141 | - } |
|
142 | - } |
|
143 | - return $this->defaults; |
|
144 | - } |
|
117 | + /** |
|
118 | + * Returns the defaults for the gallery, after grabbing the setting from the item. |
|
119 | + * |
|
120 | + * @param string $item_id |
|
121 | + * @param string $post_type |
|
122 | + * @return array |
|
123 | + */ |
|
124 | + public function get_defaults( $item_id = '', $post_type = '' ) { |
|
125 | + if ( '' === $item_id ) { |
|
126 | + $item_id = $this->item_id; |
|
127 | + } |
|
128 | + if ( '' === $post_type ) { |
|
129 | + $post_type = $this->post_type; |
|
130 | + } |
|
131 | + $this->defaults = array( |
|
132 | + 'columns' => '3', |
|
133 | + 'layout' => 'slider', |
|
134 | + 'interval' => false, |
|
135 | + 'css_class' => false, |
|
136 | + ); |
|
137 | + foreach ( $this->defaults as $key => $default ) { |
|
138 | + $override = get_post_meta( $item_id, $this->post_type . '_gallery_' . $key, true ); |
|
139 | + if ( '' !== $override && false !== $override && ! empty( $override ) ) { |
|
140 | + $this->defaults[ $key ] = $override; |
|
141 | + } |
|
142 | + } |
|
143 | + return $this->defaults; |
|
144 | + } |
|
145 | 145 | |
146 | - /** |
|
147 | - * Gets and returns the gallery html. |
|
148 | - * |
|
149 | - * @param string $item_id |
|
150 | - * @param string $post_type |
|
151 | - * @return void |
|
152 | - */ |
|
153 | - public function get_gallery( $item_id = '', $post_type = '', $args = array() ) { |
|
154 | - $return = ''; |
|
155 | - $this->html = array(); |
|
156 | - $this->args = wp_parse_args( $args, $this->get_defaults( $item_id, $post_type ) ); |
|
157 | - if ( ! empty( $this->gallery ) ) { |
|
158 | - $this->args['count'] = 1; |
|
159 | - if ( '' !== $post_type ) { |
|
160 | - $this->args['post_type'] = $post_type; |
|
161 | - } else { |
|
162 | - $this->args['post_type'] = $this->post_type; |
|
163 | - } |
|
146 | + /** |
|
147 | + * Gets and returns the gallery html. |
|
148 | + * |
|
149 | + * @param string $item_id |
|
150 | + * @param string $post_type |
|
151 | + * @return void |
|
152 | + */ |
|
153 | + public function get_gallery( $item_id = '', $post_type = '', $args = array() ) { |
|
154 | + $return = ''; |
|
155 | + $this->html = array(); |
|
156 | + $this->args = wp_parse_args( $args, $this->get_defaults( $item_id, $post_type ) ); |
|
157 | + if ( ! empty( $this->gallery ) ) { |
|
158 | + $this->args['count'] = 1; |
|
159 | + if ( '' !== $post_type ) { |
|
160 | + $this->args['post_type'] = $post_type; |
|
161 | + } else { |
|
162 | + $this->args['post_type'] = $this->post_type; |
|
163 | + } |
|
164 | 164 | |
165 | - // output the opening boostrap row divs. |
|
166 | - $this->before_loop(); |
|
165 | + // output the opening boostrap row divs. |
|
166 | + $this->before_loop(); |
|
167 | 167 | |
168 | - foreach ( $this->gallery as $key => $gallery ) { |
|
168 | + foreach ( $this->gallery as $key => $gallery ) { |
|
169 | 169 | |
170 | - $this->loop_start(); |
|
170 | + $this->loop_start(); |
|
171 | 171 | |
172 | - if ( isset( $gallery['exercise_gallery_image_id'] ) && ! empty( $gallery['exercise_gallery_image_id'] ) ) { |
|
173 | - $size = apply_filters( 'lsx_hp_exercise_gallery_size', 'full' ); |
|
174 | - $thumbnail = wp_get_attachment_image( $gallery['exercise_gallery_image_id'], $size ); |
|
175 | - $this->html[] = $thumbnail; |
|
176 | - } elseif ( isset( $gallery['exercise_gallery_external'] ) && ! empty( $gallery['exercise_gallery_external'] ) ) { |
|
177 | - $this->html[] = $gallery['exercise_gallery_external']; // WPCS: XSS OK. |
|
178 | - } elseif ( isset( $gallery['exercise_gallery_embed'] ) && ! empty( $gallery['exercise_gallery_embed'] ) ) { |
|
179 | - $embed_args = array( |
|
180 | - 'width' => '530', |
|
181 | - ); |
|
182 | - $embed = wp_oembed_get( $gallery['exercise_gallery_embed'], $embed_args ); |
|
183 | - $this->html[] = str_replace( 'width="530"', 'width="100%"', $embed ); // WPCS: XSS OK. |
|
184 | - } |
|
172 | + if ( isset( $gallery['exercise_gallery_image_id'] ) && ! empty( $gallery['exercise_gallery_image_id'] ) ) { |
|
173 | + $size = apply_filters( 'lsx_hp_exercise_gallery_size', 'full' ); |
|
174 | + $thumbnail = wp_get_attachment_image( $gallery['exercise_gallery_image_id'], $size ); |
|
175 | + $this->html[] = $thumbnail; |
|
176 | + } elseif ( isset( $gallery['exercise_gallery_external'] ) && ! empty( $gallery['exercise_gallery_external'] ) ) { |
|
177 | + $this->html[] = $gallery['exercise_gallery_external']; // WPCS: XSS OK. |
|
178 | + } elseif ( isset( $gallery['exercise_gallery_embed'] ) && ! empty( $gallery['exercise_gallery_embed'] ) ) { |
|
179 | + $embed_args = array( |
|
180 | + 'width' => '530', |
|
181 | + ); |
|
182 | + $embed = wp_oembed_get( $gallery['exercise_gallery_embed'], $embed_args ); |
|
183 | + $this->html[] = str_replace( 'width="530"', 'width="100%"', $embed ); // WPCS: XSS OK. |
|
184 | + } |
|
185 | 185 | |
186 | - $this->loop_end(); |
|
186 | + $this->loop_end(); |
|
187 | 187 | |
188 | - $this->args['count']++; |
|
189 | - } |
|
188 | + $this->args['count']++; |
|
189 | + } |
|
190 | 190 | |
191 | - // output the closing boostrap row divs. |
|
192 | - $this->after_loop(); |
|
193 | - } |
|
191 | + // output the closing boostrap row divs. |
|
192 | + $this->after_loop(); |
|
193 | + } |
|
194 | 194 | |
195 | - // Join the html output if its not empty. |
|
196 | - if ( ! empty( $this->html ) ) { |
|
197 | - $return = implode( '', $this->html ); |
|
198 | - } |
|
199 | - return $return; |
|
200 | - } |
|
195 | + // Join the html output if its not empty. |
|
196 | + if ( ! empty( $this->html ) ) { |
|
197 | + $return = implode( '', $this->html ); |
|
198 | + } |
|
199 | + return $return; |
|
200 | + } |
|
201 | 201 | |
202 | - /** |
|
203 | - * Outputs the CSS class for the panels |
|
204 | - * |
|
205 | - * @param string $columns |
|
206 | - * @return string |
|
207 | - */ |
|
208 | - public function column_class() { |
|
209 | - $cols = 'col-xs-12 col-sm-'; |
|
210 | - $cols .= '5' === $this->args['columns'] ? '15' : 12 / $this->args['columns']; |
|
211 | - return $cols; |
|
212 | - } |
|
202 | + /** |
|
203 | + * Outputs the CSS class for the panels |
|
204 | + * |
|
205 | + * @param string $columns |
|
206 | + * @return string |
|
207 | + */ |
|
208 | + public function column_class() { |
|
209 | + $cols = 'col-xs-12 col-sm-'; |
|
210 | + $cols .= '5' === $this->args['columns'] ? '15' : 12 / $this->args['columns']; |
|
211 | + return $cols; |
|
212 | + } |
|
213 | 213 | |
214 | - /** |
|
215 | - * Runs just after the if and before the while statement in $this->output() |
|
216 | - */ |
|
217 | - public function before_loop() { |
|
218 | - if ( 'slider' === $this->args['layout'] ) { |
|
219 | - $this->carousel_id = wp_rand( 20, 20000 ); |
|
220 | - $this->html[] = "<div class='lsx-hp-widget-items slick-slider slick-dotted slick-has-arrows {$this->args['css_class']} ' data-interval='{$this->args['interval']}' data-slick='{ \"slidesToShow\": {$this->args['columns']}, \"slidesToScroll\": {$this->args['columns']} }'>"; |
|
221 | - } else { |
|
222 | - $this->html[] = "<div class='lsx-hp-widget-items widget-item-grid-layout'>"; |
|
223 | - } |
|
224 | - } |
|
214 | + /** |
|
215 | + * Runs just after the if and before the while statement in $this->output() |
|
216 | + */ |
|
217 | + public function before_loop() { |
|
218 | + if ( 'slider' === $this->args['layout'] ) { |
|
219 | + $this->carousel_id = wp_rand( 20, 20000 ); |
|
220 | + $this->html[] = "<div class='lsx-hp-widget-items slick-slider slick-dotted slick-has-arrows {$this->args['css_class']} ' data-interval='{$this->args['interval']}' data-slick='{ \"slidesToShow\": {$this->args['columns']}, \"slidesToScroll\": {$this->args['columns']} }'>"; |
|
221 | + } else { |
|
222 | + $this->html[] = "<div class='lsx-hp-widget-items widget-item-grid-layout'>"; |
|
223 | + } |
|
224 | + } |
|
225 | 225 | |
226 | - /** |
|
227 | - * Runs at the very end of the loop before it runs again. |
|
228 | - */ |
|
229 | - public function loop_start() { |
|
230 | - // Get the call for the active slide. |
|
231 | - if ( 'slider' === $this->args['layout'] ) { |
|
232 | - $this->html[] = "<div class='lsx-hp-widget-item-wrap lsx-{$this->args['post_type']}'>"; |
|
233 | - } else { |
|
234 | - if ( 1 === $this->args['count'] ) { |
|
235 | - $this->html[] = "<div class='row'>"; |
|
236 | - } |
|
237 | - $this->html[] = '<div class="' . $this->column_class() . '">'; |
|
238 | - } |
|
239 | - } |
|
226 | + /** |
|
227 | + * Runs at the very end of the loop before it runs again. |
|
228 | + */ |
|
229 | + public function loop_start() { |
|
230 | + // Get the call for the active slide. |
|
231 | + if ( 'slider' === $this->args['layout'] ) { |
|
232 | + $this->html[] = "<div class='lsx-hp-widget-item-wrap lsx-{$this->args['post_type']}'>"; |
|
233 | + } else { |
|
234 | + if ( 1 === $this->args['count'] ) { |
|
235 | + $this->html[] = "<div class='row'>"; |
|
236 | + } |
|
237 | + $this->html[] = '<div class="' . $this->column_class() . '">'; |
|
238 | + } |
|
239 | + } |
|
240 | 240 | |
241 | - /** |
|
242 | - * Runs at the very end of the loop before it runs again. |
|
243 | - */ |
|
244 | - public function loop_end() { |
|
245 | - if ( 'slider' !== $this->args['layout'] ) { |
|
246 | - $this->html[] = '</div>'; |
|
247 | - } |
|
248 | - // Close the current slide panel. |
|
249 | - if ( 'slider' === $this->args['layout'] ) { |
|
250 | - $this->html[] = '</div>'; |
|
251 | - } elseif ( 0 === $this->args['count'] % $this->args['columns'] || count( $this->gallery ) === $this->args['count'] ) { |
|
252 | - $this->html[] = '</div>'; |
|
241 | + /** |
|
242 | + * Runs at the very end of the loop before it runs again. |
|
243 | + */ |
|
244 | + public function loop_end() { |
|
245 | + if ( 'slider' !== $this->args['layout'] ) { |
|
246 | + $this->html[] = '</div>'; |
|
247 | + } |
|
248 | + // Close the current slide panel. |
|
249 | + if ( 'slider' === $this->args['layout'] ) { |
|
250 | + $this->html[] = '</div>'; |
|
251 | + } elseif ( 0 === $this->args['count'] % $this->args['columns'] || count( $this->gallery ) === $this->args['count'] ) { |
|
252 | + $this->html[] = '</div>'; |
|
253 | 253 | |
254 | - if ( $this->args['count'] < count( $this->gallery ) ) { |
|
255 | - $this->html[] = "<div class='row'>"; |
|
256 | - } |
|
257 | - } |
|
258 | - } |
|
254 | + if ( $this->args['count'] < count( $this->gallery ) ) { |
|
255 | + $this->html[] = "<div class='row'>"; |
|
256 | + } |
|
257 | + } |
|
258 | + } |
|
259 | 259 | |
260 | - /** |
|
261 | - * Runs just after the if and before the while statement in $this->output() |
|
262 | - */ |
|
263 | - public function after_loop() { |
|
264 | - // Slider output Closing. |
|
265 | - if ( 'slider' === $this->args['layout'] ) { |
|
266 | - $this->html[] = '</div>'; |
|
267 | - } else { |
|
268 | - $this->html[] = '</div>'; |
|
269 | - } |
|
270 | - } |
|
260 | + /** |
|
261 | + * Runs just after the if and before the while statement in $this->output() |
|
262 | + */ |
|
263 | + public function after_loop() { |
|
264 | + // Slider output Closing. |
|
265 | + if ( 'slider' === $this->args['layout'] ) { |
|
266 | + $this->html[] = '</div>'; |
|
267 | + } else { |
|
268 | + $this->html[] = '</div>'; |
|
269 | + } |
|
270 | + } |
|
271 | 271 | } |
@@ -8,81 +8,81 @@ |
||
8 | 8 | */ |
9 | 9 | class Template_Redirects { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\frontend\Template_Redirects() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\frontend\Template_Redirects() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | 19 | |
20 | - /** |
|
21 | - * Constructor |
|
22 | - */ |
|
23 | - public function __construct() { |
|
24 | - add_filter( 'template_include', array( $this, 'archive_template_include' ), 99 ); |
|
25 | - add_filter( 'template_include', array( $this, 'single_template_include' ), 99 ); |
|
26 | - add_filter( 'template_include', array( $this, 'taxonomy_template_include' ), 99 ); |
|
27 | - } |
|
20 | + /** |
|
21 | + * Constructor |
|
22 | + */ |
|
23 | + public function __construct() { |
|
24 | + add_filter( 'template_include', array( $this, 'archive_template_include' ), 99 ); |
|
25 | + add_filter( 'template_include', array( $this, 'single_template_include' ), 99 ); |
|
26 | + add_filter( 'template_include', array( $this, 'taxonomy_template_include' ), 99 ); |
|
27 | + } |
|
28 | 28 | |
29 | - /** |
|
30 | - * Return an instance of this class. |
|
31 | - * |
|
32 | - * @since 1.0.0 |
|
33 | - * |
|
34 | - * @return object \lsx_health_plan\classes\frontend\Template_Redirects() A single instance of this class. |
|
35 | - */ |
|
36 | - public static function get_instance() { |
|
37 | - // If the single instance hasn't been set, set it now. |
|
38 | - if ( null === self::$instance ) { |
|
39 | - self::$instance = new self(); |
|
40 | - } |
|
41 | - return self::$instance; |
|
42 | - } |
|
29 | + /** |
|
30 | + * Return an instance of this class. |
|
31 | + * |
|
32 | + * @since 1.0.0 |
|
33 | + * |
|
34 | + * @return object \lsx_health_plan\classes\frontend\Template_Redirects() A single instance of this class. |
|
35 | + */ |
|
36 | + public static function get_instance() { |
|
37 | + // If the single instance hasn't been set, set it now. |
|
38 | + if ( null === self::$instance ) { |
|
39 | + self::$instance = new self(); |
|
40 | + } |
|
41 | + return self::$instance; |
|
42 | + } |
|
43 | 43 | |
44 | - /** |
|
45 | - * Archive template. |
|
46 | - */ |
|
47 | - public function archive_template_include( $template ) { |
|
48 | - $applicable_post_types = apply_filters( 'lsx_health_plan_archive_template', array() ); |
|
49 | - if ( ! empty( $applicable_post_types ) && is_main_query() && is_post_type_archive( $applicable_post_types ) ) { |
|
50 | - $post_type = get_post_type(); |
|
51 | - if ( empty( locate_template( array( 'archive-' . $post_type . '.php' ) ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/archive-' . $post_type . '.php' ) ) { |
|
52 | - $template = LSX_HEALTH_PLAN_PATH . 'templates/archive-' . $post_type . '.php'; |
|
53 | - } |
|
54 | - } |
|
55 | - return $template; |
|
56 | - } |
|
44 | + /** |
|
45 | + * Archive template. |
|
46 | + */ |
|
47 | + public function archive_template_include( $template ) { |
|
48 | + $applicable_post_types = apply_filters( 'lsx_health_plan_archive_template', array() ); |
|
49 | + if ( ! empty( $applicable_post_types ) && is_main_query() && is_post_type_archive( $applicable_post_types ) ) { |
|
50 | + $post_type = get_post_type(); |
|
51 | + if ( empty( locate_template( array( 'archive-' . $post_type . '.php' ) ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/archive-' . $post_type . '.php' ) ) { |
|
52 | + $template = LSX_HEALTH_PLAN_PATH . 'templates/archive-' . $post_type . '.php'; |
|
53 | + } |
|
54 | + } |
|
55 | + return $template; |
|
56 | + } |
|
57 | 57 | |
58 | - /** |
|
59 | - * Single template. |
|
60 | - */ |
|
61 | - public function single_template_include( $template ) { |
|
62 | - $applicable_post_types = apply_filters( 'lsx_health_plan_single_template', array() ); |
|
63 | - if ( ! empty( $applicable_post_types ) && is_main_query() && is_singular( $applicable_post_types ) ) { |
|
64 | - $post_type = get_post_type(); |
|
65 | - if ( empty( locate_template( array( 'single-' . $post_type . '.php' ) ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/single-' . $post_type . '.php' ) ) { |
|
66 | - $template = LSX_HEALTH_PLAN_PATH . 'templates/single-' . $post_type . '.php'; |
|
67 | - } |
|
68 | - } |
|
69 | - return $template; |
|
70 | - } |
|
58 | + /** |
|
59 | + * Single template. |
|
60 | + */ |
|
61 | + public function single_template_include( $template ) { |
|
62 | + $applicable_post_types = apply_filters( 'lsx_health_plan_single_template', array() ); |
|
63 | + if ( ! empty( $applicable_post_types ) && is_main_query() && is_singular( $applicable_post_types ) ) { |
|
64 | + $post_type = get_post_type(); |
|
65 | + if ( empty( locate_template( array( 'single-' . $post_type . '.php' ) ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/single-' . $post_type . '.php' ) ) { |
|
66 | + $template = LSX_HEALTH_PLAN_PATH . 'templates/single-' . $post_type . '.php'; |
|
67 | + } |
|
68 | + } |
|
69 | + return $template; |
|
70 | + } |
|
71 | 71 | |
72 | - /** |
|
73 | - * Redirect WordPress to the taxonomy located in the plugin |
|
74 | - * |
|
75 | - * @param $template string |
|
76 | - * @return string |
|
77 | - */ |
|
78 | - public function taxonomy_template_include( $template ) { |
|
79 | - $applicable_taxonomies = apply_filters( 'lsx_health_plan_taxonomies_template', array() ); |
|
80 | - if ( is_main_query() && is_tax( $applicable_taxonomies ) ) { |
|
81 | - $current_taxonomy = get_query_var( 'taxonomy' ); |
|
82 | - if ( '' === locate_template( array( 'taxonomy-' . $current_taxonomy . '.php' ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/taxonomy-' . $current_taxonomy . '.php' ) ) { |
|
83 | - $template = LSX_HEALTH_PLAN_PATH . 'templates/taxonomy-' . $current_taxonomy . '.php'; |
|
84 | - } |
|
85 | - } |
|
86 | - return $template; |
|
87 | - } |
|
72 | + /** |
|
73 | + * Redirect WordPress to the taxonomy located in the plugin |
|
74 | + * |
|
75 | + * @param $template string |
|
76 | + * @return string |
|
77 | + */ |
|
78 | + public function taxonomy_template_include( $template ) { |
|
79 | + $applicable_taxonomies = apply_filters( 'lsx_health_plan_taxonomies_template', array() ); |
|
80 | + if ( is_main_query() && is_tax( $applicable_taxonomies ) ) { |
|
81 | + $current_taxonomy = get_query_var( 'taxonomy' ); |
|
82 | + if ( '' === locate_template( array( 'taxonomy-' . $current_taxonomy . '.php' ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/taxonomy-' . $current_taxonomy . '.php' ) ) { |
|
83 | + $template = LSX_HEALTH_PLAN_PATH . 'templates/taxonomy-' . $current_taxonomy . '.php'; |
|
84 | + } |
|
85 | + } |
|
86 | + return $template; |
|
87 | + } |
|
88 | 88 | } |
@@ -8,188 +8,188 @@ |
||
8 | 8 | */ |
9 | 9 | class Video { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\Video() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\Video() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | 19 | |
20 | - /** |
|
21 | - * Holds post_type slug used as an index |
|
22 | - * |
|
23 | - * @since 1.0.0 |
|
24 | - * |
|
25 | - * @var string |
|
26 | - */ |
|
27 | - public $slug = 'video'; |
|
20 | + /** |
|
21 | + * Holds post_type slug used as an index |
|
22 | + * |
|
23 | + * @since 1.0.0 |
|
24 | + * |
|
25 | + * @var string |
|
26 | + */ |
|
27 | + public $slug = 'video'; |
|
28 | 28 | |
29 | - /** |
|
30 | - * Constructor |
|
31 | - */ |
|
32 | - public function __construct() { |
|
33 | - add_action( 'init', array( $this, 'register_post_type' ) ); |
|
34 | - add_action( 'admin_menu', array( $this, 'register_menus' ) ); |
|
35 | - add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
36 | - add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 ); |
|
37 | - add_action( 'cmb2_admin_init', array( $this, 'details_metaboxes' ) ); |
|
38 | - } |
|
29 | + /** |
|
30 | + * Constructor |
|
31 | + */ |
|
32 | + public function __construct() { |
|
33 | + add_action( 'init', array( $this, 'register_post_type' ) ); |
|
34 | + add_action( 'admin_menu', array( $this, 'register_menus' ) ); |
|
35 | + add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
36 | + add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 ); |
|
37 | + add_action( 'cmb2_admin_init', array( $this, 'details_metaboxes' ) ); |
|
38 | + } |
|
39 | 39 | |
40 | - /** |
|
41 | - * Return an instance of this class. |
|
42 | - * |
|
43 | - * @since 1.0.0 |
|
44 | - * |
|
45 | - * @return object \lsx_health_plan\classes\Video() A single instance of this class. |
|
46 | - */ |
|
47 | - public static function get_instance() { |
|
48 | - // If the single instance hasn't been set, set it now. |
|
49 | - if ( null === self::$instance ) { |
|
50 | - self::$instance = new self(); |
|
51 | - } |
|
52 | - return self::$instance; |
|
53 | - } |
|
54 | - /** |
|
55 | - * Register the post type. |
|
56 | - */ |
|
57 | - public function register_post_type() { |
|
58 | - $labels = array( |
|
59 | - 'name' => esc_html__( 'Videos', 'lsx-health-plan' ), |
|
60 | - 'singular_name' => esc_html__( 'Video', 'lsx-health-plan' ), |
|
61 | - 'add_new' => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ), |
|
62 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
63 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
64 | - 'new_item' => esc_html__( 'New', 'lsx-health-plan' ), |
|
65 | - 'all_items' => esc_html__( 'All Videos', 'lsx-health-plan' ), |
|
66 | - 'view_item' => esc_html__( 'View', 'lsx-health-plan' ), |
|
67 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
68 | - 'not_found' => esc_html__( 'None found', 'lsx-health-plan' ), |
|
69 | - 'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ), |
|
70 | - 'parent_item_colon' => '', |
|
71 | - 'menu_name' => esc_html__( 'Videos', 'lsx-health-plan' ), |
|
72 | - ); |
|
73 | - $args = array( |
|
74 | - 'labels' => $labels, |
|
75 | - 'public' => true, |
|
76 | - 'publicly_queryable' => true, |
|
77 | - 'show_ui' => true, |
|
78 | - 'show_in_menu' => false, |
|
79 | - 'show_in_rest' => true, |
|
80 | - 'menu_icon' => 'dashicons-format-video', |
|
81 | - 'query_var' => true, |
|
82 | - 'rewrite' => false, |
|
83 | - 'capability_type' => 'post', |
|
84 | - 'has_archive' => false, |
|
85 | - 'hierarchical' => false, |
|
86 | - 'menu_position' => null, |
|
87 | - 'supports' => array( |
|
88 | - 'title', |
|
89 | - 'editor', |
|
90 | - 'custom-fields', |
|
91 | - ), |
|
92 | - ); |
|
93 | - register_post_type( 'video', $args ); |
|
94 | - } |
|
40 | + /** |
|
41 | + * Return an instance of this class. |
|
42 | + * |
|
43 | + * @since 1.0.0 |
|
44 | + * |
|
45 | + * @return object \lsx_health_plan\classes\Video() A single instance of this class. |
|
46 | + */ |
|
47 | + public static function get_instance() { |
|
48 | + // If the single instance hasn't been set, set it now. |
|
49 | + if ( null === self::$instance ) { |
|
50 | + self::$instance = new self(); |
|
51 | + } |
|
52 | + return self::$instance; |
|
53 | + } |
|
54 | + /** |
|
55 | + * Register the post type. |
|
56 | + */ |
|
57 | + public function register_post_type() { |
|
58 | + $labels = array( |
|
59 | + 'name' => esc_html__( 'Videos', 'lsx-health-plan' ), |
|
60 | + 'singular_name' => esc_html__( 'Video', 'lsx-health-plan' ), |
|
61 | + 'add_new' => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ), |
|
62 | + 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
63 | + 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
64 | + 'new_item' => esc_html__( 'New', 'lsx-health-plan' ), |
|
65 | + 'all_items' => esc_html__( 'All Videos', 'lsx-health-plan' ), |
|
66 | + 'view_item' => esc_html__( 'View', 'lsx-health-plan' ), |
|
67 | + 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
68 | + 'not_found' => esc_html__( 'None found', 'lsx-health-plan' ), |
|
69 | + 'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ), |
|
70 | + 'parent_item_colon' => '', |
|
71 | + 'menu_name' => esc_html__( 'Videos', 'lsx-health-plan' ), |
|
72 | + ); |
|
73 | + $args = array( |
|
74 | + 'labels' => $labels, |
|
75 | + 'public' => true, |
|
76 | + 'publicly_queryable' => true, |
|
77 | + 'show_ui' => true, |
|
78 | + 'show_in_menu' => false, |
|
79 | + 'show_in_rest' => true, |
|
80 | + 'menu_icon' => 'dashicons-format-video', |
|
81 | + 'query_var' => true, |
|
82 | + 'rewrite' => false, |
|
83 | + 'capability_type' => 'post', |
|
84 | + 'has_archive' => false, |
|
85 | + 'hierarchical' => false, |
|
86 | + 'menu_position' => null, |
|
87 | + 'supports' => array( |
|
88 | + 'title', |
|
89 | + 'editor', |
|
90 | + 'custom-fields', |
|
91 | + ), |
|
92 | + ); |
|
93 | + register_post_type( 'video', $args ); |
|
94 | + } |
|
95 | 95 | |
96 | - /** |
|
97 | - * Registers the Recipes under the Meals Post type menu. |
|
98 | - * |
|
99 | - * @return void |
|
100 | - */ |
|
101 | - public function register_menus() { |
|
102 | - add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Videos', 'lsx-health-plan' ), esc_html__( 'Videos', 'lsx-health-plan' ), 'edit_posts', 'edit.php?post_type=video' ); |
|
103 | - } |
|
96 | + /** |
|
97 | + * Registers the Recipes under the Meals Post type menu. |
|
98 | + * |
|
99 | + * @return void |
|
100 | + */ |
|
101 | + public function register_menus() { |
|
102 | + add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Videos', 'lsx-health-plan' ), esc_html__( 'Videos', 'lsx-health-plan' ), 'edit_posts', 'edit.php?post_type=video' ); |
|
103 | + } |
|
104 | 104 | |
105 | - /** |
|
106 | - * Adds the post type to the different arrays. |
|
107 | - * |
|
108 | - * @param array $post_types |
|
109 | - * @return array |
|
110 | - */ |
|
111 | - public function enable_post_type( $post_types = array() ) { |
|
112 | - $post_types[] = $this->slug; |
|
113 | - return $post_types; |
|
114 | - } |
|
105 | + /** |
|
106 | + * Adds the post type to the different arrays. |
|
107 | + * |
|
108 | + * @param array $post_types |
|
109 | + * @return array |
|
110 | + */ |
|
111 | + public function enable_post_type( $post_types = array() ) { |
|
112 | + $post_types[] = $this->slug; |
|
113 | + return $post_types; |
|
114 | + } |
|
115 | 115 | |
116 | - /** |
|
117 | - * Enables the Bi Directional relationships |
|
118 | - * |
|
119 | - * @param array $connections |
|
120 | - * @return void |
|
121 | - */ |
|
122 | - public function enable_connections( $connections = array() ) { |
|
123 | - $connections['video']['connected_plans'] = 'connected_videos'; |
|
124 | - $connections['plan']['connected_videos'] = 'connected_plans'; |
|
125 | - $connections['video']['connected_workouts'] = 'connected_videos'; |
|
126 | - $connections['plan']['connected_videos'] = 'connected_workouts'; |
|
127 | - return $connections; |
|
128 | - } |
|
116 | + /** |
|
117 | + * Enables the Bi Directional relationships |
|
118 | + * |
|
119 | + * @param array $connections |
|
120 | + * @return void |
|
121 | + */ |
|
122 | + public function enable_connections( $connections = array() ) { |
|
123 | + $connections['video']['connected_plans'] = 'connected_videos'; |
|
124 | + $connections['plan']['connected_videos'] = 'connected_plans'; |
|
125 | + $connections['video']['connected_workouts'] = 'connected_videos'; |
|
126 | + $connections['plan']['connected_videos'] = 'connected_workouts'; |
|
127 | + return $connections; |
|
128 | + } |
|
129 | 129 | |
130 | - /** |
|
131 | - * Define the metabox and field configurations. |
|
132 | - */ |
|
133 | - public function details_metaboxes() { |
|
134 | - $cmb = new_cmb2_box( array( |
|
135 | - 'id' => $this->slug . '_details_metabox', |
|
136 | - 'title' => __( 'Video Details', 'lsx-health-plan' ), |
|
137 | - 'object_types' => array( $this->slug ), // Post type |
|
138 | - 'context' => 'normal', |
|
139 | - 'priority' => 'high', |
|
140 | - 'show_names' => true, |
|
141 | - ) ); |
|
142 | - $cmb->add_field( array( |
|
143 | - 'name' => __( 'Featured Video', 'lsx-health-plan' ), |
|
144 | - 'desc' => __( 'Enable the checkbox to feature this video, featured videos display in any page that has the video shortcode: [lsx_health_plan_featured_videos_block]', 'lsx-health-plan' ), |
|
145 | - 'id' => $this->slug . '_featured_video', |
|
146 | - 'type' => 'checkbox', |
|
147 | - 'show_on_cb' => 'cmb2_hide_if_no_cats', |
|
148 | - ) ); |
|
149 | - $cmb->add_field( array( |
|
150 | - 'name' => __( 'Youtube Source', 'lsx-health-plan' ), |
|
151 | - 'desc' => __( 'Drop in the url for your video from YouTube in this field, i.e: "https://www.youtube.com/watch?v=9xwazD5SyVg"', 'lsx-health-plan' ), |
|
152 | - 'id' => $this->slug . '_youtube_source', |
|
153 | - 'type' => 'oembed', |
|
154 | - 'show_on_cb' => 'cmb2_hide_if_no_cats', |
|
155 | - ) ); |
|
156 | - $cmb->add_field( array( |
|
157 | - 'name' => __( 'Giphy Source', 'lsx-health-plan' ), |
|
158 | - 'desc' => __( 'Drop in the iFrame embed code from Giphy in this field, i.e: <iframe src="https://giphy.com/embed/3o7527Rn1HxXWqgxuo" width="480" height="270" frameborder="0" class="giphy-embed" allowfullscreen></iframe>', 'lsx-health-plan' ), |
|
159 | - 'id' => $this->slug . '_giphy_source', |
|
160 | - 'type' => 'textarea_code', |
|
161 | - 'show_on_cb' => 'cmb2_hide_if_no_cats', |
|
162 | - ) ); |
|
163 | - } |
|
130 | + /** |
|
131 | + * Define the metabox and field configurations. |
|
132 | + */ |
|
133 | + public function details_metaboxes() { |
|
134 | + $cmb = new_cmb2_box( array( |
|
135 | + 'id' => $this->slug . '_details_metabox', |
|
136 | + 'title' => __( 'Video Details', 'lsx-health-plan' ), |
|
137 | + 'object_types' => array( $this->slug ), // Post type |
|
138 | + 'context' => 'normal', |
|
139 | + 'priority' => 'high', |
|
140 | + 'show_names' => true, |
|
141 | + ) ); |
|
142 | + $cmb->add_field( array( |
|
143 | + 'name' => __( 'Featured Video', 'lsx-health-plan' ), |
|
144 | + 'desc' => __( 'Enable the checkbox to feature this video, featured videos display in any page that has the video shortcode: [lsx_health_plan_featured_videos_block]', 'lsx-health-plan' ), |
|
145 | + 'id' => $this->slug . '_featured_video', |
|
146 | + 'type' => 'checkbox', |
|
147 | + 'show_on_cb' => 'cmb2_hide_if_no_cats', |
|
148 | + ) ); |
|
149 | + $cmb->add_field( array( |
|
150 | + 'name' => __( 'Youtube Source', 'lsx-health-plan' ), |
|
151 | + 'desc' => __( 'Drop in the url for your video from YouTube in this field, i.e: "https://www.youtube.com/watch?v=9xwazD5SyVg"', 'lsx-health-plan' ), |
|
152 | + 'id' => $this->slug . '_youtube_source', |
|
153 | + 'type' => 'oembed', |
|
154 | + 'show_on_cb' => 'cmb2_hide_if_no_cats', |
|
155 | + ) ); |
|
156 | + $cmb->add_field( array( |
|
157 | + 'name' => __( 'Giphy Source', 'lsx-health-plan' ), |
|
158 | + 'desc' => __( 'Drop in the iFrame embed code from Giphy in this field, i.e: <iframe src="https://giphy.com/embed/3o7527Rn1HxXWqgxuo" width="480" height="270" frameborder="0" class="giphy-embed" allowfullscreen></iframe>', 'lsx-health-plan' ), |
|
159 | + 'id' => $this->slug . '_giphy_source', |
|
160 | + 'type' => 'textarea_code', |
|
161 | + 'show_on_cb' => 'cmb2_hide_if_no_cats', |
|
162 | + ) ); |
|
163 | + } |
|
164 | 164 | |
165 | - // /** |
|
166 | - // * Registers the workout connections on the workout post type. |
|
167 | - // * |
|
168 | - // * @return void |
|
169 | - // */ |
|
170 | - // public function videos_connections() { |
|
171 | - // $cmb = new_cmb2_box( array( |
|
172 | - // 'id' => $this->slug . '_videos_connections_metabox', |
|
173 | - // 'title' => __( 'Videos', 'lsx-health-plan' ), |
|
174 | - // 'desc' => __( 'Start typing to search for your workouts', 'lsx-health-plan' ), |
|
175 | - // 'object_types' => array( 'workout' ), // Post type |
|
176 | - // 'context' => 'normal', |
|
177 | - // 'priority' => 'high', |
|
178 | - // 'show_names' => false, |
|
179 | - // ) ); |
|
180 | - // $cmb->add_field( array( |
|
181 | - // 'name' => __( 'Videos', 'lsx-health-plan' ), |
|
182 | - // 'id' => 'connected_videos', |
|
183 | - // 'type' => 'post_search_ajax', |
|
184 | - // // Optional : |
|
185 | - // 'limit' => 15, // Limit selection to X items only (default 1) |
|
186 | - // 'sortable' => true, // Allow selected items to be sortable (default false) |
|
187 | - // 'query_args' => array( |
|
188 | - // 'post_type' => array( 'video' ), |
|
189 | - // 'post_status' => array( 'publish' ), |
|
190 | - // 'posts_per_page' => -1, |
|
191 | - // ), |
|
192 | - // ) ); |
|
193 | - // } |
|
165 | + // /** |
|
166 | + // * Registers the workout connections on the workout post type. |
|
167 | + // * |
|
168 | + // * @return void |
|
169 | + // */ |
|
170 | + // public function videos_connections() { |
|
171 | + // $cmb = new_cmb2_box( array( |
|
172 | + // 'id' => $this->slug . '_videos_connections_metabox', |
|
173 | + // 'title' => __( 'Videos', 'lsx-health-plan' ), |
|
174 | + // 'desc' => __( 'Start typing to search for your workouts', 'lsx-health-plan' ), |
|
175 | + // 'object_types' => array( 'workout' ), // Post type |
|
176 | + // 'context' => 'normal', |
|
177 | + // 'priority' => 'high', |
|
178 | + // 'show_names' => false, |
|
179 | + // ) ); |
|
180 | + // $cmb->add_field( array( |
|
181 | + // 'name' => __( 'Videos', 'lsx-health-plan' ), |
|
182 | + // 'id' => 'connected_videos', |
|
183 | + // 'type' => 'post_search_ajax', |
|
184 | + // // Optional : |
|
185 | + // 'limit' => 15, // Limit selection to X items only (default 1) |
|
186 | + // 'sortable' => true, // Allow selected items to be sortable (default false) |
|
187 | + // 'query_args' => array( |
|
188 | + // 'post_type' => array( 'video' ), |
|
189 | + // 'post_status' => array( 'publish' ), |
|
190 | + // 'posts_per_page' => -1, |
|
191 | + // ), |
|
192 | + // ) ); |
|
193 | + // } |
|
194 | 194 | |
195 | 195 | } |
@@ -8,161 +8,161 @@ |
||
8 | 8 | */ |
9 | 9 | class Download_Monitor { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\Download_Monitor() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\Download_Monitor() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | 19 | |
20 | - /** |
|
21 | - * Holds post_type slug used as an index |
|
22 | - * |
|
23 | - * @since 1.0.0 |
|
24 | - * |
|
25 | - * @var string |
|
26 | - */ |
|
27 | - public $slug = 'download'; |
|
20 | + /** |
|
21 | + * Holds post_type slug used as an index |
|
22 | + * |
|
23 | + * @since 1.0.0 |
|
24 | + * |
|
25 | + * @var string |
|
26 | + */ |
|
27 | + public $slug = 'download'; |
|
28 | 28 | |
29 | - /** |
|
30 | - * Constructor |
|
31 | - */ |
|
32 | - public function __construct() { |
|
33 | - add_action( 'cmb2_admin_init', array( $this, 'downloads_post_type_metaboxes' ), 5 ); |
|
34 | - add_action( 'cmb2_admin_init', array( $this, 'download_connections' ), 5 ); |
|
35 | - add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 ); |
|
36 | - } |
|
29 | + /** |
|
30 | + * Constructor |
|
31 | + */ |
|
32 | + public function __construct() { |
|
33 | + add_action( 'cmb2_admin_init', array( $this, 'downloads_post_type_metaboxes' ), 5 ); |
|
34 | + add_action( 'cmb2_admin_init', array( $this, 'download_connections' ), 5 ); |
|
35 | + add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 ); |
|
36 | + } |
|
37 | 37 | |
38 | - /** |
|
39 | - * Return an instance of this class. |
|
40 | - * |
|
41 | - * @since 1.0.0 |
|
42 | - * |
|
43 | - * @return object \lsx_health_plan\classes\Download_Monitor() A single instance of this class. |
|
44 | - */ |
|
45 | - public static function get_instance() { |
|
46 | - // If the single instance hasn't been set, set it now. |
|
47 | - if ( null === self::$instance ) { |
|
48 | - self::$instance = new self(); |
|
49 | - } |
|
50 | - return self::$instance; |
|
51 | - } |
|
38 | + /** |
|
39 | + * Return an instance of this class. |
|
40 | + * |
|
41 | + * @since 1.0.0 |
|
42 | + * |
|
43 | + * @return object \lsx_health_plan\classes\Download_Monitor() A single instance of this class. |
|
44 | + */ |
|
45 | + public static function get_instance() { |
|
46 | + // If the single instance hasn't been set, set it now. |
|
47 | + if ( null === self::$instance ) { |
|
48 | + self::$instance = new self(); |
|
49 | + } |
|
50 | + return self::$instance; |
|
51 | + } |
|
52 | 52 | |
53 | - /** |
|
54 | - * Enables the Bi Directional relationships |
|
55 | - * |
|
56 | - * @param array $connections |
|
57 | - * @return void |
|
58 | - */ |
|
59 | - public function enable_connections( $connections = array() ) { |
|
60 | - $connections['dlm_download']['connected_pages'] = 'connected_downloads'; |
|
61 | - $connections['dlm_download']['connected_workouts'] = 'connected_downloads'; |
|
62 | - $connections['dlm_download']['connected_meals'] = 'connected_downloads'; |
|
63 | - $connections['dlm_download']['connected_recipes'] = 'connected_downloads'; |
|
53 | + /** |
|
54 | + * Enables the Bi Directional relationships |
|
55 | + * |
|
56 | + * @param array $connections |
|
57 | + * @return void |
|
58 | + */ |
|
59 | + public function enable_connections( $connections = array() ) { |
|
60 | + $connections['dlm_download']['connected_pages'] = 'connected_downloads'; |
|
61 | + $connections['dlm_download']['connected_workouts'] = 'connected_downloads'; |
|
62 | + $connections['dlm_download']['connected_meals'] = 'connected_downloads'; |
|
63 | + $connections['dlm_download']['connected_recipes'] = 'connected_downloads'; |
|
64 | 64 | |
65 | - //Post Type Connections |
|
66 | - $connections['workout']['connected_downloads'] = 'connected_workouts'; |
|
67 | - $connections['meal']['connected_downloads'] = 'connected_meals'; |
|
68 | - $connections['recipe']['connected_downloads'] = 'connected_recipes'; |
|
69 | - $connections['page']['connected_downloads'] = 'connected_pages'; |
|
70 | - return $connections; |
|
71 | - } |
|
65 | + //Post Type Connections |
|
66 | + $connections['workout']['connected_downloads'] = 'connected_workouts'; |
|
67 | + $connections['meal']['connected_downloads'] = 'connected_meals'; |
|
68 | + $connections['recipe']['connected_downloads'] = 'connected_recipes'; |
|
69 | + $connections['page']['connected_downloads'] = 'connected_pages'; |
|
70 | + return $connections; |
|
71 | + } |
|
72 | 72 | |
73 | - /** |
|
74 | - * Define the metabox and field configurations. |
|
75 | - */ |
|
76 | - public function downloads_post_type_metaboxes() { |
|
77 | - $cmb = new_cmb2_box( array( |
|
78 | - 'id' => $this->slug . '_connections_metabox', |
|
79 | - 'title' => __( 'Connections', 'lsx-health-plan' ), |
|
80 | - 'object_types' => array( 'dlm_download' ), // Post type |
|
81 | - 'context' => 'normal', |
|
82 | - 'priority' => 'high', |
|
83 | - 'show_names' => true, |
|
84 | - ) ); |
|
85 | - $cmb->add_field( array( |
|
86 | - 'name' => __( 'Pages', 'lsx-health-plan' ), |
|
87 | - 'id' => 'connected_pages', |
|
88 | - 'type' => 'post_search_ajax', |
|
89 | - // Optional : |
|
90 | - 'limit' => 10, // Limit selection to X items only (default 1) |
|
91 | - 'sortable' => true, // Allow selected items to be sortable (default false) |
|
92 | - 'query_args' => array( |
|
93 | - 'post_type' => array( 'page' ), |
|
94 | - 'post_status' => array( 'publish' ), |
|
95 | - 'posts_per_page' => -1, |
|
96 | - ), |
|
97 | - ) ); |
|
98 | - $cmb->add_field( array( |
|
99 | - 'name' => __( 'Workouts', 'lsx-health-plan' ), |
|
100 | - 'id' => 'connected_workouts', |
|
101 | - 'type' => 'post_search_ajax', |
|
102 | - // Optional : |
|
103 | - 'limit' => 10, // Limit selection to X items only (default 1) |
|
104 | - 'sortable' => true, // Allow selected items to be sortable (default false) |
|
105 | - 'query_args' => array( |
|
106 | - 'post_type' => array( 'workout' ), |
|
107 | - 'post_status' => array( 'publish' ), |
|
108 | - 'posts_per_page' => -1, |
|
109 | - ), |
|
110 | - ) ); |
|
111 | - $cmb->add_field( array( |
|
112 | - 'name' => __( 'Meals', 'lsx-health-plan' ), |
|
113 | - 'id' => 'connected_meals', |
|
114 | - 'type' => 'post_search_ajax', |
|
115 | - // Optional : |
|
116 | - 'limit' => 10, // Limit selection to X items only (default 1) |
|
117 | - 'sortable' => true, // Allow selected items to be sortable (default false) |
|
118 | - 'query_args' => array( |
|
119 | - 'post_type' => array( 'meal' ), |
|
120 | - 'post_status' => array( 'publish' ), |
|
121 | - 'posts_per_page' => -1, |
|
122 | - ), |
|
123 | - ) ); |
|
124 | - $cmb->add_field( array( |
|
125 | - 'name' => __( 'Recipe', 'lsx-health-plan' ), |
|
126 | - 'id' => 'connected_recipes', |
|
127 | - 'type' => 'post_search_ajax', |
|
128 | - // Optional : |
|
129 | - 'limit' => 10, // Limit selection to X items only (default 1) |
|
130 | - 'sortable' => true, // Allow selected items to be sortable (default false) |
|
131 | - 'query_args' => array( |
|
132 | - 'post_type' => array( 'recipe' ), |
|
133 | - 'post_status' => array( 'publish' ), |
|
134 | - 'posts_per_page' => -1, |
|
135 | - ), |
|
136 | - ) ); |
|
137 | - } |
|
73 | + /** |
|
74 | + * Define the metabox and field configurations. |
|
75 | + */ |
|
76 | + public function downloads_post_type_metaboxes() { |
|
77 | + $cmb = new_cmb2_box( array( |
|
78 | + 'id' => $this->slug . '_connections_metabox', |
|
79 | + 'title' => __( 'Connections', 'lsx-health-plan' ), |
|
80 | + 'object_types' => array( 'dlm_download' ), // Post type |
|
81 | + 'context' => 'normal', |
|
82 | + 'priority' => 'high', |
|
83 | + 'show_names' => true, |
|
84 | + ) ); |
|
85 | + $cmb->add_field( array( |
|
86 | + 'name' => __( 'Pages', 'lsx-health-plan' ), |
|
87 | + 'id' => 'connected_pages', |
|
88 | + 'type' => 'post_search_ajax', |
|
89 | + // Optional : |
|
90 | + 'limit' => 10, // Limit selection to X items only (default 1) |
|
91 | + 'sortable' => true, // Allow selected items to be sortable (default false) |
|
92 | + 'query_args' => array( |
|
93 | + 'post_type' => array( 'page' ), |
|
94 | + 'post_status' => array( 'publish' ), |
|
95 | + 'posts_per_page' => -1, |
|
96 | + ), |
|
97 | + ) ); |
|
98 | + $cmb->add_field( array( |
|
99 | + 'name' => __( 'Workouts', 'lsx-health-plan' ), |
|
100 | + 'id' => 'connected_workouts', |
|
101 | + 'type' => 'post_search_ajax', |
|
102 | + // Optional : |
|
103 | + 'limit' => 10, // Limit selection to X items only (default 1) |
|
104 | + 'sortable' => true, // Allow selected items to be sortable (default false) |
|
105 | + 'query_args' => array( |
|
106 | + 'post_type' => array( 'workout' ), |
|
107 | + 'post_status' => array( 'publish' ), |
|
108 | + 'posts_per_page' => -1, |
|
109 | + ), |
|
110 | + ) ); |
|
111 | + $cmb->add_field( array( |
|
112 | + 'name' => __( 'Meals', 'lsx-health-plan' ), |
|
113 | + 'id' => 'connected_meals', |
|
114 | + 'type' => 'post_search_ajax', |
|
115 | + // Optional : |
|
116 | + 'limit' => 10, // Limit selection to X items only (default 1) |
|
117 | + 'sortable' => true, // Allow selected items to be sortable (default false) |
|
118 | + 'query_args' => array( |
|
119 | + 'post_type' => array( 'meal' ), |
|
120 | + 'post_status' => array( 'publish' ), |
|
121 | + 'posts_per_page' => -1, |
|
122 | + ), |
|
123 | + ) ); |
|
124 | + $cmb->add_field( array( |
|
125 | + 'name' => __( 'Recipe', 'lsx-health-plan' ), |
|
126 | + 'id' => 'connected_recipes', |
|
127 | + 'type' => 'post_search_ajax', |
|
128 | + // Optional : |
|
129 | + 'limit' => 10, // Limit selection to X items only (default 1) |
|
130 | + 'sortable' => true, // Allow selected items to be sortable (default false) |
|
131 | + 'query_args' => array( |
|
132 | + 'post_type' => array( 'recipe' ), |
|
133 | + 'post_status' => array( 'publish' ), |
|
134 | + 'posts_per_page' => -1, |
|
135 | + ), |
|
136 | + ) ); |
|
137 | + } |
|
138 | 138 | |
139 | - /** |
|
140 | - * Registers the workout connections on the plan post type. |
|
141 | - * |
|
142 | - * @return void |
|
143 | - */ |
|
144 | - public function download_connections() { |
|
145 | - $cmb = new_cmb2_box( array( |
|
146 | - 'id' => $this->slug . '_metabox', |
|
147 | - 'title' => __( 'Downloads', 'lsx-health-plan' ), |
|
148 | - 'object_types' => array( 'workout', 'meal', 'recipe' ), // Post type |
|
149 | - 'context' => 'normal', |
|
150 | - 'priority' => 'high', |
|
151 | - 'show_names' => true, |
|
152 | - ) ); |
|
153 | - $cmb->add_field( array( |
|
154 | - 'name' => __( 'Downloads', 'lsx-health-plan' ), |
|
155 | - 'desc' => __( "Add the pdf's connected to this day plan, using the field provided.", 'lsx-health-plan' ), |
|
156 | - 'id' => 'connected_downloads', |
|
157 | - 'type' => 'post_search_ajax', |
|
158 | - // Optional |
|
159 | - 'limit' => 15, // Limit selection to X items only (default 1) |
|
160 | - 'sortable' => true, // Allow selected items to be sortable (default false) |
|
161 | - 'query_args' => array( |
|
162 | - 'post_type' => array( 'dlm_download' ), |
|
163 | - 'post_status' => array( 'publish' ), |
|
164 | - 'posts_per_page' => -1, |
|
165 | - ), |
|
166 | - ) ); |
|
167 | - } |
|
139 | + /** |
|
140 | + * Registers the workout connections on the plan post type. |
|
141 | + * |
|
142 | + * @return void |
|
143 | + */ |
|
144 | + public function download_connections() { |
|
145 | + $cmb = new_cmb2_box( array( |
|
146 | + 'id' => $this->slug . '_metabox', |
|
147 | + 'title' => __( 'Downloads', 'lsx-health-plan' ), |
|
148 | + 'object_types' => array( 'workout', 'meal', 'recipe' ), // Post type |
|
149 | + 'context' => 'normal', |
|
150 | + 'priority' => 'high', |
|
151 | + 'show_names' => true, |
|
152 | + ) ); |
|
153 | + $cmb->add_field( array( |
|
154 | + 'name' => __( 'Downloads', 'lsx-health-plan' ), |
|
155 | + 'desc' => __( "Add the pdf's connected to this day plan, using the field provided.", 'lsx-health-plan' ), |
|
156 | + 'id' => 'connected_downloads', |
|
157 | + 'type' => 'post_search_ajax', |
|
158 | + // Optional |
|
159 | + 'limit' => 15, // Limit selection to X items only (default 1) |
|
160 | + 'sortable' => true, // Allow selected items to be sortable (default false) |
|
161 | + 'query_args' => array( |
|
162 | + 'post_type' => array( 'dlm_download' ), |
|
163 | + 'post_status' => array( 'publish' ), |
|
164 | + 'posts_per_page' => -1, |
|
165 | + ), |
|
166 | + ) ); |
|
167 | + } |
|
168 | 168 | } |
@@ -8,137 +8,137 @@ |
||
8 | 8 | */ |
9 | 9 | class Plans { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\integrations\woocommerce\Plans() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\integrations\woocommerce\Plans() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | 19 | |
20 | - /** |
|
21 | - * Holds the current screen var if it is active. |
|
22 | - * |
|
23 | - * @var string |
|
24 | - */ |
|
25 | - public $screen = ''; |
|
20 | + /** |
|
21 | + * Holds the current screen var if it is active. |
|
22 | + * |
|
23 | + * @var string |
|
24 | + */ |
|
25 | + public $screen = ''; |
|
26 | 26 | |
27 | - /** |
|
28 | - * Holds the current array of product IDS. |
|
29 | - * |
|
30 | - * @var array |
|
31 | - */ |
|
32 | - public $product_ids = array(); |
|
27 | + /** |
|
28 | + * Holds the current array of product IDS. |
|
29 | + * |
|
30 | + * @var array |
|
31 | + */ |
|
32 | + public $product_ids = array(); |
|
33 | 33 | |
34 | - /** |
|
35 | - * Holds the curret parent ID. |
|
36 | - * |
|
37 | - * @var int |
|
38 | - */ |
|
39 | - public $parent_id = 0; |
|
34 | + /** |
|
35 | + * Holds the curret parent ID. |
|
36 | + * |
|
37 | + * @var int |
|
38 | + */ |
|
39 | + public $parent_id = 0; |
|
40 | 40 | |
41 | - /** |
|
42 | - * Constructor |
|
43 | - */ |
|
44 | - public function __construct() { |
|
45 | - // Remove the default restrictions, as we will add our own. |
|
46 | - add_action( 'wp', array( $this, 'set_screen' ), 1 ); |
|
47 | - add_action( 'wp', array( $this, 'disable_parent_plan_restrictions' ), 2 ); |
|
48 | - add_action( 'wp', array( $this, 'child_plan_redirect_restrictions' ), 2 ); |
|
41 | + /** |
|
42 | + * Constructor |
|
43 | + */ |
|
44 | + public function __construct() { |
|
45 | + // Remove the default restrictions, as we will add our own. |
|
46 | + add_action( 'wp', array( $this, 'set_screen' ), 1 ); |
|
47 | + add_action( 'wp', array( $this, 'disable_parent_plan_restrictions' ), 2 ); |
|
48 | + add_action( 'wp', array( $this, 'child_plan_redirect_restrictions' ), 2 ); |
|
49 | 49 | |
50 | - // Initiate the WP Head functions. |
|
51 | - add_action( 'wp_head', array( $this, 'set_screen' ) ); |
|
52 | - add_action( 'lsx_content_top', 'lsx_hp_single_plan_products' ); |
|
50 | + // Initiate the WP Head functions. |
|
51 | + add_action( 'wp_head', array( $this, 'set_screen' ) ); |
|
52 | + add_action( 'lsx_content_top', 'lsx_hp_single_plan_products' ); |
|
53 | 53 | |
54 | - // Plan Archive Actions. |
|
55 | - add_action( 'lsx_entry_before', array( $this, 'set_product_ids' ) ); |
|
56 | - } |
|
54 | + // Plan Archive Actions. |
|
55 | + add_action( 'lsx_entry_before', array( $this, 'set_product_ids' ) ); |
|
56 | + } |
|
57 | 57 | |
58 | - /** |
|
59 | - * Return an instance of this class. |
|
60 | - * |
|
61 | - * @since 1.0.0 |
|
62 | - * |
|
63 | - * @return object \lsx_health_plan\classes\integrations\woocommerce\Plans() A single instance of this class. |
|
64 | - */ |
|
65 | - public static function get_instance() { |
|
66 | - // If the single instance hasn't been set, set it now. |
|
67 | - if ( null === self::$instance ) { |
|
68 | - self::$instance = new self(); |
|
69 | - } |
|
70 | - return self::$instance; |
|
71 | - } |
|
58 | + /** |
|
59 | + * Return an instance of this class. |
|
60 | + * |
|
61 | + * @since 1.0.0 |
|
62 | + * |
|
63 | + * @return object \lsx_health_plan\classes\integrations\woocommerce\Plans() A single instance of this class. |
|
64 | + */ |
|
65 | + public static function get_instance() { |
|
66 | + // If the single instance hasn't been set, set it now. |
|
67 | + if ( null === self::$instance ) { |
|
68 | + self::$instance = new self(); |
|
69 | + } |
|
70 | + return self::$instance; |
|
71 | + } |
|
72 | 72 | |
73 | - /** |
|
74 | - * Define the product metabox on the plan post type |
|
75 | - */ |
|
76 | - public function set_screen() { |
|
77 | - if ( is_singular( 'plan' ) ) { |
|
78 | - $section = get_query_var( 'section' ); |
|
79 | - if ( ! empty( $section ) ) { |
|
80 | - $this->screen = 'child_plan'; |
|
81 | - } else { |
|
82 | - $this->screen = 'parent_plan'; |
|
83 | - } |
|
84 | - $product_ids = get_post_meta( get_the_ID(), 'plan_product', true ); |
|
85 | - if ( false !== $product_ids && ! empty( $product_ids ) ) { |
|
86 | - $this->product_ids = $product_ids; |
|
87 | - } |
|
88 | - } |
|
89 | - if ( is_post_type_archive( 'plan' ) ) { |
|
90 | - $this->screen = 'plan_archive'; |
|
91 | - } |
|
92 | - } |
|
73 | + /** |
|
74 | + * Define the product metabox on the plan post type |
|
75 | + */ |
|
76 | + public function set_screen() { |
|
77 | + if ( is_singular( 'plan' ) ) { |
|
78 | + $section = get_query_var( 'section' ); |
|
79 | + if ( ! empty( $section ) ) { |
|
80 | + $this->screen = 'child_plan'; |
|
81 | + } else { |
|
82 | + $this->screen = 'parent_plan'; |
|
83 | + } |
|
84 | + $product_ids = get_post_meta( get_the_ID(), 'plan_product', true ); |
|
85 | + if ( false !== $product_ids && ! empty( $product_ids ) ) { |
|
86 | + $this->product_ids = $product_ids; |
|
87 | + } |
|
88 | + } |
|
89 | + if ( is_post_type_archive( 'plan' ) ) { |
|
90 | + $this->screen = 'plan_archive'; |
|
91 | + } |
|
92 | + } |
|
93 | 93 | |
94 | - /** |
|
95 | - * Sets the post type archive product ids. |
|
96 | - * |
|
97 | - * @return void |
|
98 | - */ |
|
99 | - public function set_product_ids() { |
|
100 | - $this->product_ids = false; |
|
101 | - if ( 'plan' === get_post_type() ) { |
|
102 | - $product_ids = get_post_meta( get_the_ID(), 'plan_product', true ); |
|
103 | - if ( false !== $product_ids && ! empty( $product_ids ) ) { |
|
104 | - $this->product_ids = $product_ids; |
|
105 | - } |
|
106 | - } |
|
107 | - } |
|
94 | + /** |
|
95 | + * Sets the post type archive product ids. |
|
96 | + * |
|
97 | + * @return void |
|
98 | + */ |
|
99 | + public function set_product_ids() { |
|
100 | + $this->product_ids = false; |
|
101 | + if ( 'plan' === get_post_type() ) { |
|
102 | + $product_ids = get_post_meta( get_the_ID(), 'plan_product', true ); |
|
103 | + if ( false !== $product_ids && ! empty( $product_ids ) ) { |
|
104 | + $this->product_ids = $product_ids; |
|
105 | + } |
|
106 | + } |
|
107 | + } |
|
108 | 108 | |
109 | - /** |
|
110 | - * Disable WC Memberships restrictions for plan parents. We add our own custom |
|
111 | - * restriction functionality elsewhere. |
|
112 | - */ |
|
113 | - public function disable_parent_plan_restrictions() { |
|
114 | - if ( '' === $this->screen ) { |
|
115 | - return; |
|
116 | - } |
|
117 | - $restrictions = wc_memberships()->get_restrictions_instance()->get_posts_restrictions_instance(); |
|
118 | - remove_action( 'wp', array( $restrictions, 'handle_restriction_modes' ) ); |
|
119 | - } |
|
109 | + /** |
|
110 | + * Disable WC Memberships restrictions for plan parents. We add our own custom |
|
111 | + * restriction functionality elsewhere. |
|
112 | + */ |
|
113 | + public function disable_parent_plan_restrictions() { |
|
114 | + if ( '' === $this->screen ) { |
|
115 | + return; |
|
116 | + } |
|
117 | + $restrictions = wc_memberships()->get_restrictions_instance()->get_posts_restrictions_instance(); |
|
118 | + remove_action( 'wp', array( $restrictions, 'handle_restriction_modes' ) ); |
|
119 | + } |
|
120 | 120 | |
121 | - /** |
|
122 | - * Disable WC Memberships restrictions for plan parents. We add our own custom |
|
123 | - * restriction functionality elsewhere. |
|
124 | - */ |
|
125 | - public function child_plan_redirect_restrictions() { |
|
126 | - if ( ! is_singular( 'plan' ) || 'child_plan' !== $this->screen || ! function_exists( 'wc_memberships_is_post_content_restricted' ) ) { |
|
127 | - return; |
|
128 | - } |
|
129 | - $restricted = wc_memberships_is_post_content_restricted() && ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
130 | - if ( true === $restricted ) { |
|
131 | - wp_redirect( get_permalink( get_the_ID() ) ); |
|
132 | - exit; |
|
133 | - } |
|
134 | - } |
|
121 | + /** |
|
122 | + * Disable WC Memberships restrictions for plan parents. We add our own custom |
|
123 | + * restriction functionality elsewhere. |
|
124 | + */ |
|
125 | + public function child_plan_redirect_restrictions() { |
|
126 | + if ( ! is_singular( 'plan' ) || 'child_plan' !== $this->screen || ! function_exists( 'wc_memberships_is_post_content_restricted' ) ) { |
|
127 | + return; |
|
128 | + } |
|
129 | + $restricted = wc_memberships_is_post_content_restricted() && ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
130 | + if ( true === $restricted ) { |
|
131 | + wp_redirect( get_permalink( get_the_ID() ) ); |
|
132 | + exit; |
|
133 | + } |
|
134 | + } |
|
135 | 135 | |
136 | - /** |
|
137 | - * Returns the ids of the attached products. |
|
138 | - * |
|
139 | - * @return array |
|
140 | - */ |
|
141 | - public function get_products() { |
|
142 | - return $this->product_ids; |
|
143 | - } |
|
136 | + /** |
|
137 | + * Returns the ids of the attached products. |
|
138 | + * |
|
139 | + * @return array |
|
140 | + */ |
|
141 | + public function get_products() { |
|
142 | + return $this->product_ids; |
|
143 | + } |
|
144 | 144 | } |
@@ -8,76 +8,76 @@ |
||
8 | 8 | */ |
9 | 9 | class Login { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\integrations\woocommerce\Login() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\integrations\woocommerce\Login() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | 19 | |
20 | - /** |
|
21 | - * Constructor |
|
22 | - */ |
|
23 | - public function __construct() { |
|
24 | - // Lost Password fields |
|
25 | - add_action( 'woocommerce_before_lost_password_form', array( $this, 'lost_password_page_title' ), 10 ); |
|
20 | + /** |
|
21 | + * Constructor |
|
22 | + */ |
|
23 | + public function __construct() { |
|
24 | + // Lost Password fields |
|
25 | + add_action( 'woocommerce_before_lost_password_form', array( $this, 'lost_password_page_title' ), 10 ); |
|
26 | 26 | |
27 | - add_action( 'wp', array( $this, 'allow_reset_password_page' ), 9 ); |
|
28 | - } |
|
27 | + add_action( 'wp', array( $this, 'allow_reset_password_page' ), 9 ); |
|
28 | + } |
|
29 | 29 | |
30 | - /** |
|
31 | - * Return an instance of this class. |
|
32 | - * |
|
33 | - * @since 1.0.0 |
|
34 | - * |
|
35 | - * @return object \lsx_health_plan\classes\integrations\woocommerce\Login() A single instance of this class. |
|
36 | - */ |
|
37 | - public static function get_instance() { |
|
38 | - // If the single instance hasn't been set, set it now. |
|
39 | - if ( null === self::$instance ) { |
|
40 | - self::$instance = new self(); |
|
41 | - } |
|
42 | - return self::$instance; |
|
43 | - } |
|
30 | + /** |
|
31 | + * Return an instance of this class. |
|
32 | + * |
|
33 | + * @since 1.0.0 |
|
34 | + * |
|
35 | + * @return object \lsx_health_plan\classes\integrations\woocommerce\Login() A single instance of this class. |
|
36 | + */ |
|
37 | + public static function get_instance() { |
|
38 | + // If the single instance hasn't been set, set it now. |
|
39 | + if ( null === self::$instance ) { |
|
40 | + self::$instance = new self(); |
|
41 | + } |
|
42 | + return self::$instance; |
|
43 | + } |
|
44 | 44 | |
45 | - public function lost_password_page_title() { |
|
46 | - ?> |
|
45 | + public function lost_password_page_title() { |
|
46 | + ?> |
|
47 | 47 | <h1 class="lost-your-password-title"><?php esc_html_e( 'Lost your password?', 'lsx-health-plan' ); ?></h1> |
48 | 48 | <?php |
49 | - } |
|
49 | + } |
|
50 | 50 | |
51 | - /** |
|
52 | - * Removes the content restriction class to allow the password page to show. |
|
53 | - * |
|
54 | - * @return void |
|
55 | - */ |
|
56 | - public function allow_reset_password_page() { |
|
57 | - if ( ! is_user_logged_in() && function_exists( 'wc_memberships' ) && is_wc_endpoint_url( 'lost-password' ) ) { |
|
51 | + /** |
|
52 | + * Removes the content restriction class to allow the password page to show. |
|
53 | + * |
|
54 | + * @return void |
|
55 | + */ |
|
56 | + public function allow_reset_password_page() { |
|
57 | + if ( ! is_user_logged_in() && function_exists( 'wc_memberships' ) && is_wc_endpoint_url( 'lost-password' ) ) { |
|
58 | 58 | |
59 | - $members_instance = wc_memberships(); |
|
60 | - $restriction_instance = $members_instance->get_restrictions_instance(); |
|
61 | - $post_restrictions_instance = $restriction_instance->get_posts_restrictions_instance(); |
|
62 | - remove_action( 'wp', array( $post_restrictions_instance, 'handle_restriction_modes' ), 10, 1 ); |
|
63 | - add_action( 'body_class', array( $this, 'remove_body_classes' ) ); |
|
64 | - } |
|
65 | - } |
|
59 | + $members_instance = wc_memberships(); |
|
60 | + $restriction_instance = $members_instance->get_restrictions_instance(); |
|
61 | + $post_restrictions_instance = $restriction_instance->get_posts_restrictions_instance(); |
|
62 | + remove_action( 'wp', array( $post_restrictions_instance, 'handle_restriction_modes' ), 10, 1 ); |
|
63 | + add_action( 'body_class', array( $this, 'remove_body_classes' ) ); |
|
64 | + } |
|
65 | + } |
|
66 | 66 | |
67 | - /** |
|
68 | - * Remove the gutenberg classes from the lost password page. |
|
69 | - * |
|
70 | - * @param array $classes |
|
71 | - * @return void |
|
72 | - */ |
|
73 | - public function remove_body_classes( $classes = array() ) { |
|
74 | - if ( ! empty( $classes ) ) { |
|
75 | - foreach ( $classes as $class_key => $class_value ) { |
|
76 | - if ( 'gutenberg-compatible-template' === $class_value || 'using-gutenberg' === $class_value ) { |
|
77 | - unset( $classes[ $class_key ] ); |
|
78 | - } |
|
79 | - } |
|
80 | - } |
|
81 | - return $classes; |
|
82 | - } |
|
67 | + /** |
|
68 | + * Remove the gutenberg classes from the lost password page. |
|
69 | + * |
|
70 | + * @param array $classes |
|
71 | + * @return void |
|
72 | + */ |
|
73 | + public function remove_body_classes( $classes = array() ) { |
|
74 | + if ( ! empty( $classes ) ) { |
|
75 | + foreach ( $classes as $class_key => $class_value ) { |
|
76 | + if ( 'gutenberg-compatible-template' === $class_value || 'using-gutenberg' === $class_value ) { |
|
77 | + unset( $classes[ $class_key ] ); |
|
78 | + } |
|
79 | + } |
|
80 | + } |
|
81 | + return $classes; |
|
82 | + } |
|
83 | 83 | } |