ASTRA_Ext_LifterLMS_Markup
Description
Source
File: addons/lifterlms/classes/class-astra-ext-lifterlms-markup.php
class ASTRA_Ext_LifterLMS_Markup {
/**
* Member Varible
*
* @var object instance
*/
private static $instance;
/**
* Initiator
*/
public static function get_instance() {
if ( ! isset( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Constructor
*/
public function __construct() {
add_action( 'wp', array( $this, 'llms_checkout' ) );
add_action( 'wp', array( $this, 'llms_learning' ) );
add_action( 'body_class', array( $this, 'body_class' ) );
add_action( 'astra_get_css_files', array( $this, 'add_styles' ) );
// Add LifterLMS icon in Menu.
add_action( 'astra_masthead_content', array( $this, 'lifterlms_profile_link_enabled' ) );
add_action( 'astra_masthead_content', array( $this, 'menu_lifter_lms_profile_link_wrapper_start' ), 9 );
add_action( 'astra_masthead_content', array( $this, 'menu_lifter_lms_profile_link_wrapper_end' ), 11 );
// Shortcode.
add_shortcode( 'astra_lifterlms_profile_link', array( $this, 'astra_lifterlms_profile_link_callback' ) );
}
/**
* LifterLMS Profile Link Shortcode.
*
* @param array $attrs Shortcode Attrs.
* @return mixed
*/
public function astra_lifterlms_profile_link_callback( $attrs ) {
ob_start();
self::astra_header_lifterlms();
return ob_get_clean();
}
/**
* Lifter LMS Profile and Navigation Wrapper end for center header layout
*
* @return void
*/
public function menu_lifter_lms_profile_link_wrapper_start() {
$header_layout = astra_get_option( 'header-layouts' );
$header_profile_link = astra_get_option( 'lifterlms-profile-link-enabled' );
if ( 'header-main-layout-2' === $header_layout && $header_profile_link ) {
echo '<div class="ast-header-nav-lifter-profile-wrap">';
}
}
/**
* Lifter LMS Profile Enabled.
*
* @return void
*/
public function menu_lifter_lms_profile_link_wrapper_end() {
$header_layout = astra_get_option( 'header-layouts' );
$header_profile_link = astra_get_option( 'lifterlms-profile-link-enabled' );
if ( 'header-main-layout-2' === $header_layout && $header_profile_link ) {
echo '</div>';
}
}
/**
* LifterLMS Profile Enabled.
*
* @return void
*/
public function lifterlms_profile_link_enabled() {
if ( astra_get_option( 'lifterlms-profile-link-enabled' ) ) {
self::astra_header_lifterlms();
}
}
/**
* Add LifterLMS icon markup
*
* @return void
* @since 1.0.0
*/
public static function astra_header_lifterlms() {
if ( is_user_logged_in() ) :
$my_account_permalink = get_permalink( get_option( 'lifterlms_myaccount_page_id' ) );
?>
<div class="main-header-log-out">
<a class="llms-profile-link" href="<?php echo esc_url_raw( apply_filters( 'astra_llms_profile_link', $my_account_permalink ) ); ?>"><?php echo get_avatar( get_current_user_id(), 45 ); ?></a>
</div>
<?php
endif;
}
/**
* Distraction Free for LLMS Course/Lession Page.
*
* @return void
*/
public function llms_learning() {
if ( is_lesson() || is_course() ) {
remove_action( 'lifterlms_single_course_before_summary', 'lifterlms_template_single_featured_image', 10 );
remove_action( 'lifterlms_single_course_before_summary', 'lifterlms_template_single_video', 20 );
remove_action( 'lifterlms_single_course_before_summary', 'lifterlms_template_single_audio', 30 );
$page_restricted = llms_page_restricted( get_the_id() );
$featured_img = true;
$description = true;
$meta = true;
$instructor = true;
$syllabus = true;
$progress_bar = true;
if ( $page_restricted['is_restricted'] ) {
$featured_img = astra_get_option( 'lifterlms-enable-visitor-featured-image' );
$description = astra_get_option( 'lifterlms-enable-visitor-course-description' );
$meta = astra_get_option( 'lifterlms-enable-visitor-course-meta' );
$instructor = astra_get_option( 'lifterlms-enable-visitor-instructor-detail' );
$syllabus = astra_get_option( 'lifterlms-enable-visitor-syllabus' );
} else {
if ( astra_get_option( 'lifterlms-distraction-free-learning' ) ) {
// HFB Support for distration free checkout.
if ( true === astra_addon_builder_helper()->is_header_footer_builder_active ) {
remove_action( 'astra_header', array( Astra_Builder_Header::get_instance(), 'prepare_header_builder_markup' ) );
remove_action( 'astra_footer', array( Astra_Builder_Footer::get_instance(), 'footer_markup' ), 10 );
}
remove_action( 'astra_header', 'astra_header_markup' );
remove_action( 'astra_footer', 'astra_footer_markup' );
add_action( 'astra_header', array( $this, 'header_markup' ) );
add_action( 'astra_footer', array( $this, 'footer_markup' ) );
}
$featured_img = astra_get_option( 'lifterlms-enable-featured-image' );
$description = astra_get_option( 'lifterlms-enable-course-description' );
$meta = astra_get_option( 'lifterlms-enable-course-meta' );
$instructor = astra_get_option( 'lifterlms-enable-instructor-detail' );
$progress_bar = astra_get_option( 'lifterlms-enable-progress-bar' );
}
if ( ! $featured_img ) {
add_filter( 'astra_get_option_blog-single-post-structure', array( $this, 'disable_featured_img' ) );
}
if ( ! $meta || ! $instructor ) {
remove_action( 'lifterlms_single_course_after_summary', 'lifterlms_template_single_meta_wrapper_start', 5 );
remove_action( 'lifterlms_single_course_after_summary', 'lifterlms_template_single_meta_wrapper_end', 50 );
}
if ( ! $instructor ) {
remove_action( 'lifterlms_single_course_after_summary', 'lifterlms_template_course_author', 40 );
}
if ( ! $progress_bar ) {
remove_action( 'lifterlms_single_course_after_summary', 'lifterlms_template_single_course_progress', 60 );
}
if ( ! $syllabus ) {
remove_action( 'lifterlms_single_course_after_summary', 'lifterlms_template_single_syllabus', 90 );
}
if ( ! $meta ) {
remove_action( 'lifterlms_single_course_after_summary', 'lifterlms_template_single_length', 10 );
remove_action( 'lifterlms_single_course_after_summary', 'lifterlms_template_single_difficulty', 20 );
remove_action( 'lifterlms_single_course_after_summary', 'lifterlms_template_single_course_tracks', 25 );
remove_action( 'lifterlms_single_course_after_summary', 'lifterlms_template_single_course_categories', 30 );
remove_action( 'lifterlms_single_course_after_summary', 'lifterlms_template_single_course_tags', 35 );
}
if ( is_course() && ! $description ) {
add_filter( 'the_excerpt', '__return_empty_string', 9 );
add_filter( 'the_content', '__return_empty_string', 9 );
}
}
}
/**
* Disable Featured Image.
*
* @param array $option Option value.
* @return array
*/
public function disable_featured_img( $option ) {
$index = array_search( 'single-image', $option );
if ( false !== $index ) {
unset( $option[ $index ] );
}
return $option;
}
/**
* Distraction Free for LLMS Checkout Page.
*
* @return void
*/
public function llms_checkout() {
if ( is_llms_checkout() && astra_get_option( 'lifterlms-distraction-free-checkout' ) ) {
// HFB Support for distration free checkout.
if ( true === astra_addon_builder_helper()->is_header_footer_builder_active ) {
remove_action( 'astra_header', array( Astra_Builder_Header::get_instance(), 'prepare_header_builder_markup' ) );
remove_action( 'astra_footer', array( Astra_Builder_Footer::get_instance(), 'footer_markup' ), 10 );
}
remove_action( 'astra_header', 'astra_header_markup' );
remove_action( 'astra_footer', 'astra_footer_markup' );
add_action( 'astra_header', array( $this, 'header_markup' ) );
add_action( 'astra_footer', array( $this, 'footer_markup' ) );
// Store Sidebar Layout.
add_filter( 'astra_page_layout', array( $this, 'checkout_sidebar_layout' ), 99 );
}
}
/**
* Header markup.
*/
public function header_markup() {
astra_get_template( 'lifterlms/templates/header.php' );
}
/**
* Footer markup.
*/
public function footer_markup() {
astra_get_template( 'lifterlms/templates/footer.php' );
}
/**
* Checkout sidebar layout.
*
* @param string $sidebar_layout Layout.
*
* @return string;
*/
public function checkout_sidebar_layout( $sidebar_layout ) {
return 'no-sidebar';
}
/**
* Body Class
*
* @param array $classes Default argument array.
*
* @return array;
*/
public function body_class( $classes ) {
$distraction_free_learning = astra_get_option( 'lifterlms-distraction-free-learning' );
$distraction_free_checkout = astra_get_option( 'lifterlms-distraction-free-checkout' );
$vertical_tab = astra_get_option( 'lifterlms-my-account-vertical' );
$page_restricted = llms_page_restricted( get_the_id() );
$header_profile_link = astra_get_option( 'lifterlms-profile-link-enabled' );
if ( ( ( is_course() || is_lesson() ) && $distraction_free_learning && ! $page_restricted['is_restricted'] ) || ( is_llms_checkout() && $distraction_free_checkout ) ) {
$classes[] = 'llms-distraction-free';
}
if ( $vertical_tab ) {
$classes[] = 'llms-student-dashboard-vertical';
}
if ( $header_profile_link ) {
$classes[] = 'llms-profile-link-enabled';
}
return $classes;
}
/**
* Add Styles
*/
public function add_styles() {
/*** Start Path Logic */
/* Define Variables */
$uri = ASTRA_EXT_LIFTERLMS_URI . 'assets/css/';
$path = ASTRA_EXT_LIFTERLMS_DIR . 'assets/css/';
$rtl = '';
if ( is_rtl() ) {
$rtl = '-rtl';
}
/* Directory and Extension */
$file_prefix = $rtl . '.min';
$dir_name = 'minified';
if ( SCRIPT_DEBUG ) {
$file_prefix = $rtl;
$dir_name = 'unminified';
}
$css_uri = $uri . $dir_name . '/';
$css_dir = $path . $dir_name . '/';
if ( defined( 'ASTRA_THEME_HTTP2' ) && ASTRA_THEME_HTTP2 ) {
$gen_path = $css_uri;
} else {
$gen_path = $css_dir;
}
/*** End Path Logic */
/* Add style.css */
Astra_Minify::add_css( $gen_path . 'style' . $file_prefix . '.css' );
}
}
Expand full source code Collapse full source code View on Trac
Methods
- __construct — Constructor
- add_styles — Add Styles
- astra_addon_4_6_2_enable_lifterlms_progress_bar_compatibility — Add backward support for LifterLMS "Enable Progress Bar" toggle option.
- astra_header_lifterlms — Add LifterLMS icon markup
- astra_lifterlms_profile_link_callback — LifterLMS Profile Link Shortcode.
- body_class — Body Class
- checkout_sidebar_layout — Checkout sidebar layout.
- disable_featured_img — Disable Featured Image.
- footer_markup — Footer markup.
- get_instance — Initiator
- header_main_rt_option — Add LifterLMS icon markup
- header_markup — Header markup.
- lifterlms_profile_link_enabled — LifterLMS Profile Enabled.
- llms_checkout — Distraction Free for LLMS Checkout Page.
- llms_learning — Distraction Free for LLMS Course/Lession Page.
- menu_lifter_lms_profile_link_wrapper_end — Lifter LMS Profile Enabled.
- menu_lifter_lms_profile_link_wrapper_start — Lifter LMS Profile and Navigation Wrapper end for center header layout