LLMS_Admin_Notices_Core::sidebar_support()

Check theme support for LifterLMS Sidebars


Return Return

(void)


Top ↑

Source Source

File: includes/admin/class.llms.admin.notices.core.php

136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
*/
public static function sidebar_support() {
 
    _deprecated_function( __METHOD__, '7.1.0' );
 
    $theme = wp_get_theme();
 
    $id = 'sidebars';
 
    if ( ! current_theme_supports( 'lifterlms-sidebars' ) && ! in_array( $theme->get_template(), llms_get_core_supported_themes(), true ) ) {
 
        $msg = sprintf(
            __( '<strong>The current theme, %1$s, does not declare support for LifterLMS Sidebars.</strong> Course and Lesson sidebars may not work as expected. Please see our %2$sintegration guide%3$s or check out our %4$sLaunchPad%5$s theme which is designed specifically for use with LifterLMS.', 'lifterlms' ),
            $theme->get( 'Name' ),
            '</a>',
            '</a>'
        );
 
        LLMS_Admin_Notices::add_notice(
            $id,
            $msg,
            array(
                'dismissible'      => true,
                'dismiss_for_days' => 730, // @TODO: there should be a "forever" setting here.
                'remindable'       => false,
                'type'             => 'warning',
            )
        );
 
    } elseif ( LLMS_Admin_Notices::has_notice( $id ) ) {
 
        LLMS_Admin_Notices::delete_notice( $id );


Top ↑

Changelog Changelog

Changelog
Version Description
4.5.0 Use strict comparison for in_array().
3.7.4 Unknown.
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.