@@ -14,14 +14,14 @@ discard block |
||
| 14 | 14 | * @return boolean |
| 15 | 15 | */ |
| 16 | 16 | function is_search_enabled() { |
| 17 | - $enabled = false; |
|
| 18 | - if ( function_exists( 'lsx_search' ) ) { |
|
| 19 | - $search_instance = \LSX_Search::get_instance(); |
|
| 20 | - if ( null !== $search_instance ) { |
|
| 21 | - $enabled = $search_instance->frontend->is_search_enabled(); |
|
| 22 | - } |
|
| 23 | - } |
|
| 24 | - return $enabled; |
|
| 17 | + $enabled = false; |
|
| 18 | + if ( function_exists( 'lsx_search' ) ) { |
|
| 19 | + $search_instance = \LSX_Search::get_instance(); |
|
| 20 | + if ( null !== $search_instance ) { |
|
| 21 | + $enabled = $search_instance->frontend->is_search_enabled(); |
|
| 22 | + } |
|
| 23 | + } |
|
| 24 | + return $enabled; |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | /** |
@@ -31,13 +31,13 @@ discard block |
||
| 31 | 31 | * @return boolean |
| 32 | 32 | */ |
| 33 | 33 | function has_sections( $plan_id = 0 ) { |
| 34 | - $sections = false; |
|
| 35 | - if ( 0 === $plan_id ) { |
|
| 36 | - $plan_id = get_the_ID(); |
|
| 37 | - } |
|
| 38 | - $lsx_hp = lsx_health_plan(); |
|
| 39 | - $sections = $lsx_hp->frontend->plan_query->query_sections( $plan_id ); |
|
| 40 | - return $sections; |
|
| 34 | + $sections = false; |
|
| 35 | + if ( 0 === $plan_id ) { |
|
| 36 | + $plan_id = get_the_ID(); |
|
| 37 | + } |
|
| 38 | + $lsx_hp = lsx_health_plan(); |
|
| 39 | + $sections = $lsx_hp->frontend->plan_query->query_sections( $plan_id ); |
|
| 40 | + return $sections; |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | /** |
@@ -48,9 +48,9 @@ discard block |
||
| 48 | 48 | * @return array |
| 49 | 49 | */ |
| 50 | 50 | function get_sections( $group_sections = false ) { |
| 51 | - $lsx_hp = lsx_health_plan(); |
|
| 52 | - $sections = $lsx_hp->frontend->plan_query->get_sections( $group_sections ); |
|
| 53 | - return $sections; |
|
| 51 | + $lsx_hp = lsx_health_plan(); |
|
| 52 | + $sections = $lsx_hp->frontend->plan_query->get_sections( $group_sections ); |
|
| 53 | + return $sections; |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | /** |
@@ -60,18 +60,18 @@ discard block |
||
| 60 | 60 | * @return array |
| 61 | 61 | */ |
| 62 | 62 | function get_section_info( $section_key = '' ) { |
| 63 | - $section_info = array(); |
|
| 63 | + $section_info = array(); |
|
| 64 | 64 | |
| 65 | - $sections = get_sections(); |
|
| 66 | - if ( ! empty( $sections ) ) { |
|
| 67 | - foreach ( $sections as $key => $values ) { |
|
| 68 | - $current_key = sanitize_title( $values['title'] ); |
|
| 69 | - if ( $current_key === $section_key ) { |
|
| 70 | - return $values; |
|
| 71 | - } |
|
| 72 | - } |
|
| 73 | - } |
|
| 74 | - return $section_info; |
|
| 65 | + $sections = get_sections(); |
|
| 66 | + if ( ! empty( $sections ) ) { |
|
| 67 | + foreach ( $sections as $key => $values ) { |
|
| 68 | + $current_key = sanitize_title( $values['title'] ); |
|
| 69 | + if ( $current_key === $section_key ) { |
|
| 70 | + return $values; |
|
| 71 | + } |
|
| 72 | + } |
|
| 73 | + } |
|
| 74 | + return $section_info; |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | /** |
@@ -81,14 +81,14 @@ discard block |
||
| 81 | 81 | * @return array |
| 82 | 82 | */ |
| 83 | 83 | function get_group_title( $sections = array() ) { |
| 84 | - $group_title = apply_filters( 'lsx_hp_default_plan_group', __( 'Daily Plan', 'lsx-health-plan' ) ); |
|
| 85 | - if ( ! empty( $sections ) ) { |
|
| 86 | - $first_section = reset( $sections ); |
|
| 87 | - if ( isset( $first_section['group'] ) && '' !== $first_section['group'] ) { |
|
| 88 | - $group_title = $first_section['group']; |
|
| 89 | - } |
|
| 90 | - } |
|
| 91 | - return $group_title; |
|
| 84 | + $group_title = apply_filters( 'lsx_hp_default_plan_group', __( 'Daily Plan', 'lsx-health-plan' ) ); |
|
| 85 | + if ( ! empty( $sections ) ) { |
|
| 86 | + $first_section = reset( $sections ); |
|
| 87 | + if ( isset( $first_section['group'] ) && '' !== $first_section['group'] ) { |
|
| 88 | + $group_title = $first_section['group']; |
|
| 89 | + } |
|
| 90 | + } |
|
| 91 | + return $group_title; |
|
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | /** |
@@ -99,14 +99,14 @@ discard block |
||
| 99 | 99 | * @return array |
| 100 | 100 | */ |
| 101 | 101 | function get_permalink( $plan_id = 0, $title = '' ) { |
| 102 | - if ( 0 === $plan_id ) { |
|
| 103 | - $plan_id = get_the_ID(); |
|
| 104 | - } |
|
| 105 | - $url = \get_permalink( $plan_id ); |
|
| 106 | - if ( '' !== $title ) { |
|
| 107 | - $url .= sanitize_title( $title ) . '/'; |
|
| 108 | - } |
|
| 109 | - return $url; |
|
| 102 | + if ( 0 === $plan_id ) { |
|
| 103 | + $plan_id = get_the_ID(); |
|
| 104 | + } |
|
| 105 | + $url = \get_permalink( $plan_id ); |
|
| 106 | + if ( '' !== $title ) { |
|
| 107 | + $url .= sanitize_title( $title ) . '/'; |
|
| 108 | + } |
|
| 109 | + return $url; |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | /** |
@@ -115,11 +115,11 @@ discard block |
||
| 115 | 115 | * @return boolean |
| 116 | 116 | */ |
| 117 | 117 | function is_filters_disabled( $disabled = false ) { |
| 118 | - $is_disabled = \lsx_health_plan\functions\get_option( 'plan_filters_disabled', false ); |
|
| 119 | - if ( false !== $is_disabled ) { |
|
| 120 | - $disabled = true; |
|
| 121 | - } |
|
| 122 | - return $disabled; |
|
| 118 | + $is_disabled = \lsx_health_plan\functions\get_option( 'plan_filters_disabled', false ); |
|
| 119 | + if ( false !== $is_disabled ) { |
|
| 120 | + $disabled = true; |
|
| 121 | + } |
|
| 122 | + return $disabled; |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | /** |
@@ -130,17 +130,17 @@ discard block |
||
| 130 | 130 | * @return string |
| 131 | 131 | */ |
| 132 | 132 | function generate_section_id( $section_key = '' ) { |
| 133 | - $key = get_the_ID(); |
|
| 134 | - if ( '' === $section_key ) { |
|
| 135 | - $section_key = get_query_var( 'section' ); |
|
| 136 | - } |
|
| 133 | + $key = get_the_ID(); |
|
| 134 | + if ( '' === $section_key ) { |
|
| 135 | + $section_key = get_query_var( 'section' ); |
|
| 136 | + } |
|
| 137 | 137 | |
| 138 | - $section_key = sanitize_title( $section_key ); |
|
| 138 | + $section_key = sanitize_title( $section_key ); |
|
| 139 | 139 | |
| 140 | - if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) { |
|
| 141 | - $group_title = apply_filters( 'lsx_hp_default_plan_group', __( 'Daily Plan', 'lsx-health-plan' ) ); |
|
| 142 | - $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
| 143 | - $key .= '_' . sanitize_key( $group_title ) . '_' . sanitize_key( $section_info['title'] ); |
|
| 144 | - } |
|
| 145 | - return $key; |
|
| 140 | + if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) { |
|
| 141 | + $group_title = apply_filters( 'lsx_hp_default_plan_group', __( 'Daily Plan', 'lsx-health-plan' ) ); |
|
| 142 | + $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
| 143 | + $key .= '_' . sanitize_key( $group_title ) . '_' . sanitize_key( $section_info['title'] ); |
|
| 144 | + } |
|
| 145 | + return $key; |
|
| 146 | 146 | } |
@@ -8,120 +8,120 @@ |
||
| 8 | 8 | */ |
| 9 | 9 | class Frontend { |
| 10 | 10 | |
| 11 | - /** |
|
| 12 | - * Holds class instance |
|
| 13 | - * |
|
| 14 | - * @since 1.0.0 |
|
| 15 | - * |
|
| 16 | - * @var object \lsx_health_plan\classes\Frontend() |
|
| 17 | - */ |
|
| 18 | - protected static $instance = null; |
|
| 19 | - |
|
| 20 | - /** |
|
| 21 | - * @var object \lsx_health_plan\classes\frontend\Endpoints(); |
|
| 22 | - */ |
|
| 23 | - public $endpoints; |
|
| 24 | - |
|
| 25 | - /** |
|
| 26 | - * @var object \lsx_health_plan\classes\frontend\Modals(); |
|
| 27 | - */ |
|
| 28 | - public $modals; |
|
| 29 | - |
|
| 30 | - /** |
|
| 31 | - * @var object \lsx_health_plan\classes\frontend\Gallery(); |
|
| 32 | - */ |
|
| 33 | - public $gallery; |
|
| 34 | - |
|
| 35 | - /** |
|
| 36 | - * @var object \lsx_health_plan\classes\frontend\Plan_Status(); |
|
| 37 | - */ |
|
| 38 | - public $plan_status; |
|
| 39 | - |
|
| 40 | - /** |
|
| 41 | - * @var object \lsx_health_plan\classes\frontend\Plan_Query(); |
|
| 42 | - */ |
|
| 43 | - public $plan_query; |
|
| 44 | - |
|
| 45 | - /** |
|
| 46 | - * @var object \lsx_health_plan\classes\frontend\General(); |
|
| 47 | - */ |
|
| 48 | - public $general; |
|
| 49 | - |
|
| 50 | - /** |
|
| 51 | - * @var object \lsx_health_plan\classes\frontend\Template_Redirects(); |
|
| 52 | - */ |
|
| 53 | - public $template_redirects; |
|
| 54 | - |
|
| 55 | - /** |
|
| 56 | - * Constructor |
|
| 57 | - */ |
|
| 58 | - public function __construct() { |
|
| 59 | - if ( ! is_admin() ) { |
|
| 60 | - $this->load_classes(); |
|
| 61 | - add_action( 'template_redirect', array( $this, 'redirect' ) ); |
|
| 11 | + /** |
|
| 12 | + * Holds class instance |
|
| 13 | + * |
|
| 14 | + * @since 1.0.0 |
|
| 15 | + * |
|
| 16 | + * @var object \lsx_health_plan\classes\Frontend() |
|
| 17 | + */ |
|
| 18 | + protected static $instance = null; |
|
| 19 | + |
|
| 20 | + /** |
|
| 21 | + * @var object \lsx_health_plan\classes\frontend\Endpoints(); |
|
| 22 | + */ |
|
| 23 | + public $endpoints; |
|
| 24 | + |
|
| 25 | + /** |
|
| 26 | + * @var object \lsx_health_plan\classes\frontend\Modals(); |
|
| 27 | + */ |
|
| 28 | + public $modals; |
|
| 29 | + |
|
| 30 | + /** |
|
| 31 | + * @var object \lsx_health_plan\classes\frontend\Gallery(); |
|
| 32 | + */ |
|
| 33 | + public $gallery; |
|
| 34 | + |
|
| 35 | + /** |
|
| 36 | + * @var object \lsx_health_plan\classes\frontend\Plan_Status(); |
|
| 37 | + */ |
|
| 38 | + public $plan_status; |
|
| 39 | + |
|
| 40 | + /** |
|
| 41 | + * @var object \lsx_health_plan\classes\frontend\Plan_Query(); |
|
| 42 | + */ |
|
| 43 | + public $plan_query; |
|
| 44 | + |
|
| 45 | + /** |
|
| 46 | + * @var object \lsx_health_plan\classes\frontend\General(); |
|
| 47 | + */ |
|
| 48 | + public $general; |
|
| 49 | + |
|
| 50 | + /** |
|
| 51 | + * @var object \lsx_health_plan\classes\frontend\Template_Redirects(); |
|
| 52 | + */ |
|
| 53 | + public $template_redirects; |
|
| 54 | + |
|
| 55 | + /** |
|
| 56 | + * Constructor |
|
| 57 | + */ |
|
| 58 | + public function __construct() { |
|
| 59 | + if ( ! is_admin() ) { |
|
| 60 | + $this->load_classes(); |
|
| 61 | + add_action( 'template_redirect', array( $this, 'redirect' ) ); |
|
| 62 | 62 | |
| 63 | - } |
|
| 64 | - } |
|
| 65 | - |
|
| 66 | - /** |
|
| 67 | - * Return an instance of this class. |
|
| 68 | - * |
|
| 69 | - * @since 1.0.0 |
|
| 70 | - * |
|
| 71 | - * @return object \lsx_health_plan\classes\Frontend() A single instance of this class. |
|
| 72 | - */ |
|
| 73 | - public static function get_instance() { |
|
| 74 | - // If the single instance hasn't been set, set it now. |
|
| 75 | - if ( null === self::$instance ) { |
|
| 76 | - self::$instance = new self(); |
|
| 77 | - } |
|
| 78 | - return self::$instance; |
|
| 79 | - } |
|
| 80 | - |
|
| 81 | - /** |
|
| 82 | - * Loads the variable classes and the static classes. |
|
| 83 | - */ |
|
| 84 | - private function load_classes() { |
|
| 85 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-endpoints.php'; |
|
| 86 | - $this->endpoints = frontend\Endpoints::get_instance(); |
|
| 87 | - |
|
| 88 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-modals.php'; |
|
| 89 | - $this->modals = Modals::get_instance(); |
|
| 90 | - |
|
| 91 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-gallery.php'; |
|
| 92 | - $this->gallery = frontend\Gallery::get_instance(); |
|
| 93 | - |
|
| 94 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-plan-status.php'; |
|
| 95 | - $this->plan_status = frontend\Plan_Status::get_instance(); |
|
| 96 | - |
|
| 97 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-plan-query.php'; |
|
| 98 | - $this->plan_query = frontend\Plan_Query::get_instance(); |
|
| 99 | - |
|
| 100 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-general.php'; |
|
| 101 | - $this->general = frontend\General::get_instance(); |
|
| 102 | - |
|
| 103 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-template-redirects.php'; |
|
| 104 | - $this->template_redirects = frontend\Template_Redirects::get_instance(); |
|
| 105 | - } |
|
| 106 | - |
|
| 107 | - /** |
|
| 108 | - * Redirect the user from the cart or checkout page if they have purchased the product already. |
|
| 109 | - * |
|
| 110 | - * @return void |
|
| 111 | - */ |
|
| 112 | - public function redirect() { |
|
| 113 | - if ( ! is_user_logged_in() || ! function_exists( 'wc_get_page_id' ) || is_home() ) { |
|
| 114 | - return; |
|
| 115 | - } |
|
| 116 | - if ( lsx_health_plan_user_has_purchase() && ( is_page( wc_get_page_id( 'cart' ) ) || is_page( wc_get_page_id( 'checkout' ) ) ) ) { |
|
| 117 | - wp_redirect( get_permalink( wc_get_page_id( 'myaccount' ) ) ); |
|
| 118 | - die; |
|
| 119 | - } |
|
| 120 | - |
|
| 121 | - $product_id = \lsx_health_plan\functions\get_option( 'membership_product', false ); |
|
| 122 | - if ( false !== $product_id && is_single( $product_id ) ) { |
|
| 123 | - wp_redirect( home_url() ); |
|
| 124 | - wp_die(); |
|
| 125 | - } |
|
| 126 | - } |
|
| 63 | + } |
|
| 64 | + } |
|
| 65 | + |
|
| 66 | + /** |
|
| 67 | + * Return an instance of this class. |
|
| 68 | + * |
|
| 69 | + * @since 1.0.0 |
|
| 70 | + * |
|
| 71 | + * @return object \lsx_health_plan\classes\Frontend() A single instance of this class. |
|
| 72 | + */ |
|
| 73 | + public static function get_instance() { |
|
| 74 | + // If the single instance hasn't been set, set it now. |
|
| 75 | + if ( null === self::$instance ) { |
|
| 76 | + self::$instance = new self(); |
|
| 77 | + } |
|
| 78 | + return self::$instance; |
|
| 79 | + } |
|
| 80 | + |
|
| 81 | + /** |
|
| 82 | + * Loads the variable classes and the static classes. |
|
| 83 | + */ |
|
| 84 | + private function load_classes() { |
|
| 85 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-endpoints.php'; |
|
| 86 | + $this->endpoints = frontend\Endpoints::get_instance(); |
|
| 87 | + |
|
| 88 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-modals.php'; |
|
| 89 | + $this->modals = Modals::get_instance(); |
|
| 90 | + |
|
| 91 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-gallery.php'; |
|
| 92 | + $this->gallery = frontend\Gallery::get_instance(); |
|
| 93 | + |
|
| 94 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-plan-status.php'; |
|
| 95 | + $this->plan_status = frontend\Plan_Status::get_instance(); |
|
| 96 | + |
|
| 97 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-plan-query.php'; |
|
| 98 | + $this->plan_query = frontend\Plan_Query::get_instance(); |
|
| 99 | + |
|
| 100 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-general.php'; |
|
| 101 | + $this->general = frontend\General::get_instance(); |
|
| 102 | + |
|
| 103 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/frontend/class-template-redirects.php'; |
|
| 104 | + $this->template_redirects = frontend\Template_Redirects::get_instance(); |
|
| 105 | + } |
|
| 106 | + |
|
| 107 | + /** |
|
| 108 | + * Redirect the user from the cart or checkout page if they have purchased the product already. |
|
| 109 | + * |
|
| 110 | + * @return void |
|
| 111 | + */ |
|
| 112 | + public function redirect() { |
|
| 113 | + if ( ! is_user_logged_in() || ! function_exists( 'wc_get_page_id' ) || is_home() ) { |
|
| 114 | + return; |
|
| 115 | + } |
|
| 116 | + if ( lsx_health_plan_user_has_purchase() && ( is_page( wc_get_page_id( 'cart' ) ) || is_page( wc_get_page_id( 'checkout' ) ) ) ) { |
|
| 117 | + wp_redirect( get_permalink( wc_get_page_id( 'myaccount' ) ) ); |
|
| 118 | + die; |
|
| 119 | + } |
|
| 120 | + |
|
| 121 | + $product_id = \lsx_health_plan\functions\get_option( 'membership_product', false ); |
|
| 122 | + if ( false !== $product_id && is_single( $product_id ) ) { |
|
| 123 | + wp_redirect( home_url() ); |
|
| 124 | + wp_die(); |
|
| 125 | + } |
|
| 126 | + } |
|
| 127 | 127 | } |
@@ -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 | } |
@@ -10,375 +10,375 @@ |
||
| 10 | 10 | */ |
| 11 | 11 | class Workout { |
| 12 | 12 | |
| 13 | - /** |
|
| 14 | - * Holds class instance |
|
| 15 | - * |
|
| 16 | - * @since 1.0.0 |
|
| 17 | - * |
|
| 18 | - * @var object \lsx_health_plan\classes\Workout() |
|
| 19 | - */ |
|
| 20 | - protected static $instance = null; |
|
| 13 | + /** |
|
| 14 | + * Holds class instance |
|
| 15 | + * |
|
| 16 | + * @since 1.0.0 |
|
| 17 | + * |
|
| 18 | + * @var object \lsx_health_plan\classes\Workout() |
|
| 19 | + */ |
|
| 20 | + protected static $instance = null; |
|
| 21 | 21 | |
| 22 | - /** |
|
| 23 | - * Holds post_type slug used as an index |
|
| 24 | - * |
|
| 25 | - * @since 1.0.0 |
|
| 26 | - * |
|
| 27 | - * @var string |
|
| 28 | - */ |
|
| 29 | - public $slug = 'workout'; |
|
| 22 | + /** |
|
| 23 | + * Holds post_type slug used as an index |
|
| 24 | + * |
|
| 25 | + * @since 1.0.0 |
|
| 26 | + * |
|
| 27 | + * @var string |
|
| 28 | + */ |
|
| 29 | + public $slug = 'workout'; |
|
| 30 | 30 | |
| 31 | - /** |
|
| 32 | - * Constructor |
|
| 33 | - */ |
|
| 34 | - public function __construct() { |
|
| 35 | - add_action( 'init', array( $this, 'register_post_type' ) ); |
|
| 36 | - add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
| 37 | - add_action( 'init', array( $this, 'recipe_type_taxonomy_setup' ) ); |
|
| 38 | - add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 ); |
|
| 39 | - add_action( 'cmb2_admin_init', array( $this, 'featured_metabox' ), 5 ); |
|
| 40 | - add_action( 'cmb2_admin_init', array( $this, 'details_metaboxes' ) ); |
|
| 41 | - add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 ); |
|
| 31 | + /** |
|
| 32 | + * Constructor |
|
| 33 | + */ |
|
| 34 | + public function __construct() { |
|
| 35 | + add_action( 'init', array( $this, 'register_post_type' ) ); |
|
| 36 | + add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
| 37 | + add_action( 'init', array( $this, 'recipe_type_taxonomy_setup' ) ); |
|
| 38 | + add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 ); |
|
| 39 | + add_action( 'cmb2_admin_init', array( $this, 'featured_metabox' ), 5 ); |
|
| 40 | + add_action( 'cmb2_admin_init', array( $this, 'details_metaboxes' ) ); |
|
| 41 | + add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 ); |
|
| 42 | 42 | |
| 43 | - // Template Redirects. |
|
| 44 | - add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
| 45 | - } |
|
| 43 | + // Template Redirects. |
|
| 44 | + add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
| 45 | + } |
|
| 46 | 46 | |
| 47 | - /** |
|
| 48 | - * Return an instance of this class. |
|
| 49 | - * |
|
| 50 | - * @since 1.0.0 |
|
| 51 | - * |
|
| 52 | - * @return object \lsx_health_plan\classes\Workout() A single instance of this class. |
|
| 53 | - */ |
|
| 54 | - public static function get_instance() { |
|
| 55 | - // If the single instance hasn't been set, set it now. |
|
| 56 | - if ( null === self::$instance ) { |
|
| 57 | - self::$instance = new self(); |
|
| 58 | - } |
|
| 59 | - return self::$instance; |
|
| 60 | - } |
|
| 61 | - /** |
|
| 62 | - * Register the post type. |
|
| 63 | - */ |
|
| 64 | - public function register_post_type() { |
|
| 65 | - $labels = array( |
|
| 66 | - 'name' => esc_html__( 'Workouts', 'lsx-health-plan' ), |
|
| 67 | - 'singular_name' => esc_html__( 'Workout', 'lsx-health-plan' ), |
|
| 68 | - 'add_new' => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ), |
|
| 69 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 70 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
| 71 | - 'new_item' => esc_html__( 'New', 'lsx-health-plan' ), |
|
| 72 | - 'all_items' => esc_html__( 'All Workouts', 'lsx-health-plan' ), |
|
| 73 | - 'view_item' => esc_html__( 'View', 'lsx-health-plan' ), |
|
| 74 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
| 75 | - 'not_found' => esc_html__( 'None found', 'lsx-health-plan' ), |
|
| 76 | - 'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ), |
|
| 77 | - 'parent_item_colon' => '', |
|
| 78 | - 'menu_name' => esc_html__( 'Workouts', 'lsx-health-plan' ), |
|
| 79 | - ); |
|
| 80 | - $args = array( |
|
| 81 | - 'labels' => $labels, |
|
| 82 | - 'public' => true, |
|
| 83 | - 'publicly_queryable' => true, |
|
| 84 | - 'show_ui' => true, |
|
| 85 | - 'show_in_menu' => true, |
|
| 86 | - 'show_in_rest' => true, |
|
| 87 | - 'menu_icon' => 'dashicons-universal-access', |
|
| 88 | - 'query_var' => true, |
|
| 89 | - 'rewrite' => array( |
|
| 90 | - 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_workout', 'workout' ), |
|
| 91 | - ), |
|
| 92 | - 'capability_type' => 'page', |
|
| 93 | - 'has_archive' => \lsx_health_plan\functions\get_option( 'endpoint_workout_archive', 'workouts' ), |
|
| 94 | - 'hierarchical' => true, |
|
| 95 | - 'menu_position' => null, |
|
| 96 | - 'supports' => array( |
|
| 97 | - 'title', |
|
| 98 | - 'thumbnail', |
|
| 99 | - 'editor', |
|
| 100 | - 'excerpt', |
|
| 101 | - 'page-attributes', |
|
| 102 | - 'custom-fields', |
|
| 103 | - ), |
|
| 104 | - ); |
|
| 105 | - register_post_type( 'workout', $args ); |
|
| 106 | - } |
|
| 47 | + /** |
|
| 48 | + * Return an instance of this class. |
|
| 49 | + * |
|
| 50 | + * @since 1.0.0 |
|
| 51 | + * |
|
| 52 | + * @return object \lsx_health_plan\classes\Workout() A single instance of this class. |
|
| 53 | + */ |
|
| 54 | + public static function get_instance() { |
|
| 55 | + // If the single instance hasn't been set, set it now. |
|
| 56 | + if ( null === self::$instance ) { |
|
| 57 | + self::$instance = new self(); |
|
| 58 | + } |
|
| 59 | + return self::$instance; |
|
| 60 | + } |
|
| 61 | + /** |
|
| 62 | + * Register the post type. |
|
| 63 | + */ |
|
| 64 | + public function register_post_type() { |
|
| 65 | + $labels = array( |
|
| 66 | + 'name' => esc_html__( 'Workouts', 'lsx-health-plan' ), |
|
| 67 | + 'singular_name' => esc_html__( 'Workout', 'lsx-health-plan' ), |
|
| 68 | + 'add_new' => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ), |
|
| 69 | + 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 70 | + 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
| 71 | + 'new_item' => esc_html__( 'New', 'lsx-health-plan' ), |
|
| 72 | + 'all_items' => esc_html__( 'All Workouts', 'lsx-health-plan' ), |
|
| 73 | + 'view_item' => esc_html__( 'View', 'lsx-health-plan' ), |
|
| 74 | + 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
| 75 | + 'not_found' => esc_html__( 'None found', 'lsx-health-plan' ), |
|
| 76 | + 'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ), |
|
| 77 | + 'parent_item_colon' => '', |
|
| 78 | + 'menu_name' => esc_html__( 'Workouts', 'lsx-health-plan' ), |
|
| 79 | + ); |
|
| 80 | + $args = array( |
|
| 81 | + 'labels' => $labels, |
|
| 82 | + 'public' => true, |
|
| 83 | + 'publicly_queryable' => true, |
|
| 84 | + 'show_ui' => true, |
|
| 85 | + 'show_in_menu' => true, |
|
| 86 | + 'show_in_rest' => true, |
|
| 87 | + 'menu_icon' => 'dashicons-universal-access', |
|
| 88 | + 'query_var' => true, |
|
| 89 | + 'rewrite' => array( |
|
| 90 | + 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_workout', 'workout' ), |
|
| 91 | + ), |
|
| 92 | + 'capability_type' => 'page', |
|
| 93 | + 'has_archive' => \lsx_health_plan\functions\get_option( 'endpoint_workout_archive', 'workouts' ), |
|
| 94 | + 'hierarchical' => true, |
|
| 95 | + 'menu_position' => null, |
|
| 96 | + 'supports' => array( |
|
| 97 | + 'title', |
|
| 98 | + 'thumbnail', |
|
| 99 | + 'editor', |
|
| 100 | + 'excerpt', |
|
| 101 | + 'page-attributes', |
|
| 102 | + 'custom-fields', |
|
| 103 | + ), |
|
| 104 | + ); |
|
| 105 | + register_post_type( 'workout', $args ); |
|
| 106 | + } |
|
| 107 | 107 | |
| 108 | - /** |
|
| 109 | - * Register the Type taxonomy. |
|
| 110 | - */ |
|
| 111 | - public function recipe_type_taxonomy_setup() { |
|
| 112 | - $labels = array( |
|
| 113 | - 'name' => esc_html_x( 'Workout Type', 'taxonomy general name', 'lsx-health-plan' ), |
|
| 114 | - 'singular_name' => esc_html_x( 'Workout Type', 'taxonomy singular name', 'lsx-health-plan' ), |
|
| 115 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
| 116 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
| 117 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
| 118 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
| 119 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
| 120 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
| 121 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 122 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
| 123 | - 'menu_name' => esc_html__( 'Workout Types', 'lsx-health-plan' ), |
|
| 124 | - ); |
|
| 108 | + /** |
|
| 109 | + * Register the Type taxonomy. |
|
| 110 | + */ |
|
| 111 | + public function recipe_type_taxonomy_setup() { |
|
| 112 | + $labels = array( |
|
| 113 | + 'name' => esc_html_x( 'Workout Type', 'taxonomy general name', 'lsx-health-plan' ), |
|
| 114 | + 'singular_name' => esc_html_x( 'Workout Type', 'taxonomy singular name', 'lsx-health-plan' ), |
|
| 115 | + 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
| 116 | + 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
| 117 | + 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
| 118 | + 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
| 119 | + 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
| 120 | + 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
| 121 | + 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 122 | + 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
| 123 | + 'menu_name' => esc_html__( 'Workout Types', 'lsx-health-plan' ), |
|
| 124 | + ); |
|
| 125 | 125 | |
| 126 | - $args = array( |
|
| 127 | - 'hierarchical' => true, |
|
| 128 | - 'labels' => $labels, |
|
| 129 | - 'show_ui' => true, |
|
| 130 | - 'show_admin_column' => true, |
|
| 131 | - 'query_var' => true, |
|
| 132 | - 'rewrite' => array( |
|
| 133 | - 'slug' => 'workout-type', |
|
| 134 | - ), |
|
| 135 | - ); |
|
| 126 | + $args = array( |
|
| 127 | + 'hierarchical' => true, |
|
| 128 | + 'labels' => $labels, |
|
| 129 | + 'show_ui' => true, |
|
| 130 | + 'show_admin_column' => true, |
|
| 131 | + 'query_var' => true, |
|
| 132 | + 'rewrite' => array( |
|
| 133 | + 'slug' => 'workout-type', |
|
| 134 | + ), |
|
| 135 | + ); |
|
| 136 | 136 | |
| 137 | - register_taxonomy( 'workout-type', array( 'workout' ), $args ); |
|
| 138 | - } |
|
| 137 | + register_taxonomy( 'workout-type', array( 'workout' ), $args ); |
|
| 138 | + } |
|
| 139 | 139 | |
| 140 | - /** |
|
| 141 | - * Adds the post type to the different arrays. |
|
| 142 | - * |
|
| 143 | - * @param array $post_types |
|
| 144 | - * @return array |
|
| 145 | - */ |
|
| 146 | - public function enable_post_type( $post_types = array() ) { |
|
| 147 | - $post_types[] = $this->slug; |
|
| 148 | - return $post_types; |
|
| 149 | - } |
|
| 140 | + /** |
|
| 141 | + * Adds the post type to the different arrays. |
|
| 142 | + * |
|
| 143 | + * @param array $post_types |
|
| 144 | + * @return array |
|
| 145 | + */ |
|
| 146 | + public function enable_post_type( $post_types = array() ) { |
|
| 147 | + $post_types[] = $this->slug; |
|
| 148 | + return $post_types; |
|
| 149 | + } |
|
| 150 | 150 | |
| 151 | - /** |
|
| 152 | - * Enables the Bi Directional relationships |
|
| 153 | - * |
|
| 154 | - * @param array $connections |
|
| 155 | - * @return void |
|
| 156 | - */ |
|
| 157 | - public function enable_connections( $connections = array() ) { |
|
| 158 | - $connections['workout']['connected_plans'] = 'connected_workouts'; |
|
| 159 | - $connections['plan']['connected_workouts'] = 'connected_plans'; |
|
| 151 | + /** |
|
| 152 | + * Enables the Bi Directional relationships |
|
| 153 | + * |
|
| 154 | + * @param array $connections |
|
| 155 | + * @return void |
|
| 156 | + */ |
|
| 157 | + public function enable_connections( $connections = array() ) { |
|
| 158 | + $connections['workout']['connected_plans'] = 'connected_workouts'; |
|
| 159 | + $connections['plan']['connected_workouts'] = 'connected_plans'; |
|
| 160 | 160 | |
| 161 | - $connections['workout']['connected_videos'] = 'connected_workouts'; |
|
| 162 | - $connections['video']['connected_workouts'] = 'connected_videos'; |
|
| 161 | + $connections['workout']['connected_videos'] = 'connected_workouts'; |
|
| 162 | + $connections['video']['connected_workouts'] = 'connected_videos'; |
|
| 163 | 163 | |
| 164 | - $connections['workout']['connected_posts'] = 'connected_workouts'; |
|
| 165 | - $connections['post']['connected_workouts'] = 'connected_posts'; |
|
| 166 | - return $connections; |
|
| 167 | - } |
|
| 164 | + $connections['workout']['connected_posts'] = 'connected_workouts'; |
|
| 165 | + $connections['post']['connected_workouts'] = 'connected_posts'; |
|
| 166 | + return $connections; |
|
| 167 | + } |
|
| 168 | 168 | |
| 169 | - /** |
|
| 170 | - * Remove the "Archives:" from the post type workouts. |
|
| 171 | - * |
|
| 172 | - * @param string $title the term title. |
|
| 173 | - * @return string |
|
| 174 | - */ |
|
| 175 | - public function get_the_archive_title( $title ) { |
|
| 176 | - if ( is_post_type_archive( 'workout' ) ) { |
|
| 177 | - $title = __( 'Workouts', 'lsx-health-plan' ); |
|
| 178 | - } |
|
| 179 | - return $title; |
|
| 180 | - } |
|
| 169 | + /** |
|
| 170 | + * Remove the "Archives:" from the post type workouts. |
|
| 171 | + * |
|
| 172 | + * @param string $title the term title. |
|
| 173 | + * @return string |
|
| 174 | + */ |
|
| 175 | + public function get_the_archive_title( $title ) { |
|
| 176 | + if ( is_post_type_archive( 'workout' ) ) { |
|
| 177 | + $title = __( 'Workouts', 'lsx-health-plan' ); |
|
| 178 | + } |
|
| 179 | + return $title; |
|
| 180 | + } |
|
| 181 | 181 | |
| 182 | - /** |
|
| 183 | - * Define the metabox and field configurations. |
|
| 184 | - */ |
|
| 185 | - public function featured_metabox() { |
|
| 186 | - $cmb = new_cmb2_box( |
|
| 187 | - array( |
|
| 188 | - 'id' => $this->slug . '_featured_metabox_workout', |
|
| 189 | - 'title' => __( 'Featured Workout', 'lsx-health-plan' ), |
|
| 190 | - 'object_types' => array( $this->slug ), // Post type |
|
| 191 | - 'context' => 'side', |
|
| 192 | - 'priority' => 'high', |
|
| 193 | - 'show_names' => true, |
|
| 194 | - ) |
|
| 195 | - ); |
|
| 196 | - $cmb->add_field( |
|
| 197 | - array( |
|
| 198 | - 'name' => __( 'Featured Workout', 'lsx-health-plan' ), |
|
| 199 | - 'desc' => __( 'Enable a featured workout' ), |
|
| 200 | - 'id' => $this->slug . '_featured_workout', |
|
| 201 | - 'type' => 'checkbox', |
|
| 202 | - 'show_on_cb' => 'cmb2_hide_if_no_cats', |
|
| 203 | - ) |
|
| 204 | - ); |
|
| 205 | - } |
|
| 182 | + /** |
|
| 183 | + * Define the metabox and field configurations. |
|
| 184 | + */ |
|
| 185 | + public function featured_metabox() { |
|
| 186 | + $cmb = new_cmb2_box( |
|
| 187 | + array( |
|
| 188 | + 'id' => $this->slug . '_featured_metabox_workout', |
|
| 189 | + 'title' => __( 'Featured Workout', 'lsx-health-plan' ), |
|
| 190 | + 'object_types' => array( $this->slug ), // Post type |
|
| 191 | + 'context' => 'side', |
|
| 192 | + 'priority' => 'high', |
|
| 193 | + 'show_names' => true, |
|
| 194 | + ) |
|
| 195 | + ); |
|
| 196 | + $cmb->add_field( |
|
| 197 | + array( |
|
| 198 | + 'name' => __( 'Featured Workout', 'lsx-health-plan' ), |
|
| 199 | + 'desc' => __( 'Enable a featured workout' ), |
|
| 200 | + 'id' => $this->slug . '_featured_workout', |
|
| 201 | + 'type' => 'checkbox', |
|
| 202 | + 'show_on_cb' => 'cmb2_hide_if_no_cats', |
|
| 203 | + ) |
|
| 204 | + ); |
|
| 205 | + } |
|
| 206 | 206 | |
| 207 | - /** |
|
| 208 | - * Define the metabox and field configurations. |
|
| 209 | - */ |
|
| 210 | - public function details_metaboxes() { |
|
| 207 | + /** |
|
| 208 | + * Define the metabox and field configurations. |
|
| 209 | + */ |
|
| 210 | + public function details_metaboxes() { |
|
| 211 | 211 | |
| 212 | - $cmb = new_cmb2_box( array( |
|
| 213 | - 'id' => $this->slug . '_details_metabox', |
|
| 214 | - 'title' => __( 'Workout Details', 'lsx-health-plan' ), |
|
| 215 | - 'object_types' => array( $this->slug ), // Post type |
|
| 216 | - 'context' => 'normal', |
|
| 217 | - 'priority' => 'high', |
|
| 218 | - 'show_names' => true, |
|
| 219 | - ) ); |
|
| 212 | + $cmb = new_cmb2_box( array( |
|
| 213 | + 'id' => $this->slug . '_details_metabox', |
|
| 214 | + 'title' => __( 'Workout Details', 'lsx-health-plan' ), |
|
| 215 | + 'object_types' => array( $this->slug ), // Post type |
|
| 216 | + 'context' => 'normal', |
|
| 217 | + 'priority' => 'high', |
|
| 218 | + 'show_names' => true, |
|
| 219 | + ) ); |
|
| 220 | 220 | |
| 221 | - $cmb->add_field( array( |
|
| 222 | - 'name' => __( 'Workout Short Description', 'lsx-health-plan' ), |
|
| 223 | - 'id' => $this->slug . '_short_description', |
|
| 224 | - 'type' => 'textarea_small', |
|
| 225 | - 'desc' => __( 'Add a small description for this workout (optional)', 'lsx-health-plan' ), |
|
| 226 | - ) ); |
|
| 221 | + $cmb->add_field( array( |
|
| 222 | + 'name' => __( 'Workout Short Description', 'lsx-health-plan' ), |
|
| 223 | + 'id' => $this->slug . '_short_description', |
|
| 224 | + 'type' => 'textarea_small', |
|
| 225 | + 'desc' => __( 'Add a small description for this workout (optional)', 'lsx-health-plan' ), |
|
| 226 | + ) ); |
|
| 227 | 227 | |
| 228 | - $workout_sections = apply_filters( 'lsx_health_plan_workout_sections_amount', 6 ); |
|
| 229 | - if ( false !== $workout_sections && null !== $workout_sections ) { |
|
| 230 | - $i = 1; |
|
| 231 | - while ( $i <= $workout_sections ) { |
|
| 228 | + $workout_sections = apply_filters( 'lsx_health_plan_workout_sections_amount', 6 ); |
|
| 229 | + if ( false !== $workout_sections && null !== $workout_sections ) { |
|
| 230 | + $i = 1; |
|
| 231 | + while ( $i <= $workout_sections ) { |
|
| 232 | 232 | |
| 233 | - $cmb_group = new_cmb2_box( array( |
|
| 234 | - 'id' => $this->slug . '_section_' . $i . '_metabox', |
|
| 235 | - 'title' => esc_html__( 'Exercise Group ', 'lsx-health-plan' ) . $i, |
|
| 236 | - 'object_types' => array( $this->slug ), |
|
| 237 | - ) ); |
|
| 233 | + $cmb_group = new_cmb2_box( array( |
|
| 234 | + 'id' => $this->slug . '_section_' . $i . '_metabox', |
|
| 235 | + 'title' => esc_html__( 'Exercise Group ', 'lsx-health-plan' ) . $i, |
|
| 236 | + 'object_types' => array( $this->slug ), |
|
| 237 | + ) ); |
|
| 238 | 238 | |
| 239 | - $cmb_group->add_field( array( |
|
| 240 | - 'name' => __( 'Title', 'lsx-health-plan' ), |
|
| 241 | - 'id' => $this->slug . '_section_' . $i . '_title', |
|
| 242 | - 'type' => 'text', |
|
| 243 | - 'show_on_cb' => 'cmb2_hide_if_no_cats', |
|
| 244 | - ) ); |
|
| 239 | + $cmb_group->add_field( array( |
|
| 240 | + 'name' => __( 'Title', 'lsx-health-plan' ), |
|
| 241 | + 'id' => $this->slug . '_section_' . $i . '_title', |
|
| 242 | + 'type' => 'text', |
|
| 243 | + 'show_on_cb' => 'cmb2_hide_if_no_cats', |
|
| 244 | + ) ); |
|
| 245 | 245 | |
| 246 | - $cmb_group->add_field( |
|
| 247 | - array( |
|
| 248 | - 'name' => __( 'Description', 'lsx-health-plan' ), |
|
| 249 | - 'id' => $this->slug . '_section_' . $i . '_description', |
|
| 250 | - 'type' => 'wysiwyg', |
|
| 251 | - 'show_on_cb' => 'cmb2_hide_if_no_cats', |
|
| 252 | - 'options' => array( |
|
| 253 | - 'textarea_rows' => 5, |
|
| 254 | - ), |
|
| 255 | - ) |
|
| 256 | - ); |
|
| 246 | + $cmb_group->add_field( |
|
| 247 | + array( |
|
| 248 | + 'name' => __( 'Description', 'lsx-health-plan' ), |
|
| 249 | + 'id' => $this->slug . '_section_' . $i . '_description', |
|
| 250 | + 'type' => 'wysiwyg', |
|
| 251 | + 'show_on_cb' => 'cmb2_hide_if_no_cats', |
|
| 252 | + 'options' => array( |
|
| 253 | + 'textarea_rows' => 5, |
|
| 254 | + ), |
|
| 255 | + ) |
|
| 256 | + ); |
|
| 257 | 257 | |
| 258 | - /** |
|
| 259 | - * Repeatable Field Groups |
|
| 260 | - */ |
|
| 261 | - // $group_field_id is the field id string, so in this case: $prefix . 'demo' |
|
| 262 | - $group_field_id = $cmb_group->add_field( |
|
| 263 | - array( |
|
| 264 | - 'id' => $this->slug . '_section_' . $i, |
|
| 265 | - 'type' => 'group', |
|
| 266 | - 'options' => array( |
|
| 267 | - 'group_title' => esc_html__( 'Exercise {#}', 'lsx-health-plan' ), // {#} gets replaced by row number |
|
| 268 | - 'add_button' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 269 | - 'remove_button' => esc_html__( 'Delete', 'lsx-health-plan' ), |
|
| 270 | - 'sortable' => true, |
|
| 271 | - 'closed' => true, // true to have the groups closed by default |
|
| 272 | - ), |
|
| 273 | - ) |
|
| 274 | - ); |
|
| 258 | + /** |
|
| 259 | + * Repeatable Field Groups |
|
| 260 | + */ |
|
| 261 | + // $group_field_id is the field id string, so in this case: $prefix . 'demo' |
|
| 262 | + $group_field_id = $cmb_group->add_field( |
|
| 263 | + array( |
|
| 264 | + 'id' => $this->slug . '_section_' . $i, |
|
| 265 | + 'type' => 'group', |
|
| 266 | + 'options' => array( |
|
| 267 | + 'group_title' => esc_html__( 'Exercise {#}', 'lsx-health-plan' ), // {#} gets replaced by row number |
|
| 268 | + 'add_button' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 269 | + 'remove_button' => esc_html__( 'Delete', 'lsx-health-plan' ), |
|
| 270 | + 'sortable' => true, |
|
| 271 | + 'closed' => true, // true to have the groups closed by default |
|
| 272 | + ), |
|
| 273 | + ) |
|
| 274 | + ); |
|
| 275 | 275 | |
| 276 | - if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
| 277 | - $cmb_group->add_group_field( |
|
| 278 | - $group_field_id, |
|
| 279 | - array( |
|
| 280 | - 'name' => __( 'Exercise related to this workout', 'lsx-health-plan' ), |
|
| 281 | - 'id' => 'connected_exercises', |
|
| 282 | - 'type' => 'post_search_ajax', |
|
| 283 | - // Optional : |
|
| 284 | - 'limit' => 1, // Limit selection to X items only (default 1) |
|
| 285 | - 'sortable' => true, // Allow selected items to be sortable (default false) |
|
| 286 | - 'query_args' => array( |
|
| 287 | - 'post_type' => array( 'exercise' ), |
|
| 288 | - 'post_status' => array( 'publish' ), |
|
| 289 | - 'posts_per_page' => -1, |
|
| 290 | - ), |
|
| 291 | - ) |
|
| 292 | - ); |
|
| 293 | - } else { |
|
| 294 | - $cmb_group->add_group_field( |
|
| 295 | - $group_field_id, |
|
| 296 | - array( |
|
| 297 | - 'name' => __( 'Video related to this workout', 'lsx-health-plan' ), |
|
| 298 | - 'id' => 'connected_videos', |
|
| 299 | - 'type' => 'post_search_ajax', |
|
| 300 | - // Optional : |
|
| 301 | - 'limit' => 1, // Limit selection to X items only (default 1) |
|
| 302 | - 'sortable' => true, // Allow selected items to be sortable (default false) |
|
| 303 | - 'query_args' => array( |
|
| 304 | - 'post_type' => array( 'video' ), |
|
| 305 | - 'post_status' => array( 'publish' ), |
|
| 306 | - 'posts_per_page' => -1, |
|
| 307 | - ), |
|
| 308 | - ) |
|
| 309 | - ); |
|
| 310 | - $cmb_group->add_group_field( |
|
| 311 | - $group_field_id, |
|
| 312 | - array( |
|
| 313 | - 'name' => esc_html__( 'Workout Name', 'lsx-health-plan' ), |
|
| 314 | - 'id' => 'name', |
|
| 315 | - 'type' => 'text', |
|
| 316 | - // 'repeatable' => true, // Repeatable fields are supported w/in repeatable groups (for most types) |
|
| 317 | - ) |
|
| 318 | - ); |
|
| 276 | + if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
| 277 | + $cmb_group->add_group_field( |
|
| 278 | + $group_field_id, |
|
| 279 | + array( |
|
| 280 | + 'name' => __( 'Exercise related to this workout', 'lsx-health-plan' ), |
|
| 281 | + 'id' => 'connected_exercises', |
|
| 282 | + 'type' => 'post_search_ajax', |
|
| 283 | + // Optional : |
|
| 284 | + 'limit' => 1, // Limit selection to X items only (default 1) |
|
| 285 | + 'sortable' => true, // Allow selected items to be sortable (default false) |
|
| 286 | + 'query_args' => array( |
|
| 287 | + 'post_type' => array( 'exercise' ), |
|
| 288 | + 'post_status' => array( 'publish' ), |
|
| 289 | + 'posts_per_page' => -1, |
|
| 290 | + ), |
|
| 291 | + ) |
|
| 292 | + ); |
|
| 293 | + } else { |
|
| 294 | + $cmb_group->add_group_field( |
|
| 295 | + $group_field_id, |
|
| 296 | + array( |
|
| 297 | + 'name' => __( 'Video related to this workout', 'lsx-health-plan' ), |
|
| 298 | + 'id' => 'connected_videos', |
|
| 299 | + 'type' => 'post_search_ajax', |
|
| 300 | + // Optional : |
|
| 301 | + 'limit' => 1, // Limit selection to X items only (default 1) |
|
| 302 | + 'sortable' => true, // Allow selected items to be sortable (default false) |
|
| 303 | + 'query_args' => array( |
|
| 304 | + 'post_type' => array( 'video' ), |
|
| 305 | + 'post_status' => array( 'publish' ), |
|
| 306 | + 'posts_per_page' => -1, |
|
| 307 | + ), |
|
| 308 | + ) |
|
| 309 | + ); |
|
| 310 | + $cmb_group->add_group_field( |
|
| 311 | + $group_field_id, |
|
| 312 | + array( |
|
| 313 | + 'name' => esc_html__( 'Workout Name', 'lsx-health-plan' ), |
|
| 314 | + 'id' => 'name', |
|
| 315 | + 'type' => 'text', |
|
| 316 | + // 'repeatable' => true, // Repeatable fields are supported w/in repeatable groups (for most types) |
|
| 317 | + ) |
|
| 318 | + ); |
|
| 319 | 319 | |
| 320 | - $cmb_group->add_group_field( |
|
| 321 | - $group_field_id, |
|
| 322 | - array( |
|
| 323 | - 'name' => __( 'Description', 'lsx-health-plan' ), |
|
| 324 | - 'id' => 'description', |
|
| 325 | - 'type' => 'wysiwyg', |
|
| 326 | - 'options' => array( |
|
| 327 | - 'textarea_rows' => 2, |
|
| 328 | - ), |
|
| 329 | - ) |
|
| 330 | - ); |
|
| 331 | - } |
|
| 320 | + $cmb_group->add_group_field( |
|
| 321 | + $group_field_id, |
|
| 322 | + array( |
|
| 323 | + 'name' => __( 'Description', 'lsx-health-plan' ), |
|
| 324 | + 'id' => 'description', |
|
| 325 | + 'type' => 'wysiwyg', |
|
| 326 | + 'options' => array( |
|
| 327 | + 'textarea_rows' => 2, |
|
| 328 | + ), |
|
| 329 | + ) |
|
| 330 | + ); |
|
| 331 | + } |
|
| 332 | 332 | |
| 333 | - $cmb_group->add_group_field( |
|
| 334 | - $group_field_id, |
|
| 335 | - array( |
|
| 336 | - 'name' => esc_html__( 'Exercise title (Optional)', 'lsx-health-plan' ), |
|
| 337 | - 'id' => 'alt_title', |
|
| 338 | - 'type' => 'text', |
|
| 339 | - ) |
|
| 340 | - ); |
|
| 341 | - $cmb_group->add_group_field( |
|
| 342 | - $group_field_id, |
|
| 343 | - array( |
|
| 344 | - 'name' => esc_html__( 'Exercise Description (Optional)', 'lsx-health-plan' ), |
|
| 345 | - 'id' => 'alt_description', |
|
| 346 | - 'type' => 'textarea_small', |
|
| 347 | - ) |
|
| 348 | - ); |
|
| 349 | - $cmb_group->add_group_field( |
|
| 350 | - $group_field_id, |
|
| 351 | - array( |
|
| 352 | - 'name' => esc_html__( 'Reps / Time / Distance', 'lsx-health-plan' ), |
|
| 353 | - 'id' => 'reps', |
|
| 354 | - 'type' => 'text', |
|
| 355 | - // 'repeatable' => true, // Repeatable fields are supported w/in repeatable groups (for most types) |
|
| 356 | - ) |
|
| 357 | - ); |
|
| 358 | - $cmb_group->add_group_field( |
|
| 359 | - $group_field_id, |
|
| 360 | - array( |
|
| 361 | - 'name' => __( 'Exercise Image (Optional)', 'lsx-health-plan' ), |
|
| 362 | - 'id' => 'exercise_alt_thumbnail', |
|
| 363 | - 'type' => 'file', |
|
| 364 | - 'text' => array( |
|
| 365 | - 'add_upload_file_text' => __( 'Add File', 'lsx-health-plan' ), |
|
| 366 | - ), |
|
| 367 | - 'desc' => __( 'Upload an image 300px x 300px in size.', 'lsx-health-plan' ), |
|
| 368 | - 'query_args' => array( |
|
| 369 | - 'type' => array( |
|
| 370 | - 'image/gif', |
|
| 371 | - 'image/jpeg', |
|
| 372 | - 'image/png', |
|
| 373 | - ), |
|
| 374 | - ), |
|
| 375 | - 'preview_size' => 'thumbnail', |
|
| 376 | - 'classes' => 'lsx-field-col lsx-field-add-field lsx-field-col-25', |
|
| 377 | - ) |
|
| 378 | - ); |
|
| 333 | + $cmb_group->add_group_field( |
|
| 334 | + $group_field_id, |
|
| 335 | + array( |
|
| 336 | + 'name' => esc_html__( 'Exercise title (Optional)', 'lsx-health-plan' ), |
|
| 337 | + 'id' => 'alt_title', |
|
| 338 | + 'type' => 'text', |
|
| 339 | + ) |
|
| 340 | + ); |
|
| 341 | + $cmb_group->add_group_field( |
|
| 342 | + $group_field_id, |
|
| 343 | + array( |
|
| 344 | + 'name' => esc_html__( 'Exercise Description (Optional)', 'lsx-health-plan' ), |
|
| 345 | + 'id' => 'alt_description', |
|
| 346 | + 'type' => 'textarea_small', |
|
| 347 | + ) |
|
| 348 | + ); |
|
| 349 | + $cmb_group->add_group_field( |
|
| 350 | + $group_field_id, |
|
| 351 | + array( |
|
| 352 | + 'name' => esc_html__( 'Reps / Time / Distance', 'lsx-health-plan' ), |
|
| 353 | + 'id' => 'reps', |
|
| 354 | + 'type' => 'text', |
|
| 355 | + // 'repeatable' => true, // Repeatable fields are supported w/in repeatable groups (for most types) |
|
| 356 | + ) |
|
| 357 | + ); |
|
| 358 | + $cmb_group->add_group_field( |
|
| 359 | + $group_field_id, |
|
| 360 | + array( |
|
| 361 | + 'name' => __( 'Exercise Image (Optional)', 'lsx-health-plan' ), |
|
| 362 | + 'id' => 'exercise_alt_thumbnail', |
|
| 363 | + 'type' => 'file', |
|
| 364 | + 'text' => array( |
|
| 365 | + 'add_upload_file_text' => __( 'Add File', 'lsx-health-plan' ), |
|
| 366 | + ), |
|
| 367 | + 'desc' => __( 'Upload an image 300px x 300px in size.', 'lsx-health-plan' ), |
|
| 368 | + 'query_args' => array( |
|
| 369 | + 'type' => array( |
|
| 370 | + 'image/gif', |
|
| 371 | + 'image/jpeg', |
|
| 372 | + 'image/png', |
|
| 373 | + ), |
|
| 374 | + ), |
|
| 375 | + 'preview_size' => 'thumbnail', |
|
| 376 | + 'classes' => 'lsx-field-col lsx-field-add-field lsx-field-col-25', |
|
| 377 | + ) |
|
| 378 | + ); |
|
| 379 | 379 | |
| 380 | - $i++; |
|
| 381 | - }; |
|
| 382 | - } |
|
| 383 | - } |
|
| 380 | + $i++; |
|
| 381 | + }; |
|
| 382 | + } |
|
| 383 | + } |
|
| 384 | 384 | } |
@@ -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 | } |