SIS_Admin_Main::add_template PHP 메소드

add_template() 공개 정적인 메소드

Include the javascript template
public static add_template ( ) : boolean
리턴 boolean
    public static function add_template()
    {
        global $pagenow;
        if ('options-media.php' !== $pagenow) {
            return false;
        }
        if (is_file(SIS_DIR . '/templates/admin-js.html')) {
            include SIS_DIR . '/templates/admin-js.html';
        }
        return true;
    }