@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | */ |
| 28 | 28 | public function __construct() { |
| 29 | 29 | $this->load_classes(); |
| 30 | - add_filter( 'facetwp_facet_sources', array( $this, 'register_sources' ) ); |
|
| 30 | + add_filter('facetwp_facet_sources', array($this, 'register_sources')); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | /** |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | */ |
| 40 | 40 | public static function get_instance() { |
| 41 | 41 | // If the single instance hasn't been set, set it now. |
| 42 | - if ( null === self::$instance ) { |
|
| 42 | + if (null === self::$instance) { |
|
| 43 | 43 | self::$instance = new self(); |
| 44 | 44 | } |
| 45 | 45 | return self::$instance; |
@@ -59,9 +59,9 @@ discard block |
||
| 59 | 59 | * @param array $sources |
| 60 | 60 | * @return array |
| 61 | 61 | */ |
| 62 | - public function register_sources( $sources ) { |
|
| 62 | + public function register_sources($sources) { |
|
| 63 | 63 | $sources['lsx_health_plan'] = array( |
| 64 | - 'label' => __( 'LSX Health Plan', 'lsx-health-plan' ), |
|
| 64 | + 'label' => __('LSX Health Plan', 'lsx-health-plan'), |
|
| 65 | 65 | 'choices' => array( |
| 66 | 66 | 'lsx_hp/connected_plans' => 'Connected Plans', |
| 67 | 67 | ), |
@@ -8,65 +8,65 @@ |
||
| 8 | 8 | */ |
| 9 | 9 | class FacetWP { |
| 10 | 10 | |
| 11 | - /** |
|
| 12 | - * Holds class instance |
|
| 13 | - * |
|
| 14 | - * @var object \lsx_health_plan\classes\FacetWP() |
|
| 15 | - */ |
|
| 16 | - protected static $instance = null; |
|
| 11 | + /** |
|
| 12 | + * Holds class instance |
|
| 13 | + * |
|
| 14 | + * @var object \lsx_health_plan\classes\FacetWP() |
|
| 15 | + */ |
|
| 16 | + protected static $instance = null; |
|
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * Holds the indexer filters for the workouts. |
|
| 20 | - * |
|
| 21 | - * @var object \lsx_health_plan\classes\integrations\FacetWP\Workouts_Indexer() |
|
| 22 | - */ |
|
| 23 | - public $workouts = null; |
|
| 18 | + /** |
|
| 19 | + * Holds the indexer filters for the workouts. |
|
| 20 | + * |
|
| 21 | + * @var object \lsx_health_plan\classes\integrations\FacetWP\Workouts_Indexer() |
|
| 22 | + */ |
|
| 23 | + public $workouts = null; |
|
| 24 | 24 | |
| 25 | - /** |
|
| 26 | - * Constructor |
|
| 27 | - */ |
|
| 28 | - public function __construct() { |
|
| 29 | - $this->load_classes(); |
|
| 30 | - add_filter( 'facetwp_facet_sources', array( $this, 'register_sources' ) ); |
|
| 31 | - } |
|
| 25 | + /** |
|
| 26 | + * Constructor |
|
| 27 | + */ |
|
| 28 | + public function __construct() { |
|
| 29 | + $this->load_classes(); |
|
| 30 | + add_filter( 'facetwp_facet_sources', array( $this, 'register_sources' ) ); |
|
| 31 | + } |
|
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * Return an instance of this class. |
|
| 35 | - * |
|
| 36 | - * @since 1.0.0 |
|
| 37 | - * |
|
| 38 | - * @return object \lsx_health_plan\classes\FacetWP() A single instance of this class. |
|
| 39 | - */ |
|
| 40 | - public static function get_instance() { |
|
| 41 | - // If the single instance hasn't been set, set it now. |
|
| 42 | - if ( null === self::$instance ) { |
|
| 43 | - self::$instance = new self(); |
|
| 44 | - } |
|
| 45 | - return self::$instance; |
|
| 46 | - } |
|
| 33 | + /** |
|
| 34 | + * Return an instance of this class. |
|
| 35 | + * |
|
| 36 | + * @since 1.0.0 |
|
| 37 | + * |
|
| 38 | + * @return object \lsx_health_plan\classes\FacetWP() A single instance of this class. |
|
| 39 | + */ |
|
| 40 | + public static function get_instance() { |
|
| 41 | + // If the single instance hasn't been set, set it now. |
|
| 42 | + if ( null === self::$instance ) { |
|
| 43 | + self::$instance = new self(); |
|
| 44 | + } |
|
| 45 | + return self::$instance; |
|
| 46 | + } |
|
| 47 | 47 | |
| 48 | - /** |
|
| 49 | - * Loads the variable classes and the static classes. |
|
| 50 | - */ |
|
| 51 | - private function load_classes() { |
|
| 52 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/integrations/facetwp/class-connected-plans.php'; |
|
| 53 | - $this->connected_plans = integrations\facetwp\Connected_Plans::get_instance(); |
|
| 54 | - } |
|
| 48 | + /** |
|
| 49 | + * Loads the variable classes and the static classes. |
|
| 50 | + */ |
|
| 51 | + private function load_classes() { |
|
| 52 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/integrations/facetwp/class-connected-plans.php'; |
|
| 53 | + $this->connected_plans = integrations\facetwp\Connected_Plans::get_instance(); |
|
| 54 | + } |
|
| 55 | 55 | |
| 56 | - /** |
|
| 57 | - * Registers the custom sources. |
|
| 58 | - * |
|
| 59 | - * @param array $sources |
|
| 60 | - * @return array |
|
| 61 | - */ |
|
| 62 | - public function register_sources( $sources ) { |
|
| 63 | - $sources['lsx_health_plan'] = array( |
|
| 64 | - 'label' => __( 'LSX Health Plan', 'lsx-health-plan' ), |
|
| 65 | - 'choices' => array( |
|
| 66 | - 'lsx_hp/connected_plans' => 'Connected Plans', |
|
| 67 | - ), |
|
| 68 | - ); |
|
| 56 | + /** |
|
| 57 | + * Registers the custom sources. |
|
| 58 | + * |
|
| 59 | + * @param array $sources |
|
| 60 | + * @return array |
|
| 61 | + */ |
|
| 62 | + public function register_sources( $sources ) { |
|
| 63 | + $sources['lsx_health_plan'] = array( |
|
| 64 | + 'label' => __( 'LSX Health Plan', 'lsx-health-plan' ), |
|
| 65 | + 'choices' => array( |
|
| 66 | + 'lsx_hp/connected_plans' => 'Connected Plans', |
|
| 67 | + ), |
|
| 68 | + ); |
|
| 69 | 69 | |
| 70 | - return $sources; |
|
| 71 | - } |
|
| 70 | + return $sources; |
|
| 71 | + } |
|
| 72 | 72 | } |
@@ -67,7 +67,7 @@ |
||
| 67 | 67 | */ |
| 68 | 68 | public static function get_instance() { |
| 69 | 69 | // If the single instance hasn't been set, set it now. |
| 70 | - if ( null === self::$instance ) { |
|
| 70 | + if (null === self::$instance) { |
|
| 71 | 71 | self::$instance = new self(); |
| 72 | 72 | } |
| 73 | 73 | return self::$instance; |
@@ -8,95 +8,95 @@ |
||
| 8 | 8 | */ |
| 9 | 9 | class Woocommerce { |
| 10 | 10 | |
| 11 | - /** |
|
| 12 | - * Holds class instance |
|
| 13 | - * |
|
| 14 | - * @var object \lsx_health_plan\classes\Woocommerce() |
|
| 15 | - */ |
|
| 16 | - protected static $instance = null; |
|
| 11 | + /** |
|
| 12 | + * Holds class instance |
|
| 13 | + * |
|
| 14 | + * @var object \lsx_health_plan\classes\Woocommerce() |
|
| 15 | + */ |
|
| 16 | + protected static $instance = null; |
|
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * Holds class Account functionality |
|
| 20 | - * |
|
| 21 | - * @var object \lsx_health_plan\classes\integrations\woocommerce\Admin() |
|
| 22 | - */ |
|
| 23 | - public $admin = null; |
|
| 18 | + /** |
|
| 19 | + * Holds class Account functionality |
|
| 20 | + * |
|
| 21 | + * @var object \lsx_health_plan\classes\integrations\woocommerce\Admin() |
|
| 22 | + */ |
|
| 23 | + public $admin = null; |
|
| 24 | 24 | |
| 25 | - /** |
|
| 26 | - * Holds class Account functionality |
|
| 27 | - * |
|
| 28 | - * @var object \lsx_health_plan\classes\integrations\woocommerce\Account() |
|
| 29 | - */ |
|
| 30 | - public $account = null; |
|
| 25 | + /** |
|
| 26 | + * Holds class Account functionality |
|
| 27 | + * |
|
| 28 | + * @var object \lsx_health_plan\classes\integrations\woocommerce\Account() |
|
| 29 | + */ |
|
| 30 | + public $account = null; |
|
| 31 | 31 | |
| 32 | - /** |
|
| 33 | - * Holds class Plans functionality |
|
| 34 | - * |
|
| 35 | - * @var object \lsx_health_plan\classes\integrations\woocommerce\Plans() |
|
| 36 | - */ |
|
| 37 | - public $plans = null; |
|
| 32 | + /** |
|
| 33 | + * Holds class Plans functionality |
|
| 34 | + * |
|
| 35 | + * @var object \lsx_health_plan\classes\integrations\woocommerce\Plans() |
|
| 36 | + */ |
|
| 37 | + public $plans = null; |
|
| 38 | 38 | |
| 39 | - /** |
|
| 40 | - * Holds class Login functionality |
|
| 41 | - * |
|
| 42 | - * @var object \lsx_health_plan\classes\integrations\woocommerce\Login() |
|
| 43 | - */ |
|
| 44 | - public $login = null; |
|
| 39 | + /** |
|
| 40 | + * Holds class Login functionality |
|
| 41 | + * |
|
| 42 | + * @var object \lsx_health_plan\classes\integrations\woocommerce\Login() |
|
| 43 | + */ |
|
| 44 | + public $login = null; |
|
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * Holds class Checkout functionality |
|
| 48 | - * |
|
| 49 | - * @var object \lsx_health_plan\classes\integrations\woocommerce\Checkout() |
|
| 50 | - */ |
|
| 51 | - public $checkout = null; |
|
| 46 | + /** |
|
| 47 | + * Holds class Checkout functionality |
|
| 48 | + * |
|
| 49 | + * @var object \lsx_health_plan\classes\integrations\woocommerce\Checkout() |
|
| 50 | + */ |
|
| 51 | + public $checkout = null; |
|
| 52 | 52 | |
| 53 | - /** |
|
| 54 | - * Constructor |
|
| 55 | - */ |
|
| 56 | - public function __construct() { |
|
| 57 | - $this->load_classes(); |
|
| 58 | - $this->load_includes(); |
|
| 59 | - } |
|
| 53 | + /** |
|
| 54 | + * Constructor |
|
| 55 | + */ |
|
| 56 | + public function __construct() { |
|
| 57 | + $this->load_classes(); |
|
| 58 | + $this->load_includes(); |
|
| 59 | + } |
|
| 60 | 60 | |
| 61 | - /** |
|
| 62 | - * Return an instance of this class. |
|
| 63 | - * |
|
| 64 | - * @since 1.0.0 |
|
| 65 | - * |
|
| 66 | - * @return object \lsx_health_plan\classes\Woocommerce() A single instance of this class. |
|
| 67 | - */ |
|
| 68 | - public static function get_instance() { |
|
| 69 | - // If the single instance hasn't been set, set it now. |
|
| 70 | - if ( null === self::$instance ) { |
|
| 71 | - self::$instance = new self(); |
|
| 72 | - } |
|
| 73 | - return self::$instance; |
|
| 74 | - } |
|
| 61 | + /** |
|
| 62 | + * Return an instance of this class. |
|
| 63 | + * |
|
| 64 | + * @since 1.0.0 |
|
| 65 | + * |
|
| 66 | + * @return object \lsx_health_plan\classes\Woocommerce() A single instance of this class. |
|
| 67 | + */ |
|
| 68 | + public static function get_instance() { |
|
| 69 | + // If the single instance hasn't been set, set it now. |
|
| 70 | + if ( null === self::$instance ) { |
|
| 71 | + self::$instance = new self(); |
|
| 72 | + } |
|
| 73 | + return self::$instance; |
|
| 74 | + } |
|
| 75 | 75 | |
| 76 | - /** |
|
| 77 | - * Loads the variable classes and the static classes. |
|
| 78 | - */ |
|
| 79 | - private function load_classes() { |
|
| 80 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/integrations/woocommerce/class-admin.php'; |
|
| 81 | - $this->admin = integrations\woocommerce\Admin::get_instance(); |
|
| 76 | + /** |
|
| 77 | + * Loads the variable classes and the static classes. |
|
| 78 | + */ |
|
| 79 | + private function load_classes() { |
|
| 80 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/integrations/woocommerce/class-admin.php'; |
|
| 81 | + $this->admin = integrations\woocommerce\Admin::get_instance(); |
|
| 82 | 82 | |
| 83 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/integrations/woocommerce/class-account.php'; |
|
| 84 | - $this->account = integrations\woocommerce\Account::get_instance(); |
|
| 83 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/integrations/woocommerce/class-account.php'; |
|
| 84 | + $this->account = integrations\woocommerce\Account::get_instance(); |
|
| 85 | 85 | |
| 86 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/integrations/woocommerce/class-plans.php'; |
|
| 87 | - $this->plans = integrations\woocommerce\Plans::get_instance(); |
|
| 86 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/integrations/woocommerce/class-plans.php'; |
|
| 87 | + $this->plans = integrations\woocommerce\Plans::get_instance(); |
|
| 88 | 88 | |
| 89 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/integrations/woocommerce/class-login.php'; |
|
| 90 | - $this->login = integrations\woocommerce\Login::get_instance(); |
|
| 89 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/integrations/woocommerce/class-login.php'; |
|
| 90 | + $this->login = integrations\woocommerce\Login::get_instance(); |
|
| 91 | 91 | |
| 92 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/integrations/woocommerce/class-checkout.php'; |
|
| 93 | - $this->checkout = integrations\woocommerce\Checkout::get_instance(); |
|
| 94 | - } |
|
| 95 | - /** |
|
| 96 | - * Loads the includes |
|
| 97 | - */ |
|
| 98 | - private function load_includes() { |
|
| 99 | - require_once LSX_HEALTH_PLAN_PATH . 'includes/functions/woocommerce.php'; |
|
| 100 | - require_once LSX_HEALTH_PLAN_PATH . 'includes/template-tags/woocommerce.php'; |
|
| 101 | - } |
|
| 92 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/integrations/woocommerce/class-checkout.php'; |
|
| 93 | + $this->checkout = integrations\woocommerce\Checkout::get_instance(); |
|
| 94 | + } |
|
| 95 | + /** |
|
| 96 | + * Loads the includes |
|
| 97 | + */ |
|
| 98 | + private function load_includes() { |
|
| 99 | + require_once LSX_HEALTH_PLAN_PATH . 'includes/functions/woocommerce.php'; |
|
| 100 | + require_once LSX_HEALTH_PLAN_PATH . 'includes/template-tags/woocommerce.php'; |
|
| 101 | + } |
|
| 102 | 102 | } |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | */ |
| 30 | 30 | public function __construct() { |
| 31 | 31 | //add_filter( 'facetwp_index_row', array( $this, 'facetwp_index_row' ), 10, 2 ); |
| 32 | - add_filter( 'facetwp_indexer_post_facet', array( $this, 'facetwp_indexer_post_facet' ), 10, 2 ); |
|
| 32 | + add_filter('facetwp_indexer_post_facet', array($this, 'facetwp_indexer_post_facet'), 10, 2); |
|
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | /** |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | */ |
| 42 | 42 | public static function get_instance() { |
| 43 | 43 | // If the single instance hasn't been set, set it now. |
| 44 | - if ( null === self::$instance ) { |
|
| 44 | + if (null === self::$instance) { |
|
| 45 | 45 | self::$instance = new self(); |
| 46 | 46 | } |
| 47 | 47 | return self::$instance; |
@@ -54,24 +54,24 @@ discard block |
||
| 54 | 54 | * @param array $params |
| 55 | 55 | * @return array |
| 56 | 56 | */ |
| 57 | - public function facetwp_indexer_post_facet( $return, $params ) { |
|
| 57 | + public function facetwp_indexer_post_facet($return, $params) { |
|
| 58 | 58 | $facet = $params['facet']; |
| 59 | - $source = isset( $facet['source'] ) ? $facet['source'] : ''; |
|
| 59 | + $source = isset($facet['source']) ? $facet['source'] : ''; |
|
| 60 | 60 | |
| 61 | - if ( 'lsx_hp/connected_plans' === $source ) { |
|
| 62 | - $post_type = get_post_type( $params['defaults']['post_id'] ); |
|
| 63 | - switch ( $post_type ) { |
|
| 61 | + if ('lsx_hp/connected_plans' === $source) { |
|
| 62 | + $post_type = get_post_type($params['defaults']['post_id']); |
|
| 63 | + switch ($post_type) { |
|
| 64 | 64 | case 'workout': |
| 65 | - $return = $this->index_connected_plans( $params['defaults'] ); |
|
| 66 | - $this->index_exercises( $params['defaults'] ); |
|
| 65 | + $return = $this->index_connected_plans($params['defaults']); |
|
| 66 | + $this->index_exercises($params['defaults']); |
|
| 67 | 67 | break; |
| 68 | 68 | |
| 69 | 69 | case 'recipe': |
| 70 | - $return = $this->index_connected_plans( $params['defaults'] ); |
|
| 70 | + $return = $this->index_connected_plans($params['defaults']); |
|
| 71 | 71 | break; |
| 72 | 72 | |
| 73 | 73 | case 'meal': |
| 74 | - $return = $this->index_connected_plans( $params['defaults'] ); |
|
| 74 | + $return = $this->index_connected_plans($params['defaults']); |
|
| 75 | 75 | break; |
| 76 | 76 | |
| 77 | 77 | default: |
@@ -91,29 +91,29 @@ discard block |
||
| 91 | 91 | * @param array $params |
| 92 | 92 | * @return boolean |
| 93 | 93 | */ |
| 94 | - public function index_connected_plans( $row ) { |
|
| 94 | + public function index_connected_plans($row) { |
|
| 95 | 95 | $indexed = false; |
| 96 | 96 | $top_level_plans = array(); |
| 97 | 97 | // Get meals this exercise is connected to. |
| 98 | - $plans = get_post_meta( $row['post_id'], 'connected_plans', true ); |
|
| 98 | + $plans = get_post_meta($row['post_id'], 'connected_plans', true); |
|
| 99 | 99 | |
| 100 | - if ( ! empty( $plans ) ) { |
|
| 101 | - $plan = end( $plans ); |
|
| 102 | - $has_parent = wp_get_post_parent_id( $plan ); |
|
| 103 | - if ( 0 === $has_parent ) { |
|
| 100 | + if ( ! empty($plans)) { |
|
| 101 | + $plan = end($plans); |
|
| 102 | + $has_parent = wp_get_post_parent_id($plan); |
|
| 103 | + if (0 === $has_parent) { |
|
| 104 | 104 | $top_level_plans[] = $plan; |
| 105 | - } elseif ( false !== $top_level_plans ) { |
|
| 105 | + } elseif (false !== $top_level_plans) { |
|
| 106 | 106 | $top_level_plans[] = $has_parent; |
| 107 | 107 | } |
| 108 | 108 | } |
| 109 | - if ( ! empty( $top_level_plans ) && ( '' !== $top_level_plans ) ) { |
|
| 110 | - $top_level_plans = array_unique( $top_level_plans ); |
|
| 109 | + if ( ! empty($top_level_plans) && ('' !== $top_level_plans)) { |
|
| 110 | + $top_level_plans = array_unique($top_level_plans); |
|
| 111 | 111 | $this->current_plan_ids = $top_level_plans; |
| 112 | 112 | $indexed = true; |
| 113 | - foreach ( $top_level_plans as $plan_id ) { |
|
| 113 | + foreach ($top_level_plans as $plan_id) { |
|
| 114 | 114 | $row['facet_value'] = $plan_id; |
| 115 | - $row['facet_display_value'] = get_the_title( $plan_id ); |
|
| 116 | - FWP()->indexer->index_row( $row ); |
|
| 115 | + $row['facet_display_value'] = get_the_title($plan_id); |
|
| 116 | + FWP()->indexer->index_row($row); |
|
| 117 | 117 | } |
| 118 | 118 | } |
| 119 | 119 | return $indexed; |
@@ -126,41 +126,41 @@ discard block |
||
| 126 | 126 | * @param array $params |
| 127 | 127 | * @return void |
| 128 | 128 | */ |
| 129 | - public function index_exercises( $row ) { |
|
| 130 | - if ( empty( $this->current_plan_ids ) ) { |
|
| 129 | + public function index_exercises($row) { |
|
| 130 | + if (empty($this->current_plan_ids)) { |
|
| 131 | 131 | return; |
| 132 | 132 | } |
| 133 | 133 | $i = 1; |
| 134 | 134 | $section_counter = 6; |
| 135 | 135 | $unique_connections = array(); |
| 136 | 136 | |
| 137 | - while ( $i <= $section_counter ) { |
|
| 137 | + while ($i <= $section_counter) { |
|
| 138 | 138 | // Here we grab the exercises and we add them to the index with the plan IDS. |
| 139 | - $groups = get_post_meta( $row['post_id'], 'workout_section_' . $i, true ); |
|
| 140 | - if ( ! empty( $groups ) ) { |
|
| 141 | - foreach ( $groups as $group ) { |
|
| 142 | - if ( isset( $group['connected_exercises'] ) && '' !== $group['connected_exercises'] ) { |
|
| 139 | + $groups = get_post_meta($row['post_id'], 'workout_section_' . $i, true); |
|
| 140 | + if ( ! empty($groups)) { |
|
| 141 | + foreach ($groups as $group) { |
|
| 142 | + if (isset($group['connected_exercises']) && '' !== $group['connected_exercises']) { |
|
| 143 | 143 | |
| 144 | - if ( ! is_array( $group['connected_exercises'] ) ) { |
|
| 145 | - $group['connected_exercises'] = array( $group['connected_exercises'] ); |
|
| 144 | + if ( ! is_array($group['connected_exercises'])) { |
|
| 145 | + $group['connected_exercises'] = array($group['connected_exercises']); |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | // Loop through each exercise and add it to the plan. |
| 149 | - foreach ( $group['connected_exercises'] as $eid ) { |
|
| 149 | + foreach ($group['connected_exercises'] as $eid) { |
|
| 150 | 150 | $exercise_default = $row; |
| 151 | 151 | $exercise_default['post_id'] = $eid; |
| 152 | 152 | |
| 153 | - foreach ( $this->current_plan_ids as $plan_id ) { |
|
| 153 | + foreach ($this->current_plan_ids as $plan_id) { |
|
| 154 | 154 | // Check to see if this connection has been added already. |
| 155 | - if ( isset( $unique_connections[ $eid . '_' . $plan_id ] ) ) { |
|
| 155 | + if (isset($unique_connections[$eid . '_' . $plan_id])) { |
|
| 156 | 156 | continue; |
| 157 | 157 | } |
| 158 | 158 | |
| 159 | - $title = get_the_title( $plan_id ); |
|
| 160 | - if ( ! empty( $title ) ) { |
|
| 159 | + $title = get_the_title($plan_id); |
|
| 160 | + if ( ! empty($title)) { |
|
| 161 | 161 | $exercise_default['facet_value'] = $plan_id; |
| 162 | 162 | $exercise_default['facet_display_value'] = $title; |
| 163 | - $unique_connections[ $eid . '_' . $plan_id ] = $exercise_default; |
|
| 163 | + $unique_connections[$eid . '_' . $plan_id] = $exercise_default; |
|
| 164 | 164 | } |
| 165 | 165 | } |
| 166 | 166 | } |
@@ -171,9 +171,9 @@ discard block |
||
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | // If we have some unique connections, we index them. |
| 174 | - if ( ! empty( $unique_connections ) ) { |
|
| 175 | - foreach ( $unique_connections as $unique_row ) { |
|
| 176 | - FWP()->indexer->index_row( $unique_row ); |
|
| 174 | + if ( ! empty($unique_connections)) { |
|
| 175 | + foreach ($unique_connections as $unique_row) { |
|
| 176 | + FWP()->indexer->index_row($unique_row); |
|
| 177 | 177 | } |
| 178 | 178 | } |
| 179 | 179 | } |
@@ -8,173 +8,173 @@ |
||
| 8 | 8 | */ |
| 9 | 9 | class Connected_Plans { |
| 10 | 10 | |
| 11 | - /** |
|
| 12 | - * Holds class instance |
|
| 13 | - * |
|
| 14 | - * @since 1.0.0 |
|
| 15 | - * |
|
| 16 | - * @var object \lsx_health_plan\classes\integrations\facetwp\Connected_Plans() |
|
| 17 | - */ |
|
| 18 | - protected static $instance = null; |
|
| 19 | - |
|
| 20 | - /** |
|
| 21 | - * This hold the current plan IDS, in case they need to be used in additional functions. |
|
| 22 | - * |
|
| 23 | - * @var array |
|
| 24 | - */ |
|
| 25 | - public $current_plan_ids = array(); |
|
| 26 | - |
|
| 27 | - /** |
|
| 28 | - * Constructor |
|
| 29 | - */ |
|
| 30 | - public function __construct() { |
|
| 31 | - //add_filter( 'facetwp_index_row', array( $this, 'facetwp_index_row' ), 10, 2 ); |
|
| 32 | - add_filter( 'facetwp_indexer_post_facet', array( $this, 'facetwp_indexer_post_facet' ), 10, 2 ); |
|
| 33 | - } |
|
| 34 | - |
|
| 35 | - /** |
|
| 36 | - * Return an instance of this class. |
|
| 37 | - * |
|
| 38 | - * @since 1.0.0 |
|
| 39 | - * |
|
| 40 | - * @return object \lsx_health_plan\classes\integration\facetwp\Connected_Plans() A single instance of this class. |
|
| 41 | - */ |
|
| 42 | - public static function get_instance() { |
|
| 43 | - // If the single instance hasn't been set, set it now. |
|
| 44 | - if ( null === self::$instance ) { |
|
| 45 | - self::$instance = new self(); |
|
| 46 | - } |
|
| 47 | - return self::$instance; |
|
| 48 | - } |
|
| 49 | - |
|
| 50 | - /** |
|
| 51 | - * Index the connected plan |
|
| 52 | - * |
|
| 53 | - * @param array $return |
|
| 54 | - * @param array $params |
|
| 55 | - * @return array |
|
| 56 | - */ |
|
| 57 | - public function facetwp_indexer_post_facet( $return, $params ) { |
|
| 58 | - $facet = $params['facet']; |
|
| 59 | - $source = isset( $facet['source'] ) ? $facet['source'] : ''; |
|
| 60 | - |
|
| 61 | - if ( 'lsx_hp/connected_plans' === $source ) { |
|
| 62 | - $post_type = get_post_type( $params['defaults']['post_id'] ); |
|
| 63 | - switch ( $post_type ) { |
|
| 64 | - case 'workout': |
|
| 65 | - $return = $this->index_connected_plans( $params['defaults'] ); |
|
| 66 | - $this->index_exercises( $params['defaults'] ); |
|
| 67 | - break; |
|
| 68 | - |
|
| 69 | - case 'recipe': |
|
| 70 | - $return = $this->index_connected_plans( $params['defaults'] ); |
|
| 71 | - break; |
|
| 72 | - |
|
| 73 | - case 'meal': |
|
| 74 | - $return = $this->index_connected_plans( $params['defaults'] ); |
|
| 75 | - break; |
|
| 76 | - |
|
| 77 | - default: |
|
| 78 | - break; |
|
| 79 | - } |
|
| 80 | - } |
|
| 81 | - |
|
| 82 | - // Reset the current plan ids array. |
|
| 83 | - $this->current_plan_ids = array(); |
|
| 84 | - return $return; |
|
| 85 | - } |
|
| 86 | - |
|
| 87 | - /** |
|
| 88 | - * Adds the connected plan to the list of rows. |
|
| 89 | - * |
|
| 90 | - * @param array $rows |
|
| 91 | - * @param array $params |
|
| 92 | - * @return boolean |
|
| 93 | - */ |
|
| 94 | - public function index_connected_plans( $row ) { |
|
| 95 | - $indexed = false; |
|
| 96 | - $top_level_plans = array(); |
|
| 97 | - // Get meals this exercise is connected to. |
|
| 98 | - $plans = get_post_meta( $row['post_id'], 'connected_plans', true ); |
|
| 99 | - |
|
| 100 | - if ( ! empty( $plans ) ) { |
|
| 101 | - $plan = end( $plans ); |
|
| 102 | - $has_parent = wp_get_post_parent_id( $plan ); |
|
| 103 | - if ( 0 === $has_parent ) { |
|
| 104 | - $top_level_plans[] = $plan; |
|
| 105 | - } elseif ( false !== $top_level_plans ) { |
|
| 106 | - $top_level_plans[] = $has_parent; |
|
| 107 | - } |
|
| 108 | - } |
|
| 109 | - if ( ! empty( $top_level_plans ) && ( '' !== $top_level_plans ) ) { |
|
| 110 | - $top_level_plans = array_unique( $top_level_plans ); |
|
| 111 | - $this->current_plan_ids = $top_level_plans; |
|
| 112 | - $indexed = true; |
|
| 113 | - foreach ( $top_level_plans as $plan_id ) { |
|
| 114 | - $row['facet_value'] = $plan_id; |
|
| 115 | - $row['facet_display_value'] = get_the_title( $plan_id ); |
|
| 116 | - FWP()->indexer->index_row( $row ); |
|
| 117 | - } |
|
| 118 | - } |
|
| 119 | - return $indexed; |
|
| 120 | - } |
|
| 121 | - |
|
| 122 | - /** |
|
| 123 | - * We index the exercises from the workouts. |
|
| 124 | - * |
|
| 125 | - * @param array $rows |
|
| 126 | - * @param array $params |
|
| 127 | - * @return void |
|
| 128 | - */ |
|
| 129 | - public function index_exercises( $row ) { |
|
| 130 | - if ( empty( $this->current_plan_ids ) ) { |
|
| 131 | - return; |
|
| 132 | - } |
|
| 133 | - $i = 1; |
|
| 134 | - $section_counter = 6; |
|
| 135 | - $unique_connections = array(); |
|
| 136 | - |
|
| 137 | - while ( $i <= $section_counter ) { |
|
| 138 | - // Here we grab the exercises and we add them to the index with the plan IDS. |
|
| 139 | - $groups = get_post_meta( $row['post_id'], 'workout_section_' . $i, true ); |
|
| 140 | - if ( ! empty( $groups ) ) { |
|
| 141 | - foreach ( $groups as $group ) { |
|
| 142 | - if ( isset( $group['connected_exercises'] ) && '' !== $group['connected_exercises'] ) { |
|
| 143 | - |
|
| 144 | - if ( ! is_array( $group['connected_exercises'] ) ) { |
|
| 145 | - $group['connected_exercises'] = array( $group['connected_exercises'] ); |
|
| 146 | - } |
|
| 147 | - |
|
| 148 | - // Loop through each exercise and add it to the plan. |
|
| 149 | - foreach ( $group['connected_exercises'] as $eid ) { |
|
| 150 | - $exercise_default = $row; |
|
| 151 | - $exercise_default['post_id'] = $eid; |
|
| 152 | - |
|
| 153 | - foreach ( $this->current_plan_ids as $plan_id ) { |
|
| 154 | - // Check to see if this connection has been added already. |
|
| 155 | - if ( isset( $unique_connections[ $eid . '_' . $plan_id ] ) ) { |
|
| 156 | - continue; |
|
| 157 | - } |
|
| 158 | - |
|
| 159 | - $title = get_the_title( $plan_id ); |
|
| 160 | - if ( ! empty( $title ) ) { |
|
| 161 | - $exercise_default['facet_value'] = $plan_id; |
|
| 162 | - $exercise_default['facet_display_value'] = $title; |
|
| 163 | - $unique_connections[ $eid . '_' . $plan_id ] = $exercise_default; |
|
| 164 | - } |
|
| 165 | - } |
|
| 166 | - } |
|
| 167 | - } |
|
| 168 | - } |
|
| 169 | - } |
|
| 170 | - $i++; |
|
| 171 | - } |
|
| 172 | - |
|
| 173 | - // If we have some unique connections, we index them. |
|
| 174 | - if ( ! empty( $unique_connections ) ) { |
|
| 175 | - foreach ( $unique_connections as $unique_row ) { |
|
| 176 | - FWP()->indexer->index_row( $unique_row ); |
|
| 177 | - } |
|
| 178 | - } |
|
| 179 | - } |
|
| 11 | + /** |
|
| 12 | + * Holds class instance |
|
| 13 | + * |
|
| 14 | + * @since 1.0.0 |
|
| 15 | + * |
|
| 16 | + * @var object \lsx_health_plan\classes\integrations\facetwp\Connected_Plans() |
|
| 17 | + */ |
|
| 18 | + protected static $instance = null; |
|
| 19 | + |
|
| 20 | + /** |
|
| 21 | + * This hold the current plan IDS, in case they need to be used in additional functions. |
|
| 22 | + * |
|
| 23 | + * @var array |
|
| 24 | + */ |
|
| 25 | + public $current_plan_ids = array(); |
|
| 26 | + |
|
| 27 | + /** |
|
| 28 | + * Constructor |
|
| 29 | + */ |
|
| 30 | + public function __construct() { |
|
| 31 | + //add_filter( 'facetwp_index_row', array( $this, 'facetwp_index_row' ), 10, 2 ); |
|
| 32 | + add_filter( 'facetwp_indexer_post_facet', array( $this, 'facetwp_indexer_post_facet' ), 10, 2 ); |
|
| 33 | + } |
|
| 34 | + |
|
| 35 | + /** |
|
| 36 | + * Return an instance of this class. |
|
| 37 | + * |
|
| 38 | + * @since 1.0.0 |
|
| 39 | + * |
|
| 40 | + * @return object \lsx_health_plan\classes\integration\facetwp\Connected_Plans() A single instance of this class. |
|
| 41 | + */ |
|
| 42 | + public static function get_instance() { |
|
| 43 | + // If the single instance hasn't been set, set it now. |
|
| 44 | + if ( null === self::$instance ) { |
|
| 45 | + self::$instance = new self(); |
|
| 46 | + } |
|
| 47 | + return self::$instance; |
|
| 48 | + } |
|
| 49 | + |
|
| 50 | + /** |
|
| 51 | + * Index the connected plan |
|
| 52 | + * |
|
| 53 | + * @param array $return |
|
| 54 | + * @param array $params |
|
| 55 | + * @return array |
|
| 56 | + */ |
|
| 57 | + public function facetwp_indexer_post_facet( $return, $params ) { |
|
| 58 | + $facet = $params['facet']; |
|
| 59 | + $source = isset( $facet['source'] ) ? $facet['source'] : ''; |
|
| 60 | + |
|
| 61 | + if ( 'lsx_hp/connected_plans' === $source ) { |
|
| 62 | + $post_type = get_post_type( $params['defaults']['post_id'] ); |
|
| 63 | + switch ( $post_type ) { |
|
| 64 | + case 'workout': |
|
| 65 | + $return = $this->index_connected_plans( $params['defaults'] ); |
|
| 66 | + $this->index_exercises( $params['defaults'] ); |
|
| 67 | + break; |
|
| 68 | + |
|
| 69 | + case 'recipe': |
|
| 70 | + $return = $this->index_connected_plans( $params['defaults'] ); |
|
| 71 | + break; |
|
| 72 | + |
|
| 73 | + case 'meal': |
|
| 74 | + $return = $this->index_connected_plans( $params['defaults'] ); |
|
| 75 | + break; |
|
| 76 | + |
|
| 77 | + default: |
|
| 78 | + break; |
|
| 79 | + } |
|
| 80 | + } |
|
| 81 | + |
|
| 82 | + // Reset the current plan ids array. |
|
| 83 | + $this->current_plan_ids = array(); |
|
| 84 | + return $return; |
|
| 85 | + } |
|
| 86 | + |
|
| 87 | + /** |
|
| 88 | + * Adds the connected plan to the list of rows. |
|
| 89 | + * |
|
| 90 | + * @param array $rows |
|
| 91 | + * @param array $params |
|
| 92 | + * @return boolean |
|
| 93 | + */ |
|
| 94 | + public function index_connected_plans( $row ) { |
|
| 95 | + $indexed = false; |
|
| 96 | + $top_level_plans = array(); |
|
| 97 | + // Get meals this exercise is connected to. |
|
| 98 | + $plans = get_post_meta( $row['post_id'], 'connected_plans', true ); |
|
| 99 | + |
|
| 100 | + if ( ! empty( $plans ) ) { |
|
| 101 | + $plan = end( $plans ); |
|
| 102 | + $has_parent = wp_get_post_parent_id( $plan ); |
|
| 103 | + if ( 0 === $has_parent ) { |
|
| 104 | + $top_level_plans[] = $plan; |
|
| 105 | + } elseif ( false !== $top_level_plans ) { |
|
| 106 | + $top_level_plans[] = $has_parent; |
|
| 107 | + } |
|
| 108 | + } |
|
| 109 | + if ( ! empty( $top_level_plans ) && ( '' !== $top_level_plans ) ) { |
|
| 110 | + $top_level_plans = array_unique( $top_level_plans ); |
|
| 111 | + $this->current_plan_ids = $top_level_plans; |
|
| 112 | + $indexed = true; |
|
| 113 | + foreach ( $top_level_plans as $plan_id ) { |
|
| 114 | + $row['facet_value'] = $plan_id; |
|
| 115 | + $row['facet_display_value'] = get_the_title( $plan_id ); |
|
| 116 | + FWP()->indexer->index_row( $row ); |
|
| 117 | + } |
|
| 118 | + } |
|
| 119 | + return $indexed; |
|
| 120 | + } |
|
| 121 | + |
|
| 122 | + /** |
|
| 123 | + * We index the exercises from the workouts. |
|
| 124 | + * |
|
| 125 | + * @param array $rows |
|
| 126 | + * @param array $params |
|
| 127 | + * @return void |
|
| 128 | + */ |
|
| 129 | + public function index_exercises( $row ) { |
|
| 130 | + if ( empty( $this->current_plan_ids ) ) { |
|
| 131 | + return; |
|
| 132 | + } |
|
| 133 | + $i = 1; |
|
| 134 | + $section_counter = 6; |
|
| 135 | + $unique_connections = array(); |
|
| 136 | + |
|
| 137 | + while ( $i <= $section_counter ) { |
|
| 138 | + // Here we grab the exercises and we add them to the index with the plan IDS. |
|
| 139 | + $groups = get_post_meta( $row['post_id'], 'workout_section_' . $i, true ); |
|
| 140 | + if ( ! empty( $groups ) ) { |
|
| 141 | + foreach ( $groups as $group ) { |
|
| 142 | + if ( isset( $group['connected_exercises'] ) && '' !== $group['connected_exercises'] ) { |
|
| 143 | + |
|
| 144 | + if ( ! is_array( $group['connected_exercises'] ) ) { |
|
| 145 | + $group['connected_exercises'] = array( $group['connected_exercises'] ); |
|
| 146 | + } |
|
| 147 | + |
|
| 148 | + // Loop through each exercise and add it to the plan. |
|
| 149 | + foreach ( $group['connected_exercises'] as $eid ) { |
|
| 150 | + $exercise_default = $row; |
|
| 151 | + $exercise_default['post_id'] = $eid; |
|
| 152 | + |
|
| 153 | + foreach ( $this->current_plan_ids as $plan_id ) { |
|
| 154 | + // Check to see if this connection has been added already. |
|
| 155 | + if ( isset( $unique_connections[ $eid . '_' . $plan_id ] ) ) { |
|
| 156 | + continue; |
|
| 157 | + } |
|
| 158 | + |
|
| 159 | + $title = get_the_title( $plan_id ); |
|
| 160 | + if ( ! empty( $title ) ) { |
|
| 161 | + $exercise_default['facet_value'] = $plan_id; |
|
| 162 | + $exercise_default['facet_display_value'] = $title; |
|
| 163 | + $unique_connections[ $eid . '_' . $plan_id ] = $exercise_default; |
|
| 164 | + } |
|
| 165 | + } |
|
| 166 | + } |
|
| 167 | + } |
|
| 168 | + } |
|
| 169 | + } |
|
| 170 | + $i++; |
|
| 171 | + } |
|
| 172 | + |
|
| 173 | + // If we have some unique connections, we index them. |
|
| 174 | + if ( ! empty( $unique_connections ) ) { |
|
| 175 | + foreach ( $unique_connections as $unique_row ) { |
|
| 176 | + FWP()->indexer->index_row( $unique_row ); |
|
| 177 | + } |
|
| 178 | + } |
|
| 179 | + } |
|
| 180 | 180 | } |
@@ -22,9 +22,9 @@ discard block |
||
| 22 | 22 | */ |
| 23 | 23 | public function __construct() { |
| 24 | 24 | // Lost Password fields |
| 25 | - add_action( 'woocommerce_before_lost_password_form', array( $this, 'lost_password_page_title' ), 10 ); |
|
| 25 | + add_action('woocommerce_before_lost_password_form', array($this, 'lost_password_page_title'), 10); |
|
| 26 | 26 | |
| 27 | - add_action( 'wp', array( $this, 'allow_reset_password_page' ), 9 ); |
|
| 27 | + add_action('wp', array($this, 'allow_reset_password_page'), 9); |
|
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | /** |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | */ |
| 37 | 37 | public static function get_instance() { |
| 38 | 38 | // If the single instance hasn't been set, set it now. |
| 39 | - if ( null === self::$instance ) { |
|
| 39 | + if (null === self::$instance) { |
|
| 40 | 40 | self::$instance = new self(); |
| 41 | 41 | } |
| 42 | 42 | return self::$instance; |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | |
| 45 | 45 | public function lost_password_page_title() { |
| 46 | 46 | ?> |
| 47 | - <h1 class="lost-your-password-title"><?php esc_html_e( 'Lost your password?', 'lsx-health-plan' ); ?></h1> |
|
| 47 | + <h1 class="lost-your-password-title"><?php esc_html_e('Lost your password?', 'lsx-health-plan'); ?></h1> |
|
| 48 | 48 | <?php |
| 49 | 49 | } |
| 50 | 50 | |
@@ -54,13 +54,13 @@ discard block |
||
| 54 | 54 | * @return void |
| 55 | 55 | */ |
| 56 | 56 | public function allow_reset_password_page() { |
| 57 | - if ( ! is_user_logged_in() && function_exists( 'wc_memberships' ) && is_wc_endpoint_url( 'lost-password' ) ) { |
|
| 57 | + if ( ! is_user_logged_in() && function_exists('wc_memberships') && is_wc_endpoint_url('lost-password')) { |
|
| 58 | 58 | |
| 59 | 59 | $members_instance = wc_memberships(); |
| 60 | 60 | $restriction_instance = $members_instance->get_restrictions_instance(); |
| 61 | 61 | $post_restrictions_instance = $restriction_instance->get_posts_restrictions_instance(); |
| 62 | - remove_action( 'wp', array( $post_restrictions_instance, 'handle_restriction_modes' ), 10, 1 ); |
|
| 63 | - add_action( 'body_class', array( $this, 'remove_body_classes' ) ); |
|
| 62 | + remove_action('wp', array($post_restrictions_instance, 'handle_restriction_modes'), 10, 1); |
|
| 63 | + add_action('body_class', array($this, 'remove_body_classes')); |
|
| 64 | 64 | } |
| 65 | 65 | } |
| 66 | 66 | |
@@ -70,11 +70,11 @@ discard block |
||
| 70 | 70 | * @param array $classes |
| 71 | 71 | * @return void |
| 72 | 72 | */ |
| 73 | - public function remove_body_classes( $classes = array() ) { |
|
| 74 | - if ( ! empty( $classes ) ) { |
|
| 75 | - foreach ( $classes as $class_key => $class_value ) { |
|
| 76 | - if ( 'gutenberg-compatible-template' === $class_value || 'using-gutenberg' === $class_value ) { |
|
| 77 | - unset( $classes[ $class_key ] ); |
|
| 73 | + public function remove_body_classes($classes = array()) { |
|
| 74 | + if ( ! empty($classes)) { |
|
| 75 | + foreach ($classes as $class_key => $class_value) { |
|
| 76 | + if ('gutenberg-compatible-template' === $class_value || 'using-gutenberg' === $class_value) { |
|
| 77 | + unset($classes[$class_key]); |
|
| 78 | 78 | } |
| 79 | 79 | } |
| 80 | 80 | } |
@@ -8,76 +8,76 @@ |
||
| 8 | 8 | */ |
| 9 | 9 | class Login { |
| 10 | 10 | |
| 11 | - /** |
|
| 12 | - * Holds class instance |
|
| 13 | - * |
|
| 14 | - * @since 1.0.0 |
|
| 15 | - * |
|
| 16 | - * @var object \lsx_health_plan\classes\integrations\woocommerce\Login() |
|
| 17 | - */ |
|
| 18 | - protected static $instance = null; |
|
| 11 | + /** |
|
| 12 | + * Holds class instance |
|
| 13 | + * |
|
| 14 | + * @since 1.0.0 |
|
| 15 | + * |
|
| 16 | + * @var object \lsx_health_plan\classes\integrations\woocommerce\Login() |
|
| 17 | + */ |
|
| 18 | + protected static $instance = null; |
|
| 19 | 19 | |
| 20 | - /** |
|
| 21 | - * Constructor |
|
| 22 | - */ |
|
| 23 | - public function __construct() { |
|
| 24 | - // Lost Password fields |
|
| 25 | - add_action( 'woocommerce_before_lost_password_form', array( $this, 'lost_password_page_title' ), 10 ); |
|
| 20 | + /** |
|
| 21 | + * Constructor |
|
| 22 | + */ |
|
| 23 | + public function __construct() { |
|
| 24 | + // Lost Password fields |
|
| 25 | + add_action( 'woocommerce_before_lost_password_form', array( $this, 'lost_password_page_title' ), 10 ); |
|
| 26 | 26 | |
| 27 | - add_action( 'wp', array( $this, 'allow_reset_password_page' ), 9 ); |
|
| 28 | - } |
|
| 27 | + add_action( 'wp', array( $this, 'allow_reset_password_page' ), 9 ); |
|
| 28 | + } |
|
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * Return an instance of this class. |
|
| 32 | - * |
|
| 33 | - * @since 1.0.0 |
|
| 34 | - * |
|
| 35 | - * @return object \lsx_health_plan\classes\integrations\woocommerce\Login() A single instance of this class. |
|
| 36 | - */ |
|
| 37 | - public static function get_instance() { |
|
| 38 | - // If the single instance hasn't been set, set it now. |
|
| 39 | - if ( null === self::$instance ) { |
|
| 40 | - self::$instance = new self(); |
|
| 41 | - } |
|
| 42 | - return self::$instance; |
|
| 43 | - } |
|
| 30 | + /** |
|
| 31 | + * Return an instance of this class. |
|
| 32 | + * |
|
| 33 | + * @since 1.0.0 |
|
| 34 | + * |
|
| 35 | + * @return object \lsx_health_plan\classes\integrations\woocommerce\Login() A single instance of this class. |
|
| 36 | + */ |
|
| 37 | + public static function get_instance() { |
|
| 38 | + // If the single instance hasn't been set, set it now. |
|
| 39 | + if ( null === self::$instance ) { |
|
| 40 | + self::$instance = new self(); |
|
| 41 | + } |
|
| 42 | + return self::$instance; |
|
| 43 | + } |
|
| 44 | 44 | |
| 45 | - public function lost_password_page_title() { |
|
| 46 | - ?> |
|
| 45 | + public function lost_password_page_title() { |
|
| 46 | + ?> |
|
| 47 | 47 | <h1 class="lost-your-password-title"><?php esc_html_e( 'Lost your password?', 'lsx-health-plan' ); ?></h1> |
| 48 | 48 | <?php |
| 49 | - } |
|
| 49 | + } |
|
| 50 | 50 | |
| 51 | - /** |
|
| 52 | - * Removes the content restriction class to allow the password page to show. |
|
| 53 | - * |
|
| 54 | - * @return void |
|
| 55 | - */ |
|
| 56 | - public function allow_reset_password_page() { |
|
| 57 | - if ( ! is_user_logged_in() && function_exists( 'wc_memberships' ) && is_wc_endpoint_url( 'lost-password' ) ) { |
|
| 51 | + /** |
|
| 52 | + * Removes the content restriction class to allow the password page to show. |
|
| 53 | + * |
|
| 54 | + * @return void |
|
| 55 | + */ |
|
| 56 | + public function allow_reset_password_page() { |
|
| 57 | + if ( ! is_user_logged_in() && function_exists( 'wc_memberships' ) && is_wc_endpoint_url( 'lost-password' ) ) { |
|
| 58 | 58 | |
| 59 | - $members_instance = wc_memberships(); |
|
| 60 | - $restriction_instance = $members_instance->get_restrictions_instance(); |
|
| 61 | - $post_restrictions_instance = $restriction_instance->get_posts_restrictions_instance(); |
|
| 62 | - remove_action( 'wp', array( $post_restrictions_instance, 'handle_restriction_modes' ), 10, 1 ); |
|
| 63 | - add_action( 'body_class', array( $this, 'remove_body_classes' ) ); |
|
| 64 | - } |
|
| 65 | - } |
|
| 59 | + $members_instance = wc_memberships(); |
|
| 60 | + $restriction_instance = $members_instance->get_restrictions_instance(); |
|
| 61 | + $post_restrictions_instance = $restriction_instance->get_posts_restrictions_instance(); |
|
| 62 | + remove_action( 'wp', array( $post_restrictions_instance, 'handle_restriction_modes' ), 10, 1 ); |
|
| 63 | + add_action( 'body_class', array( $this, 'remove_body_classes' ) ); |
|
| 64 | + } |
|
| 65 | + } |
|
| 66 | 66 | |
| 67 | - /** |
|
| 68 | - * Remove the gutenberg classes from the lost password page. |
|
| 69 | - * |
|
| 70 | - * @param array $classes |
|
| 71 | - * @return void |
|
| 72 | - */ |
|
| 73 | - public function remove_body_classes( $classes = array() ) { |
|
| 74 | - if ( ! empty( $classes ) ) { |
|
| 75 | - foreach ( $classes as $class_key => $class_value ) { |
|
| 76 | - if ( 'gutenberg-compatible-template' === $class_value || 'using-gutenberg' === $class_value ) { |
|
| 77 | - unset( $classes[ $class_key ] ); |
|
| 78 | - } |
|
| 79 | - } |
|
| 80 | - } |
|
| 81 | - return $classes; |
|
| 82 | - } |
|
| 67 | + /** |
|
| 68 | + * Remove the gutenberg classes from the lost password page. |
|
| 69 | + * |
|
| 70 | + * @param array $classes |
|
| 71 | + * @return void |
|
| 72 | + */ |
|
| 73 | + public function remove_body_classes( $classes = array() ) { |
|
| 74 | + if ( ! empty( $classes ) ) { |
|
| 75 | + foreach ( $classes as $class_key => $class_value ) { |
|
| 76 | + if ( 'gutenberg-compatible-template' === $class_value || 'using-gutenberg' === $class_value ) { |
|
| 77 | + unset( $classes[ $class_key ] ); |
|
| 78 | + } |
|
| 79 | + } |
|
| 80 | + } |
|
| 81 | + return $classes; |
|
| 82 | + } |
|
| 83 | 83 | } |
@@ -6,10 +6,10 @@ discard block |
||
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | 8 | // Getting translated endpoint. |
| 9 | -$meal = \lsx_health_plan\functions\get_option( 'endpoint_meal', 'meal' ); |
|
| 9 | +$meal = \lsx_health_plan\functions\get_option('endpoint_meal', 'meal'); |
|
| 10 | 10 | |
| 11 | -$connected_members = get_post_meta( get_the_ID(), ( $meal . '_connected_team_member' ), true ); |
|
| 12 | -$connected_articles = get_post_meta( get_the_ID(), ( $meal . '_connected_articles' ), true ); |
|
| 11 | +$connected_members = get_post_meta(get_the_ID(), ($meal . '_connected_team_member'), true); |
|
| 12 | +$connected_articles = get_post_meta(get_the_ID(), ($meal . '_connected_articles'), true); |
|
| 13 | 13 | |
| 14 | 14 | ?> |
| 15 | 15 | |
@@ -24,16 +24,16 @@ discard block |
||
| 24 | 24 | <div class="entry-content"> |
| 25 | 25 | <div class="single-plan-inner meal-content"> |
| 26 | 26 | <?php |
| 27 | - if ( is_singular( 'meal' ) ) { ?> |
|
| 27 | + if (is_singular('meal')) { ?> |
|
| 28 | 28 | <div class="single-plan-section-title meal-plan title-lined"> |
| 29 | - <?php lsx_get_svg_icon( 'meal.svg' ); ?> |
|
| 29 | + <?php lsx_get_svg_icon('meal.svg'); ?> |
|
| 30 | 30 | <h2><?php the_title(); ?></h2> |
| 31 | 31 | |
| 32 | 32 | </div> |
| 33 | 33 | <?php } else { ?> |
| 34 | 34 | <div class="single-plan-section-title meal-plan title-lined"> |
| 35 | - <?php lsx_get_svg_icon( 'meal.svg' ); ?> |
|
| 36 | - <h2><?php esc_html_e( 'My Meal Plan', 'lsx-health-plan' ); ?> <?php the_title(); ?></h2> |
|
| 35 | + <?php lsx_get_svg_icon('meal.svg'); ?> |
|
| 36 | + <h2><?php esc_html_e('My Meal Plan', 'lsx-health-plan'); ?> <?php the_title(); ?></h2> |
|
| 37 | 37 | </div> |
| 38 | 38 | <?php } ?> |
| 39 | 39 | |
@@ -46,8 +46,8 @@ discard block |
||
| 46 | 46 | </article><!-- #post-## --> |
| 47 | 47 | |
| 48 | 48 | <?php |
| 49 | -if ( ! empty( $connected_articles ) ) { |
|
| 50 | - lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) ); |
|
| 49 | +if ( ! empty($connected_articles)) { |
|
| 50 | + lsx_hp_single_related($connected_articles, __('Related articles', 'lsx-health-plan')); |
|
| 51 | 51 | } |
| 52 | 52 | ?> |
| 53 | 53 | |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | <div class="entry-content"> |
| 25 | 25 | <div class="single-plan-inner meal-content"> |
| 26 | 26 | <?php |
| 27 | - if ( is_singular( 'meal' ) ) { ?> |
|
| 27 | + if ( is_singular( 'meal' ) ) { ?> |
|
| 28 | 28 | <div class="single-plan-section-title meal-plan title-lined"> |
| 29 | 29 | <?php lsx_get_svg_icon( 'meal.svg' ); ?> |
| 30 | 30 | <h2><?php the_title(); ?></h2> |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | |
| 48 | 48 | <?php |
| 49 | 49 | if ( ! empty( $connected_articles ) ) { |
| 50 | - lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) ); |
|
| 50 | + lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) ); |
|
| 51 | 51 | } |
| 52 | 52 | ?> |
| 53 | 53 | |
@@ -5,11 +5,11 @@ discard block |
||
| 5 | 5 | * @package lsx-health-plan |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -$section_key = get_query_var( 'section' ); |
|
| 9 | -$endpoint_key = get_query_var( 'endpoint' ); |
|
| 10 | -if ( '' !== $section_key && '' === $endpoint && \lsx_health_plan\functions\plan\has_sections() ) { |
|
| 11 | - $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
| 12 | - if ( isset( $section_info['description'] ) && '' !== $section_info['description'] ) { |
|
| 8 | +$section_key = get_query_var('section'); |
|
| 9 | +$endpoint_key = get_query_var('endpoint'); |
|
| 10 | +if ('' !== $section_key && '' === $endpoint && \lsx_health_plan\functions\plan\has_sections()) { |
|
| 11 | + $section_info = \lsx_health_plan\functions\plan\get_section_info($section_key); |
|
| 12 | + if (isset($section_info['description']) && '' !== $section_info['description']) { |
|
| 13 | 13 | global $shortcode_args; |
| 14 | 14 | ?> |
| 15 | 15 | <?php lsx_entry_before(); ?> |
@@ -25,22 +25,22 @@ discard block |
||
| 25 | 25 | <div class="entry-content"> |
| 26 | 26 | <div class="overview"> |
| 27 | 27 | <?php |
| 28 | - echo wp_kses_post( apply_filters( 'the_content', $section_info['description'] ) ); |
|
| 28 | + echo wp_kses_post(apply_filters('the_content', $section_info['description'])); |
|
| 29 | 29 | |
| 30 | - wp_link_pages( array( |
|
| 30 | + wp_link_pages(array( |
|
| 31 | 31 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
| 32 | 32 | 'after' => '</div></div>', |
| 33 | 33 | 'link_before' => '<span>', |
| 34 | 34 | 'link_after' => '</span>', |
| 35 | - ) ); |
|
| 35 | + )); |
|
| 36 | 36 | ?> |
| 37 | 37 | </div> |
| 38 | 38 | </div><!-- .entry-content --> |
| 39 | - <?php if ( null === $shortcode_args ) { ?> |
|
| 40 | - <?php if ( post_type_exists( 'tip' ) && lsx_health_plan_has_tips() ) { ?> |
|
| 39 | + <?php if (null === $shortcode_args) { ?> |
|
| 40 | + <?php if (post_type_exists('tip') && lsx_health_plan_has_tips()) { ?> |
|
| 41 | 41 | <div class="tip-row extras-box"> |
| 42 | 42 | <div class="tip-right"> |
| 43 | - <?php echo do_shortcode( '[lsx_health_plan_featured_tips_block]' ); ?> |
|
| 43 | + <?php echo do_shortcode('[lsx_health_plan_featured_tips_block]'); ?> |
|
| 44 | 44 | </div> |
| 45 | 45 | </div> |
| 46 | 46 | <?php } ?> |
@@ -8,10 +8,10 @@ discard block |
||
| 8 | 8 | $section_key = get_query_var( 'section' ); |
| 9 | 9 | $endpoint_key = get_query_var( 'endpoint' ); |
| 10 | 10 | if ( '' !== $section_key && '' === $endpoint && \lsx_health_plan\functions\plan\has_sections() ) { |
| 11 | - $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
| 12 | - if ( isset( $section_info['description'] ) && '' !== $section_info['description'] ) { |
|
| 13 | - global $shortcode_args; |
|
| 14 | - ?> |
|
| 11 | + $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
| 12 | + if ( isset( $section_info['description'] ) && '' !== $section_info['description'] ) { |
|
| 13 | + global $shortcode_args; |
|
| 14 | + ?> |
|
| 15 | 15 | <?php lsx_entry_before(); ?> |
| 16 | 16 | |
| 17 | 17 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
@@ -25,15 +25,15 @@ discard block |
||
| 25 | 25 | <div class="entry-content"> |
| 26 | 26 | <div class="overview"> |
| 27 | 27 | <?php |
| 28 | - echo wp_kses_post( apply_filters( 'the_content', $section_info['description'] ) ); |
|
| 29 | - |
|
| 30 | - wp_link_pages( array( |
|
| 31 | - 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
| 32 | - 'after' => '</div></div>', |
|
| 33 | - 'link_before' => '<span>', |
|
| 34 | - 'link_after' => '</span>', |
|
| 35 | - ) ); |
|
| 36 | - ?> |
|
| 28 | + echo wp_kses_post( apply_filters( 'the_content', $section_info['description'] ) ); |
|
| 29 | + |
|
| 30 | + wp_link_pages( array( |
|
| 31 | + 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
| 32 | + 'after' => '</div></div>', |
|
| 33 | + 'link_before' => '<span>', |
|
| 34 | + 'link_after' => '</span>', |
|
| 35 | + ) ); |
|
| 36 | + ?> |
|
| 37 | 37 | </div> |
| 38 | 38 | </div><!-- .entry-content --> |
| 39 | 39 | <?php if ( null === $shortcode_args ) { ?> |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | </article><!-- #post-## --> |
| 52 | 52 | |
| 53 | 53 | <?php |
| 54 | - lsx_entry_after(); |
|
| 55 | - } |
|
| 54 | + lsx_entry_after(); |
|
| 55 | + } |
|
| 56 | 56 | } |
| 57 | 57 | ?> |
@@ -6,10 +6,10 @@ discard block |
||
| 6 | 6 | */ |
| 7 | 7 | global $group_name, $connected_workouts, $shortcode_args; |
| 8 | 8 | |
| 9 | -$warm_up = get_post_meta( get_the_ID(), 'plan_warmup', true ); |
|
| 10 | -if ( false === $warm_up || '' === $warm_up ) { |
|
| 11 | - $options = \lsx_health_plan\functions\get_option( 'all' ); |
|
| 12 | - if ( isset( $options['plan_warmup'] ) && '' !== $options['plan_warmup'] && ! empty( $options['plan_warmup'] ) ) { |
|
| 9 | +$warm_up = get_post_meta(get_the_ID(), 'plan_warmup', true); |
|
| 10 | +if (false === $warm_up || '' === $warm_up) { |
|
| 11 | + $options = \lsx_health_plan\functions\get_option('all'); |
|
| 12 | + if (isset($options['plan_warmup']) && '' !== $options['plan_warmup'] && ! empty($options['plan_warmup'])) { |
|
| 13 | 13 | $warm_up = $options['plan_warmup']; |
| 14 | 14 | } |
| 15 | 15 | } |
@@ -18,12 +18,12 @@ discard block |
||
| 18 | 18 | <div class="warmup-container"> |
| 19 | 19 | <?php |
| 20 | 20 | |
| 21 | -if ( false !== $warm_up && '' !== $warm_up ) { |
|
| 22 | - if ( ! is_array( $warm_up ) ) { |
|
| 23 | - $warm_up = array( $warm_up ); |
|
| 21 | +if (false !== $warm_up && '' !== $warm_up) { |
|
| 22 | + if ( ! is_array($warm_up)) { |
|
| 23 | + $warm_up = array($warm_up); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | - $warmup_type = array( 'page', 'workout', 'exercise' ); |
|
| 26 | + $warmup_type = array('page', 'workout', 'exercise'); |
|
| 27 | 27 | $warmup_query = new WP_Query( |
| 28 | 28 | array( |
| 29 | 29 | 'post__in' => $warm_up, |
@@ -31,38 +31,38 @@ discard block |
||
| 31 | 31 | ) |
| 32 | 32 | ); |
| 33 | 33 | |
| 34 | - if ( $warmup_query->have_posts() ) { |
|
| 35 | - while ( $warmup_query->have_posts() ) { |
|
| 34 | + if ($warmup_query->have_posts()) { |
|
| 35 | + while ($warmup_query->have_posts()) { |
|
| 36 | 36 | $warmup_query->the_post(); |
| 37 | 37 | lsx_entry_before(); |
| 38 | - if ( 'workout' === get_post_type() ) { |
|
| 39 | - $connected_workouts = array( get_the_ID() ); |
|
| 38 | + if ('workout' === get_post_type()) { |
|
| 39 | + $connected_workouts = array(get_the_ID()); |
|
| 40 | 40 | ?> |
| 41 | 41 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
| 42 | 42 | <?php lsx_entry_top(); ?> |
| 43 | 43 | <div class="entry-content"> |
| 44 | 44 | <div class="single-plan-inner warmup-content"> |
| 45 | 45 | <div class="single-plan-section-title warmup-plan title-lined"> |
| 46 | - <?php lsx_get_svg_icon( 'warm.svg' ); ?> |
|
| 47 | - <h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2> |
|
| 46 | + <?php lsx_get_svg_icon('warm.svg'); ?> |
|
| 47 | + <h2><?php esc_html_e('Warm Up', 'lsx-health-plan'); ?></h2> |
|
| 48 | 48 | </div> |
| 49 | 49 | <?php |
| 50 | 50 | the_content(); |
| 51 | - wp_link_pages( array( |
|
| 51 | + wp_link_pages(array( |
|
| 52 | 52 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
| 53 | 53 | 'after' => '</div></div>', |
| 54 | 54 | 'link_before' => '<span>', |
| 55 | 55 | 'link_after' => '</span>', |
| 56 | - ) ); |
|
| 56 | + )); |
|
| 57 | 57 | ?> |
| 58 | 58 | </div> |
| 59 | 59 | </div><!-- .entry-content --> |
| 60 | 60 | <?php lsx_entry_bottom(); ?> |
| 61 | - <?php if ( null === $shortcode_args ) { ?> |
|
| 61 | + <?php if (null === $shortcode_args) { ?> |
|
| 62 | 62 | <div class="tip-row extras-box"> |
| 63 | - <?php if ( post_type_exists( 'tip' ) && lsx_health_plan_has_tips() ) { ?> |
|
| 63 | + <?php if (post_type_exists('tip') && lsx_health_plan_has_tips()) { ?> |
|
| 64 | 64 | <div class="tip-right"> |
| 65 | - <?php echo do_shortcode( '[lsx_health_plan_featured_tips_block]' ); ?> |
|
| 65 | + <?php echo do_shortcode('[lsx_health_plan_featured_tips_block]'); ?> |
|
| 66 | 66 | </div> |
| 67 | 67 | <?php } ?> |
| 68 | 68 | </div> |
@@ -77,17 +77,17 @@ discard block |
||
| 77 | 77 | <div class="entry-content"> |
| 78 | 78 | <div class="single-plan-inner warmup-content"> |
| 79 | 79 | <div class="single-plan-section-title warmup-plan title-lined"> |
| 80 | - <?php lsx_get_svg_icon( 'warm.svg' ); ?> |
|
| 81 | - <h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2> |
|
| 80 | + <?php lsx_get_svg_icon('warm.svg'); ?> |
|
| 81 | + <h2><?php esc_html_e('Warm Up', 'lsx-health-plan'); ?></h2> |
|
| 82 | 82 | </div> |
| 83 | 83 | <?php |
| 84 | 84 | the_content(); |
| 85 | - wp_link_pages( array( |
|
| 85 | + wp_link_pages(array( |
|
| 86 | 86 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
| 87 | 87 | 'after' => '</div></div>', |
| 88 | 88 | 'link_before' => '<span>', |
| 89 | 89 | 'link_after' => '</span>', |
| 90 | - ) ); |
|
| 90 | + )); |
|
| 91 | 91 | ?> |
| 92 | 92 | </div> |
| 93 | 93 | </div><!-- .entry-content --> |
@@ -8,10 +8,10 @@ discard block |
||
| 8 | 8 | |
| 9 | 9 | $warm_up = get_post_meta( get_the_ID(), 'plan_warmup', true ); |
| 10 | 10 | if ( false === $warm_up || '' === $warm_up ) { |
| 11 | - $options = \lsx_health_plan\functions\get_option( 'all' ); |
|
| 12 | - if ( isset( $options['plan_warmup'] ) && '' !== $options['plan_warmup'] && ! empty( $options['plan_warmup'] ) ) { |
|
| 13 | - $warm_up = $options['plan_warmup']; |
|
| 14 | - } |
|
| 11 | + $options = \lsx_health_plan\functions\get_option( 'all' ); |
|
| 12 | + if ( isset( $options['plan_warmup'] ) && '' !== $options['plan_warmup'] && ! empty( $options['plan_warmup'] ) ) { |
|
| 13 | + $warm_up = $options['plan_warmup']; |
|
| 14 | + } |
|
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | ?> |
@@ -19,25 +19,25 @@ discard block |
||
| 19 | 19 | <?php |
| 20 | 20 | |
| 21 | 21 | if ( false !== $warm_up && '' !== $warm_up ) { |
| 22 | - if ( ! is_array( $warm_up ) ) { |
|
| 23 | - $warm_up = array( $warm_up ); |
|
| 24 | - } |
|
| 22 | + if ( ! is_array( $warm_up ) ) { |
|
| 23 | + $warm_up = array( $warm_up ); |
|
| 24 | + } |
|
| 25 | 25 | |
| 26 | - $warmup_type = array( 'page', 'workout', 'exercise' ); |
|
| 27 | - $warmup_query = new WP_Query( |
|
| 28 | - array( |
|
| 29 | - 'post__in' => $warm_up, |
|
| 30 | - 'post_type' => $warmup_type, |
|
| 31 | - ) |
|
| 32 | - ); |
|
| 26 | + $warmup_type = array( 'page', 'workout', 'exercise' ); |
|
| 27 | + $warmup_query = new WP_Query( |
|
| 28 | + array( |
|
| 29 | + 'post__in' => $warm_up, |
|
| 30 | + 'post_type' => $warmup_type, |
|
| 31 | + ) |
|
| 32 | + ); |
|
| 33 | 33 | |
| 34 | - if ( $warmup_query->have_posts() ) { |
|
| 35 | - while ( $warmup_query->have_posts() ) { |
|
| 36 | - $warmup_query->the_post(); |
|
| 37 | - lsx_entry_before(); |
|
| 38 | - if ( 'workout' === get_post_type() ) { |
|
| 39 | - $connected_workouts = array( get_the_ID() ); |
|
| 40 | - ?> |
|
| 34 | + if ( $warmup_query->have_posts() ) { |
|
| 35 | + while ( $warmup_query->have_posts() ) { |
|
| 36 | + $warmup_query->the_post(); |
|
| 37 | + lsx_entry_before(); |
|
| 38 | + if ( 'workout' === get_post_type() ) { |
|
| 39 | + $connected_workouts = array( get_the_ID() ); |
|
| 40 | + ?> |
|
| 41 | 41 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
| 42 | 42 | <?php lsx_entry_top(); ?> |
| 43 | 43 | <div class="entry-content"> |
@@ -47,14 +47,14 @@ discard block |
||
| 47 | 47 | <h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2> |
| 48 | 48 | </div> |
| 49 | 49 | <?php |
| 50 | - the_content(); |
|
| 51 | - wp_link_pages( array( |
|
| 52 | - 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
| 53 | - 'after' => '</div></div>', |
|
| 54 | - 'link_before' => '<span>', |
|
| 55 | - 'link_after' => '</span>', |
|
| 56 | - ) ); |
|
| 57 | - ?> |
|
| 50 | + the_content(); |
|
| 51 | + wp_link_pages( array( |
|
| 52 | + 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
| 53 | + 'after' => '</div></div>', |
|
| 54 | + 'link_before' => '<span>', |
|
| 55 | + 'link_after' => '</span>', |
|
| 56 | + ) ); |
|
| 57 | + ?> |
|
| 58 | 58 | </div> |
| 59 | 59 | </div><!-- .entry-content --> |
| 60 | 60 | <?php lsx_entry_bottom(); ?> |
@@ -69,9 +69,9 @@ discard block |
||
| 69 | 69 | <?php } ?> |
| 70 | 70 | </article><!-- #post-## --> |
| 71 | 71 | <?php |
| 72 | - lsx_health_plan_workout_sets(); |
|
| 73 | - } else { |
|
| 74 | - ?> |
|
| 72 | + lsx_health_plan_workout_sets(); |
|
| 73 | + } else { |
|
| 74 | + ?> |
|
| 75 | 75 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
| 76 | 76 | <?php lsx_entry_top(); ?> |
| 77 | 77 | <div class="entry-content"> |
@@ -81,25 +81,25 @@ discard block |
||
| 81 | 81 | <h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2> |
| 82 | 82 | </div> |
| 83 | 83 | <?php |
| 84 | - the_content(); |
|
| 85 | - wp_link_pages( array( |
|
| 86 | - 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
| 87 | - 'after' => '</div></div>', |
|
| 88 | - 'link_before' => '<span>', |
|
| 89 | - 'link_after' => '</span>', |
|
| 90 | - ) ); |
|
| 91 | - ?> |
|
| 84 | + the_content(); |
|
| 85 | + wp_link_pages( array( |
|
| 86 | + 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
| 87 | + 'after' => '</div></div>', |
|
| 88 | + 'link_before' => '<span>', |
|
| 89 | + 'link_after' => '</span>', |
|
| 90 | + ) ); |
|
| 91 | + ?> |
|
| 92 | 92 | </div> |
| 93 | 93 | </div><!-- .entry-content --> |
| 94 | 94 | <?php lsx_entry_bottom(); ?> |
| 95 | 95 | </article><!-- #post-## --> |
| 96 | 96 | <?php |
| 97 | - } |
|
| 97 | + } |
|
| 98 | 98 | |
| 99 | - lsx_entry_after(); |
|
| 100 | - } |
|
| 101 | - wp_reset_postdata(); |
|
| 102 | - } |
|
| 99 | + lsx_entry_after(); |
|
| 100 | + } |
|
| 101 | + wp_reset_postdata(); |
|
| 102 | + } |
|
| 103 | 103 | } |
| 104 | 104 | ?> |
| 105 | 105 | </div> |
@@ -24,20 +24,20 @@ |
||
| 24 | 24 | <?php |
| 25 | 25 | the_content(); |
| 26 | 26 | |
| 27 | - wp_link_pages( array( |
|
| 27 | + wp_link_pages(array( |
|
| 28 | 28 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
| 29 | 29 | 'after' => '</div></div>', |
| 30 | 30 | 'link_before' => '<span>', |
| 31 | 31 | 'link_after' => '</span>', |
| 32 | - ) ); |
|
| 32 | + )); |
|
| 33 | 33 | ?> |
| 34 | 34 | </div> |
| 35 | 35 | </div><!-- .entry-content --> |
| 36 | - <?php if ( null === $shortcode_args ) { ?> |
|
| 37 | - <?php if ( post_type_exists( 'tip' ) && lsx_health_plan_has_tips() ) { ?> |
|
| 36 | + <?php if (null === $shortcode_args) { ?> |
|
| 37 | + <?php if (post_type_exists('tip') && lsx_health_plan_has_tips()) { ?> |
|
| 38 | 38 | <div class="tip-row extras-box"> |
| 39 | 39 | <div class="tip-right"> |
| 40 | - <?php echo do_shortcode( '[lsx_health_plan_featured_tips_block' ); ?> |
|
| 40 | + <?php echo do_shortcode('[lsx_health_plan_featured_tips_block'); ?> |
|
| 41 | 41 | </div> |
| 42 | 42 | </div> |
| 43 | 43 | <?php } ?> |
@@ -22,15 +22,15 @@ |
||
| 22 | 22 | <div class="entry-content"> |
| 23 | 23 | <div class="overview"> |
| 24 | 24 | <?php |
| 25 | - the_content(); |
|
| 26 | - |
|
| 27 | - wp_link_pages( array( |
|
| 28 | - 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
| 29 | - 'after' => '</div></div>', |
|
| 30 | - 'link_before' => '<span>', |
|
| 31 | - 'link_after' => '</span>', |
|
| 32 | - ) ); |
|
| 33 | - ?> |
|
| 25 | + the_content(); |
|
| 26 | + |
|
| 27 | + wp_link_pages( array( |
|
| 28 | + 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
| 29 | + 'after' => '</div></div>', |
|
| 30 | + 'link_before' => '<span>', |
|
| 31 | + 'link_after' => '</span>', |
|
| 32 | + ) ); |
|
| 33 | + ?> |
|
| 34 | 34 | </div> |
| 35 | 35 | </div><!-- .entry-content --> |
| 36 | 36 | <?php if ( null === $shortcode_args ) { ?> |
@@ -6,19 +6,19 @@ discard block |
||
| 6 | 6 | */ |
| 7 | 7 | global $connected_meals, $shortcode_args; |
| 8 | 8 | |
| 9 | -if ( is_singular( 'plan' ) ) { |
|
| 10 | - $section_key = get_query_var( 'section' ); |
|
| 11 | - if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) { |
|
| 12 | - $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
| 13 | - if ( isset( $section_info['connected_meals'] ) && '' !== $section_info['connected_meals'] ) { |
|
| 14 | - $connected_meals = \lsx_health_plan\functions\prep_array( $section_info['connected_meals'] ); |
|
| 9 | +if (is_singular('plan')) { |
|
| 10 | + $section_key = get_query_var('section'); |
|
| 11 | + if ('' !== $section_key && \lsx_health_plan\functions\plan\has_sections()) { |
|
| 12 | + $section_info = \lsx_health_plan\functions\plan\get_section_info($section_key); |
|
| 13 | + if (isset($section_info['connected_meals']) && '' !== $section_info['connected_meals']) { |
|
| 14 | + $connected_meals = \lsx_health_plan\functions\prep_array($section_info['connected_meals']); |
|
| 15 | 15 | } |
| 16 | 16 | } |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | // Check for any shortcode overrides. |
| 20 | -if ( null !== $shortcode_args && isset( $shortcode_args['include'] ) ) { |
|
| 21 | - $connected_meals = array( get_the_ID() ); |
|
| 20 | +if (null !== $shortcode_args && isset($shortcode_args['include'])) { |
|
| 21 | + $connected_meals = array(get_the_ID()); |
|
| 22 | 22 | } |
| 23 | 23 | ?> |
| 24 | 24 | |
@@ -27,65 +27,65 @@ discard block |
||
| 27 | 27 | <?php |
| 28 | 28 | |
| 29 | 29 | // Looking for meals. |
| 30 | - if ( empty( $connected_meals ) ) { |
|
| 31 | - $connected_meals = get_post_meta( get_the_ID(), 'connected_meals', true ); |
|
| 30 | + if (empty($connected_meals)) { |
|
| 31 | + $connected_meals = get_post_meta(get_the_ID(), 'connected_meals', true); |
|
| 32 | 32 | |
| 33 | - if ( empty( $connected_meals ) ) { |
|
| 34 | - $options = \lsx_health_plan\functions\get_option( 'all' ); |
|
| 35 | - if ( isset( $options['connected_meals'] ) && '' !== $options['connected_meals'] && ! empty( $options['connected_meals'] ) ) { |
|
| 33 | + if (empty($connected_meals)) { |
|
| 34 | + $options = \lsx_health_plan\functions\get_option('all'); |
|
| 35 | + if (isset($options['connected_meals']) && '' !== $options['connected_meals'] && ! empty($options['connected_meals'])) { |
|
| 36 | 36 | $connected_meals = $options['connected_meals']; |
| 37 | - if ( ! array( $connected_meals ) ) { |
|
| 38 | - $connected_meals = array( $connected_meals ); |
|
| 37 | + if ( ! array($connected_meals)) { |
|
| 38 | + $connected_meals = array($connected_meals); |
|
| 39 | 39 | } |
| 40 | 40 | } |
| 41 | 41 | } |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | // This is for the meal single template. |
| 45 | - if ( is_single() && is_singular( 'meal' ) ) { |
|
| 46 | - $connected_meals = array( get_the_ID() ); |
|
| 45 | + if (is_single() && is_singular('meal')) { |
|
| 46 | + $connected_meals = array(get_the_ID()); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | // Shoping list |
| 50 | - $shopping_list = get_post_meta( get_the_ID(), 'meal_shopping_list', true ); |
|
| 51 | - if ( ! empty( $shopping_list ) ) { |
|
| 50 | + $shopping_list = get_post_meta(get_the_ID(), 'meal_shopping_list', true); |
|
| 51 | + if ( ! empty($shopping_list)) { |
|
| 52 | 52 | ?> |
| 53 | - <a class="btn border-btn btn-shopping" href="<?php echo esc_url( get_page_link( $shopping_list ) ); ?>" target="_blank"><?php esc_html_e( 'Download Shopping List', 'lsx-health-plan' ); ?><i class="fa fa-download" aria-hidden="true"></i></a> |
|
| 53 | + <a class="btn border-btn btn-shopping" href="<?php echo esc_url(get_page_link($shopping_list)); ?>" target="_blank"><?php esc_html_e('Download Shopping List', 'lsx-health-plan'); ?><i class="fa fa-download" aria-hidden="true"></i></a> |
|
| 54 | 54 | <?php |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | // The top part |
| 58 | - echo wp_kses_post( wp_kses_post( lsx_health_plan_meal_main_content() ) ); |
|
| 58 | + echo wp_kses_post(wp_kses_post(lsx_health_plan_meal_main_content())); |
|
| 59 | 59 | |
| 60 | - if ( false !== $connected_meals && '' !== $connected_meals && ! empty( $connected_meals ) ) { |
|
| 60 | + if (false !== $connected_meals && '' !== $connected_meals && ! empty($connected_meals)) { |
|
| 61 | 61 | |
| 62 | - $args = array( |
|
| 62 | + $args = array( |
|
| 63 | 63 | 'orderby' => 'date', |
| 64 | 64 | 'order' => 'DESC', |
| 65 | 65 | 'post_type' => 'meal', |
| 66 | 66 | 'post__in' => $connected_meals, |
| 67 | 67 | ); |
| 68 | - $meals = new WP_Query( $args ); |
|
| 69 | - if ( $meals->have_posts() ) { |
|
| 70 | - while ( $meals->have_posts() ) { |
|
| 68 | + $meals = new WP_Query($args); |
|
| 69 | + if ($meals->have_posts()) { |
|
| 70 | + while ($meals->have_posts()) { |
|
| 71 | 71 | $meals->the_post(); |
| 72 | - $meal_id = get_the_ID(); |
|
| 72 | + $meal_id = get_the_ID(); |
|
| 73 | 73 | |
| 74 | 74 | |
| 75 | 75 | // Breakfast. |
| 76 | - $pre_breakfast_snack = get_post_meta( get_the_ID(), 'meal_pre_breakfast_snack', true ); |
|
| 77 | - $breakfast = get_post_meta( get_the_ID(), 'meal_breakfast', true ); |
|
| 78 | - $post_breakfast_snack = get_post_meta( get_the_ID(), 'meal_breakfast_snack', true ); |
|
| 76 | + $pre_breakfast_snack = get_post_meta(get_the_ID(), 'meal_pre_breakfast_snack', true); |
|
| 77 | + $breakfast = get_post_meta(get_the_ID(), 'meal_breakfast', true); |
|
| 78 | + $post_breakfast_snack = get_post_meta(get_the_ID(), 'meal_breakfast_snack', true); |
|
| 79 | 79 | |
| 80 | 80 | // Lunch. |
| 81 | - $pre_lunch_snack = get_post_meta( get_the_ID(), 'meal_pre_lunch_snack', true ); |
|
| 82 | - $lunch = get_post_meta( get_the_ID(), 'meal_lunch', true ); |
|
| 83 | - $post_lunch_snack = get_post_meta( get_the_ID(), 'meal_lunch_snack', true ); |
|
| 81 | + $pre_lunch_snack = get_post_meta(get_the_ID(), 'meal_pre_lunch_snack', true); |
|
| 82 | + $lunch = get_post_meta(get_the_ID(), 'meal_lunch', true); |
|
| 83 | + $post_lunch_snack = get_post_meta(get_the_ID(), 'meal_lunch_snack', true); |
|
| 84 | 84 | |
| 85 | 85 | // Dinner. |
| 86 | - $pre_dinner_snack = get_post_meta( get_the_ID(), 'meal_pre_dinner_snack', true ); |
|
| 87 | - $dinner = get_post_meta( get_the_ID(), 'meal_dinner', true ); |
|
| 88 | - $post_dinner_snack = get_post_meta( get_the_ID(), 'meal_dinner_snack', true ); |
|
| 86 | + $pre_dinner_snack = get_post_meta(get_the_ID(), 'meal_pre_dinner_snack', true); |
|
| 87 | + $dinner = get_post_meta(get_the_ID(), 'meal_dinner', true); |
|
| 88 | + $post_dinner_snack = get_post_meta(get_the_ID(), 'meal_dinner_snack', true); |
|
| 89 | 89 | |
| 90 | 90 | //Main Meals Title |
| 91 | 91 | //echo '<h3 class="meals-section-title">' . esc_html__( 'Meal Plan', 'lsx-health-plan' ) . '</h3>'; |
@@ -93,19 +93,19 @@ discard block |
||
| 93 | 93 | <div class="row eating-row"> |
| 94 | 94 | <div class="col-md-4 eating-column"> |
| 95 | 95 | <?php |
| 96 | - if ( ! empty( $pre_breakfast_snack ) ) { |
|
| 97 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 98 | - echo wp_kses_post( apply_filters( 'the_content', $pre_breakfast_snack ) ); |
|
| 96 | + if ( ! empty($pre_breakfast_snack)) { |
|
| 97 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>'; |
|
| 98 | + echo wp_kses_post(apply_filters('the_content', $pre_breakfast_snack)); |
|
| 99 | 99 | echo '</div>'; |
| 100 | 100 | } |
| 101 | - if ( ! empty( $breakfast ) ) { |
|
| 102 | - echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Breakfast', 'lsx-health-plan' ) . '</h3>'; |
|
| 103 | - echo wp_kses_post( apply_filters( 'the_content', $breakfast ) ); |
|
| 101 | + if ( ! empty($breakfast)) { |
|
| 102 | + echo '<div class="content-box"><h3 class="eating-title">' . esc_html__('Breakfast', 'lsx-health-plan') . '</h3>'; |
|
| 103 | + echo wp_kses_post(apply_filters('the_content', $breakfast)); |
|
| 104 | 104 | echo '</div>'; |
| 105 | 105 | } |
| 106 | - if ( ! empty( $post_breakfast_snack ) ) { |
|
| 107 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 108 | - echo wp_kses_post( apply_filters( 'the_content', $post_breakfast_snack ) ); |
|
| 106 | + if ( ! empty($post_breakfast_snack)) { |
|
| 107 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>'; |
|
| 108 | + echo wp_kses_post(apply_filters('the_content', $post_breakfast_snack)); |
|
| 109 | 109 | echo '</div>'; |
| 110 | 110 | } |
| 111 | 111 | |
@@ -113,24 +113,24 @@ discard block |
||
| 113 | 113 | 'meal_id' => $meal_id, |
| 114 | 114 | 'meal_time' => 'breakfast', |
| 115 | 115 | ); |
| 116 | - lsx_hp_meal_plan_recipes( $args ); |
|
| 116 | + lsx_hp_meal_plan_recipes($args); |
|
| 117 | 117 | ?> |
| 118 | 118 | </div> |
| 119 | 119 | <div class="col-md-4 eating-column"> |
| 120 | 120 | <?php |
| 121 | - if ( ! empty( $pre_lunch_snack ) ) { |
|
| 122 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 123 | - echo wp_kses_post( apply_filters( 'the_content', $pre_lunch_snack ) ); |
|
| 121 | + if ( ! empty($pre_lunch_snack)) { |
|
| 122 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>'; |
|
| 123 | + echo wp_kses_post(apply_filters('the_content', $pre_lunch_snack)); |
|
| 124 | 124 | echo '</div>'; |
| 125 | 125 | } |
| 126 | - if ( ! empty( $lunch ) ) { |
|
| 127 | - echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Lunch', 'lsx-health-plan' ) . '</h3>'; |
|
| 128 | - echo wp_kses_post( apply_filters( 'the_content', $lunch ) ); |
|
| 126 | + if ( ! empty($lunch)) { |
|
| 127 | + echo '<div class="content-box"><h3 class="eating-title">' . esc_html__('Lunch', 'lsx-health-plan') . '</h3>'; |
|
| 128 | + echo wp_kses_post(apply_filters('the_content', $lunch)); |
|
| 129 | 129 | echo '</div>'; |
| 130 | 130 | } |
| 131 | - if ( ! empty( $post_lunch_snack ) ) { |
|
| 132 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 133 | - echo wp_kses_post( apply_filters( 'the_content', $post_lunch_snack ) ); |
|
| 131 | + if ( ! empty($post_lunch_snack)) { |
|
| 132 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>'; |
|
| 133 | + echo wp_kses_post(apply_filters('the_content', $post_lunch_snack)); |
|
| 134 | 134 | echo '</div>'; |
| 135 | 135 | } |
| 136 | 136 | |
@@ -138,24 +138,24 @@ discard block |
||
| 138 | 138 | 'meal_id' => $meal_id, |
| 139 | 139 | 'meal_time' => 'lunch', |
| 140 | 140 | ); |
| 141 | - lsx_hp_meal_plan_recipes( $args ); |
|
| 141 | + lsx_hp_meal_plan_recipes($args); |
|
| 142 | 142 | ?> |
| 143 | 143 | </div> |
| 144 | 144 | <div class="col-md-4 eating-column"> |
| 145 | 145 | <?php |
| 146 | - if ( ! empty( $pre_dinner_snack ) ) { |
|
| 147 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 148 | - echo wp_kses_post( apply_filters( 'the_content', $pre_dinner_snack ) ); |
|
| 146 | + if ( ! empty($pre_dinner_snack)) { |
|
| 147 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>'; |
|
| 148 | + echo wp_kses_post(apply_filters('the_content', $pre_dinner_snack)); |
|
| 149 | 149 | echo '</div>'; |
| 150 | 150 | } |
| 151 | - if ( ! empty( $dinner ) ) { |
|
| 152 | - echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Dinner', 'lsx-health-plan' ) . '</h3>'; |
|
| 153 | - echo wp_kses_post( apply_filters( 'the_content', $dinner ) ); |
|
| 151 | + if ( ! empty($dinner)) { |
|
| 152 | + echo '<div class="content-box"><h3 class="eating-title">' . esc_html__('Dinner', 'lsx-health-plan') . '</h3>'; |
|
| 153 | + echo wp_kses_post(apply_filters('the_content', $dinner)); |
|
| 154 | 154 | echo '</div>'; |
| 155 | 155 | } |
| 156 | - if ( ! empty( $post_dinner_snack ) ) { |
|
| 157 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 158 | - echo wp_kses_post( apply_filters( 'the_content', $post_dinner_snack ) ); |
|
| 156 | + if ( ! empty($post_dinner_snack)) { |
|
| 157 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>'; |
|
| 158 | + echo wp_kses_post(apply_filters('the_content', $post_dinner_snack)); |
|
| 159 | 159 | echo '</div>'; |
| 160 | 160 | } |
| 161 | 161 | |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | 'meal_id' => $meal_id, |
| 164 | 164 | 'meal_time' => 'dinner', |
| 165 | 165 | ); |
| 166 | - lsx_hp_meal_plan_recipes( $args ); |
|
| 166 | + lsx_hp_meal_plan_recipes($args); |
|
| 167 | 167 | ?> |
| 168 | 168 | </div> |
| 169 | 169 | </div> |
@@ -7,18 +7,18 @@ discard block |
||
| 7 | 7 | global $connected_meals, $shortcode_args; |
| 8 | 8 | |
| 9 | 9 | if ( is_singular( 'plan' ) ) { |
| 10 | - $section_key = get_query_var( 'section' ); |
|
| 11 | - if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) { |
|
| 12 | - $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
| 13 | - if ( isset( $section_info['connected_meals'] ) && '' !== $section_info['connected_meals'] ) { |
|
| 14 | - $connected_meals = \lsx_health_plan\functions\prep_array( $section_info['connected_meals'] ); |
|
| 15 | - } |
|
| 16 | - } |
|
| 10 | + $section_key = get_query_var( 'section' ); |
|
| 11 | + if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) { |
|
| 12 | + $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
| 13 | + if ( isset( $section_info['connected_meals'] ) && '' !== $section_info['connected_meals'] ) { |
|
| 14 | + $connected_meals = \lsx_health_plan\functions\prep_array( $section_info['connected_meals'] ); |
|
| 15 | + } |
|
| 16 | + } |
|
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | // Check for any shortcode overrides. |
| 20 | 20 | if ( null !== $shortcode_args && isset( $shortcode_args['include'] ) ) { |
| 21 | - $connected_meals = array( get_the_ID() ); |
|
| 21 | + $connected_meals = array( get_the_ID() ); |
|
| 22 | 22 | } |
| 23 | 23 | ?> |
| 24 | 24 | |
@@ -26,152 +26,152 @@ discard block |
||
| 26 | 26 | |
| 27 | 27 | <?php |
| 28 | 28 | |
| 29 | - // Looking for meals. |
|
| 30 | - if ( empty( $connected_meals ) ) { |
|
| 31 | - $connected_meals = get_post_meta( get_the_ID(), 'connected_meals', true ); |
|
| 32 | - |
|
| 33 | - if ( empty( $connected_meals ) ) { |
|
| 34 | - $options = \lsx_health_plan\functions\get_option( 'all' ); |
|
| 35 | - if ( isset( $options['connected_meals'] ) && '' !== $options['connected_meals'] && ! empty( $options['connected_meals'] ) ) { |
|
| 36 | - $connected_meals = $options['connected_meals']; |
|
| 37 | - if ( ! array( $connected_meals ) ) { |
|
| 38 | - $connected_meals = array( $connected_meals ); |
|
| 39 | - } |
|
| 40 | - } |
|
| 41 | - } |
|
| 42 | - } |
|
| 43 | - |
|
| 44 | - // This is for the meal single template. |
|
| 45 | - if ( is_single() && is_singular( 'meal' ) ) { |
|
| 46 | - $connected_meals = array( get_the_ID() ); |
|
| 47 | - } |
|
| 48 | - |
|
| 49 | - // Shoping list |
|
| 50 | - $shopping_list = get_post_meta( get_the_ID(), 'meal_shopping_list', true ); |
|
| 51 | - if ( ! empty( $shopping_list ) ) { |
|
| 52 | - ?> |
|
| 29 | + // Looking for meals. |
|
| 30 | + if ( empty( $connected_meals ) ) { |
|
| 31 | + $connected_meals = get_post_meta( get_the_ID(), 'connected_meals', true ); |
|
| 32 | + |
|
| 33 | + if ( empty( $connected_meals ) ) { |
|
| 34 | + $options = \lsx_health_plan\functions\get_option( 'all' ); |
|
| 35 | + if ( isset( $options['connected_meals'] ) && '' !== $options['connected_meals'] && ! empty( $options['connected_meals'] ) ) { |
|
| 36 | + $connected_meals = $options['connected_meals']; |
|
| 37 | + if ( ! array( $connected_meals ) ) { |
|
| 38 | + $connected_meals = array( $connected_meals ); |
|
| 39 | + } |
|
| 40 | + } |
|
| 41 | + } |
|
| 42 | + } |
|
| 43 | + |
|
| 44 | + // This is for the meal single template. |
|
| 45 | + if ( is_single() && is_singular( 'meal' ) ) { |
|
| 46 | + $connected_meals = array( get_the_ID() ); |
|
| 47 | + } |
|
| 48 | + |
|
| 49 | + // Shoping list |
|
| 50 | + $shopping_list = get_post_meta( get_the_ID(), 'meal_shopping_list', true ); |
|
| 51 | + if ( ! empty( $shopping_list ) ) { |
|
| 52 | + ?> |
|
| 53 | 53 | <a class="btn border-btn btn-shopping" href="<?php echo esc_url( get_page_link( $shopping_list ) ); ?>" target="_blank"><?php esc_html_e( 'Download Shopping List', 'lsx-health-plan' ); ?><i class="fa fa-download" aria-hidden="true"></i></a> |
| 54 | 54 | <?php |
| 55 | - } |
|
| 56 | - |
|
| 57 | - // The top part |
|
| 58 | - echo wp_kses_post( wp_kses_post( lsx_health_plan_meal_main_content() ) ); |
|
| 59 | - |
|
| 60 | - if ( false !== $connected_meals && '' !== $connected_meals && ! empty( $connected_meals ) ) { |
|
| 61 | - |
|
| 62 | - $args = array( |
|
| 63 | - 'orderby' => 'date', |
|
| 64 | - 'order' => 'DESC', |
|
| 65 | - 'post_type' => 'meal', |
|
| 66 | - 'post__in' => $connected_meals, |
|
| 67 | - ); |
|
| 68 | - $meals = new WP_Query( $args ); |
|
| 69 | - if ( $meals->have_posts() ) { |
|
| 70 | - while ( $meals->have_posts() ) { |
|
| 71 | - $meals->the_post(); |
|
| 72 | - $meal_id = get_the_ID(); |
|
| 55 | + } |
|
| 56 | + |
|
| 57 | + // The top part |
|
| 58 | + echo wp_kses_post( wp_kses_post( lsx_health_plan_meal_main_content() ) ); |
|
| 59 | + |
|
| 60 | + if ( false !== $connected_meals && '' !== $connected_meals && ! empty( $connected_meals ) ) { |
|
| 61 | + |
|
| 62 | + $args = array( |
|
| 63 | + 'orderby' => 'date', |
|
| 64 | + 'order' => 'DESC', |
|
| 65 | + 'post_type' => 'meal', |
|
| 66 | + 'post__in' => $connected_meals, |
|
| 67 | + ); |
|
| 68 | + $meals = new WP_Query( $args ); |
|
| 69 | + if ( $meals->have_posts() ) { |
|
| 70 | + while ( $meals->have_posts() ) { |
|
| 71 | + $meals->the_post(); |
|
| 72 | + $meal_id = get_the_ID(); |
|
| 73 | 73 | |
| 74 | 74 | |
| 75 | - // Breakfast. |
|
| 76 | - $pre_breakfast_snack = get_post_meta( get_the_ID(), 'meal_pre_breakfast_snack', true ); |
|
| 77 | - $breakfast = get_post_meta( get_the_ID(), 'meal_breakfast', true ); |
|
| 78 | - $post_breakfast_snack = get_post_meta( get_the_ID(), 'meal_breakfast_snack', true ); |
|
| 75 | + // Breakfast. |
|
| 76 | + $pre_breakfast_snack = get_post_meta( get_the_ID(), 'meal_pre_breakfast_snack', true ); |
|
| 77 | + $breakfast = get_post_meta( get_the_ID(), 'meal_breakfast', true ); |
|
| 78 | + $post_breakfast_snack = get_post_meta( get_the_ID(), 'meal_breakfast_snack', true ); |
|
| 79 | 79 | |
| 80 | - // Lunch. |
|
| 81 | - $pre_lunch_snack = get_post_meta( get_the_ID(), 'meal_pre_lunch_snack', true ); |
|
| 82 | - $lunch = get_post_meta( get_the_ID(), 'meal_lunch', true ); |
|
| 83 | - $post_lunch_snack = get_post_meta( get_the_ID(), 'meal_lunch_snack', true ); |
|
| 80 | + // Lunch. |
|
| 81 | + $pre_lunch_snack = get_post_meta( get_the_ID(), 'meal_pre_lunch_snack', true ); |
|
| 82 | + $lunch = get_post_meta( get_the_ID(), 'meal_lunch', true ); |
|
| 83 | + $post_lunch_snack = get_post_meta( get_the_ID(), 'meal_lunch_snack', true ); |
|
| 84 | 84 | |
| 85 | - // Dinner. |
|
| 86 | - $pre_dinner_snack = get_post_meta( get_the_ID(), 'meal_pre_dinner_snack', true ); |
|
| 87 | - $dinner = get_post_meta( get_the_ID(), 'meal_dinner', true ); |
|
| 88 | - $post_dinner_snack = get_post_meta( get_the_ID(), 'meal_dinner_snack', true ); |
|
| 85 | + // Dinner. |
|
| 86 | + $pre_dinner_snack = get_post_meta( get_the_ID(), 'meal_pre_dinner_snack', true ); |
|
| 87 | + $dinner = get_post_meta( get_the_ID(), 'meal_dinner', true ); |
|
| 88 | + $post_dinner_snack = get_post_meta( get_the_ID(), 'meal_dinner_snack', true ); |
|
| 89 | 89 | |
| 90 | - //Main Meals Title |
|
| 91 | - //echo '<h3 class="meals-section-title">' . esc_html__( 'Meal Plan', 'lsx-health-plan' ) . '</h3>'; |
|
| 92 | - ?> |
|
| 90 | + //Main Meals Title |
|
| 91 | + //echo '<h3 class="meals-section-title">' . esc_html__( 'Meal Plan', 'lsx-health-plan' ) . '</h3>'; |
|
| 92 | + ?> |
|
| 93 | 93 | <div class="row eating-row"> |
| 94 | 94 | <div class="col-md-4 eating-column"> |
| 95 | 95 | <?php |
| 96 | - if ( ! empty( $pre_breakfast_snack ) ) { |
|
| 97 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 98 | - echo wp_kses_post( apply_filters( 'the_content', $pre_breakfast_snack ) ); |
|
| 99 | - echo '</div>'; |
|
| 100 | - } |
|
| 101 | - if ( ! empty( $breakfast ) ) { |
|
| 102 | - echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Breakfast', 'lsx-health-plan' ) . '</h3>'; |
|
| 103 | - echo wp_kses_post( apply_filters( 'the_content', $breakfast ) ); |
|
| 104 | - echo '</div>'; |
|
| 105 | - } |
|
| 106 | - if ( ! empty( $post_breakfast_snack ) ) { |
|
| 107 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 108 | - echo wp_kses_post( apply_filters( 'the_content', $post_breakfast_snack ) ); |
|
| 109 | - echo '</div>'; |
|
| 110 | - } |
|
| 111 | - |
|
| 112 | - $args = array( |
|
| 113 | - 'meal_id' => $meal_id, |
|
| 114 | - 'meal_time' => 'breakfast', |
|
| 115 | - ); |
|
| 116 | - lsx_hp_meal_plan_recipes( $args ); |
|
| 117 | - ?> |
|
| 96 | + if ( ! empty( $pre_breakfast_snack ) ) { |
|
| 97 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 98 | + echo wp_kses_post( apply_filters( 'the_content', $pre_breakfast_snack ) ); |
|
| 99 | + echo '</div>'; |
|
| 100 | + } |
|
| 101 | + if ( ! empty( $breakfast ) ) { |
|
| 102 | + echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Breakfast', 'lsx-health-plan' ) . '</h3>'; |
|
| 103 | + echo wp_kses_post( apply_filters( 'the_content', $breakfast ) ); |
|
| 104 | + echo '</div>'; |
|
| 105 | + } |
|
| 106 | + if ( ! empty( $post_breakfast_snack ) ) { |
|
| 107 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 108 | + echo wp_kses_post( apply_filters( 'the_content', $post_breakfast_snack ) ); |
|
| 109 | + echo '</div>'; |
|
| 110 | + } |
|
| 111 | + |
|
| 112 | + $args = array( |
|
| 113 | + 'meal_id' => $meal_id, |
|
| 114 | + 'meal_time' => 'breakfast', |
|
| 115 | + ); |
|
| 116 | + lsx_hp_meal_plan_recipes( $args ); |
|
| 117 | + ?> |
|
| 118 | 118 | </div> |
| 119 | 119 | <div class="col-md-4 eating-column"> |
| 120 | 120 | <?php |
| 121 | - if ( ! empty( $pre_lunch_snack ) ) { |
|
| 122 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 123 | - echo wp_kses_post( apply_filters( 'the_content', $pre_lunch_snack ) ); |
|
| 124 | - echo '</div>'; |
|
| 125 | - } |
|
| 126 | - if ( ! empty( $lunch ) ) { |
|
| 127 | - echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Lunch', 'lsx-health-plan' ) . '</h3>'; |
|
| 128 | - echo wp_kses_post( apply_filters( 'the_content', $lunch ) ); |
|
| 129 | - echo '</div>'; |
|
| 130 | - } |
|
| 131 | - if ( ! empty( $post_lunch_snack ) ) { |
|
| 132 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 133 | - echo wp_kses_post( apply_filters( 'the_content', $post_lunch_snack ) ); |
|
| 134 | - echo '</div>'; |
|
| 135 | - } |
|
| 136 | - |
|
| 137 | - $args = array( |
|
| 138 | - 'meal_id' => $meal_id, |
|
| 139 | - 'meal_time' => 'lunch', |
|
| 140 | - ); |
|
| 141 | - lsx_hp_meal_plan_recipes( $args ); |
|
| 142 | - ?> |
|
| 121 | + if ( ! empty( $pre_lunch_snack ) ) { |
|
| 122 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 123 | + echo wp_kses_post( apply_filters( 'the_content', $pre_lunch_snack ) ); |
|
| 124 | + echo '</div>'; |
|
| 125 | + } |
|
| 126 | + if ( ! empty( $lunch ) ) { |
|
| 127 | + echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Lunch', 'lsx-health-plan' ) . '</h3>'; |
|
| 128 | + echo wp_kses_post( apply_filters( 'the_content', $lunch ) ); |
|
| 129 | + echo '</div>'; |
|
| 130 | + } |
|
| 131 | + if ( ! empty( $post_lunch_snack ) ) { |
|
| 132 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 133 | + echo wp_kses_post( apply_filters( 'the_content', $post_lunch_snack ) ); |
|
| 134 | + echo '</div>'; |
|
| 135 | + } |
|
| 136 | + |
|
| 137 | + $args = array( |
|
| 138 | + 'meal_id' => $meal_id, |
|
| 139 | + 'meal_time' => 'lunch', |
|
| 140 | + ); |
|
| 141 | + lsx_hp_meal_plan_recipes( $args ); |
|
| 142 | + ?> |
|
| 143 | 143 | </div> |
| 144 | 144 | <div class="col-md-4 eating-column"> |
| 145 | 145 | <?php |
| 146 | - if ( ! empty( $pre_dinner_snack ) ) { |
|
| 147 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 148 | - echo wp_kses_post( apply_filters( 'the_content', $pre_dinner_snack ) ); |
|
| 149 | - echo '</div>'; |
|
| 150 | - } |
|
| 151 | - if ( ! empty( $dinner ) ) { |
|
| 152 | - echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Dinner', 'lsx-health-plan' ) . '</h3>'; |
|
| 153 | - echo wp_kses_post( apply_filters( 'the_content', $dinner ) ); |
|
| 154 | - echo '</div>'; |
|
| 155 | - } |
|
| 156 | - if ( ! empty( $post_dinner_snack ) ) { |
|
| 157 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 158 | - echo wp_kses_post( apply_filters( 'the_content', $post_dinner_snack ) ); |
|
| 159 | - echo '</div>'; |
|
| 160 | - } |
|
| 161 | - |
|
| 162 | - $args = array( |
|
| 163 | - 'meal_id' => $meal_id, |
|
| 164 | - 'meal_time' => 'dinner', |
|
| 165 | - ); |
|
| 166 | - lsx_hp_meal_plan_recipes( $args ); |
|
| 167 | - ?> |
|
| 146 | + if ( ! empty( $pre_dinner_snack ) ) { |
|
| 147 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 148 | + echo wp_kses_post( apply_filters( 'the_content', $pre_dinner_snack ) ); |
|
| 149 | + echo '</div>'; |
|
| 150 | + } |
|
| 151 | + if ( ! empty( $dinner ) ) { |
|
| 152 | + echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Dinner', 'lsx-health-plan' ) . '</h3>'; |
|
| 153 | + echo wp_kses_post( apply_filters( 'the_content', $dinner ) ); |
|
| 154 | + echo '</div>'; |
|
| 155 | + } |
|
| 156 | + if ( ! empty( $post_dinner_snack ) ) { |
|
| 157 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 158 | + echo wp_kses_post( apply_filters( 'the_content', $post_dinner_snack ) ); |
|
| 159 | + echo '</div>'; |
|
| 160 | + } |
|
| 161 | + |
|
| 162 | + $args = array( |
|
| 163 | + 'meal_id' => $meal_id, |
|
| 164 | + 'meal_time' => 'dinner', |
|
| 165 | + ); |
|
| 166 | + lsx_hp_meal_plan_recipes( $args ); |
|
| 167 | + ?> |
|
| 168 | 168 | </div> |
| 169 | 169 | </div> |
| 170 | 170 | <?php |
| 171 | - } |
|
| 172 | - } |
|
| 173 | - } |
|
| 174 | - ?> |
|
| 171 | + } |
|
| 172 | + } |
|
| 173 | + } |
|
| 174 | + ?> |
|
| 175 | 175 | <?php wp_reset_postdata(); ?> |
| 176 | 176 | </div> |
| 177 | 177 | <?php |