Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: class-lp-admin-assets.php
<?php use LearnPress\Helpers\Template; /** * Class LP_Admin_Assets * * Manage admin assets */ class LP_Admin_Assets extends LP_Abstract_Assets { protected static $_instance; /** * LP_Admin_Assets constructor. */ protected function __construct() { add_action( 'admin_footer', array( $this, 'add_elements_global' ) ); add_action( 'admin_head', [ $this, 'load_scripts_styles_on_head' ], - 1 ); parent::__construct(); } /** * Add javascript to head * Add style to head * * @return void * @version 1.0.0 * @since 4.2.5.6 */ public function load_scripts_styles_on_head() { LP_Helper::print_inline_script_tag( 'lpDataAdmin', $this->localize_data_global(), [ 'id' => 'lpDataAdmin' ] ); } /** * Localize data for all page backend. * * @return array * @since 4.2.5.6 * @version 1.0.1 */ public function localize_data_global(): array { return apply_filters( 'learn-press/admin/localize-data-global', [ 'site_url' => site_url(), 'user_id' => get_current_user_id(), 'is_admin' => current_user_can( ADMIN_ROLE ), 'theme' => get_stylesheet(), 'lp_version' => LP()->version, 'lp_rest_url' => get_rest_url(), 'lp_rest_load_ajax' => get_rest_url( null, 'lp/v1/load_content_via_ajax/' ), 'nonce' => wp_create_nonce( 'wp_rest' ), 'courses_url' => learn_press_get_page_link( 'courses' ), 'urlParams' => lp_archive_skeleton_get_args(), 'i18n' => [ 'select_page' => esc_html__( 'Select page', 'learnpress' ), ], ] ); } /** * Get localize script * * @return array */ protected function _get_script_data(): array { $current_screen = get_current_screen(); return array( 'learn-press-global' => learn_press_global_script_params(), 'learn-press-meta-box-order' => apply_filters( 'learn-press/meta-box-order/script-data', array( 'i18n_error' => esc_html__( 'Oops! Error.', 'learnpress' ), 'i18n_guest' => esc_html__( 'Guest', 'learnpress' ), ) ), 'learn-press-update' => apply_filters( 'learn-press/upgrade/script-data', array( 'i18n_confirm' => esc_html__( 'Before taking this action, we strongly recommend you backup your site first before proceeding. If you encounter any problems, please do not hesitate to contact our support team. Are you sure to proceed with the update protocol?', 'learnpress' ), ) ), 'lp-admin' => apply_filters( 'learn-press/admin/script-data', array( 'ajax' => admin_url( 'admin-ajax.php' ), 'questionTypes' => learn_press_question_types(), 'supportAnswerOptions' => learn_press_get_question_support_answer_options(), 'screen' => $current_screen, ) ), 'learn-press-admin-course-editor' => $this->get_course_data_for_editor_vue(), ); } /** * Get default scripts in admin. * * @return mixed */ protected function _get_scripts(): array { $lp_admin_js = new LP_Asset_Key( $this->url( 'js/dist/admin/admin' . self::$_min_assets . '.js' ), [ 'wp-i18n', 'lp-utils' ], [], 0, 0, '', [ 'strategy' => 'defer' ] ); $lp_admin_js->exclude_screen( [ 'plugin-install', 'learnpress_page_learn-press-statistics', 'learnpress_page_learn-press-addons', ] ); $scripts = apply_filters( 'learn-press/admin-default-scripts', array( // need build if change source vue 'vue-libs' => new LP_Asset_Key( $this->url( 'js/vendor/vue/vue_libs.js' ) ), 'select2' => new LP_Asset_Key( $this->url( 'src/js/vendor/select2.full.min.js' ) ), 'jquery-tipsy' => new LP_Asset_Key( $this->url( 'src/js/vendor/jquery/jquery-tipsy.js' ) ), 'html2pdf' => new LP_Asset_Key( $this->url( 'src/js/vendor/html2pdf.bundle.min.js' ) ), 'lp-utils' => new LP_Asset_Key( $this->url( 'js/dist/utils' . self::$_min_assets . '.js' ), array(), array(), 1 ), 'dropdown-pages' => new LP_Asset_Key( $this->url( self::$_folder_source . 'js/admin/share/dropdown-pages' . self::$_min_assets . '.js' ), [ 'lp-utils' ] ), 'jquery-ui-timepicker-addon' => new LP_Asset_Key( $this->url( 'src/js/vendor/jquery/jquery-ui-timepicker-addon.js' ), array( 'jquery-ui-datepicker' ) ), 'lp-addons' => new LP_Asset_Key( $this->url( 'js/dist/admin/addons' . self::$_min_assets . '.js' ), [], [ 'learnpress_page_learn-press-addons' ], 0, 0, '', [ 'strategy' => 'async' ] ), 'advanced-list' => new LP_Asset_Key( $this->url( self::$_folder_source . 'js/admin/share/advanced-list' . self::$_min_assets . '.js' ) ), 'learn-press-global' => new LP_Asset_Key( $this->url( self::$_folder_source . 'js/global' . self::$_min_assets . '.js' ), array( 'jquery', 'underscore', 'utils', 'jquery-ui-sortable', 'select2' ) ), 'lp-admin' => $lp_admin_js, 'lp-admin-learnpress' => new LP_Asset_Key( $this->url( 'js/dist/admin/learnpress' . self::$_min_assets . '.js' ), array( 'learn-press-global', 'wp-color-picker', 'jquery-tipsy', 'dropdown-pages', 'wp-api-fetch', 'jquery-ui-timepicker-addon', ), array( LP_LESSON_CPT, LP_QUIZ_CPT, LP_COURSE_CPT, LP_ORDER_CPT, 'learnpress_page_learn-press-settings', ), 0, 1 ), 'lp-duplicate-post' => new LP_Asset_Key( $this->url( self::$_folder_source . 'js/admin/lp-duplicate-post' . self::$_min_assets . '.js' ), array( 'jquery' ), array( 'edit-' . LP_COURSE_CPT, 'edit-' . LP_LESSON_CPT, 'edit-' . LP_QUESTION_CPT, 'edit-' . LP_QUIZ_CPT, ), 0, 1 ), 'learn-press-admin-course-editor' => new LP_Asset_Key( $this->url( 'js/dist/admin/editor/course' . self::$_min_assets . '.js' ), array( 'vue-libs', 'lp-utils' ), array( LP_COURSE_CPT ), 0, 0 ), 'learn-press-admin-quiz-editor' => new LP_Asset_Key( $this->url( 'js/dist/admin/editor/quiz' . self::$_min_assets . '.js' ), array( 'vue-libs', 'lp-utils' ), array( LP_QUIZ_CPT ), 0, 0 ), 'learn-press-admin-question-editor' => new LP_Asset_Key( $this->url( 'js/dist/admin/editor/question' . self::$_min_assets . '.js' ), array( 'vue-libs', 'lodash', 'lp-utils' ), array( LP_QUESTION_CPT ), 0, 0 ), 'learn-press-meta-box-order' => new LP_Asset_Key( $this->url( self::$_folder_source . 'js/admin/partial/meta-box-order' . self::$_min_assets . '.js' ), array( 'vue-libs', 'advanced-list', 'lp-modal-search-courses', 'lp-modal-search-users', ), array( LP_ORDER_CPT ), 0, 1 ), 'lp-admin-order' => new LP_Asset_Key( $this->url( 'js/dist/admin/admin-order' . self::$_min_assets . '.js' ), array( 'html2pdf' ), array( LP_ORDER_CPT ), 0, 1 ), /*'learn-press-sync-data' => new LP_Asset_Key( $this->url( 'js/dist/admin/pages/sync-data' . self::$_min_assets . '.js' ), array(), array( 'learnpress_page_learn-press-tools' ), 0, 1 ),*/ 'lp-setup' => new LP_Asset_Key( $this->url( 'js/dist/admin/pages/setup' . self::$_min_assets . '.js' ), array( 'jquery', 'dropdown-pages' ), array( 'lp-page-setup' ), 0, 1 ), /*'learn-press-statistic' => new LP_Asset_Key( $this->url( 'js/dist/admin/pages/statistic' . self::$_min_assets . '.js' ), array( 'jquery', 'jquery-ui-datepicker', 'chart' ), array( 'learnpress_page_learn-press-statistics' ), 0, 1 ),*/ 'lp-modal-search-courses' => new LP_Asset_Key( $this->url( self::$_folder_source . 'js/admin/share/modal-search-courses' . self::$_min_assets . '.js' ), array( 'vue-libs', 'jquery', ), array( LP_ORDER_CPT ), 1, 1 ), 'lp-modal-search-users' => new LP_Asset_Key( $this->url( self::$_folder_source . 'js/admin/share/modal-search-users' . self::$_min_assets . '.js' ), array( 'jquery' ), array( LP_ORDER_CPT ), 1, 1 ), 'lp-tools-course-tab' => new LP_Asset_Key( $this->url( 'js/dist/admin/pages/tools' . self::$_min_assets . '.js' ), array( 'jquery', 'wp-element', 'wp-compose', 'wp-components', 'wp-data', 'wp-hooks', 'wp-api-fetch', 'lodash', 'vue-libs', ), array( 'learnpress_page_learn-press-tools' ), 0, 1, '', [ 'strategy' => 'defer' ] ), 'lp-dashboard' => new LP_Asset_Key( self::url( 'js/dist/admin/pages/dashboard' . self::$_min_assets . '.js' ), [], array( 'dashboard' ), 0, 1 ), 'lp-widgets-admin' => new LP_Asset_Key( self::url( 'js/dist/admin/pages/widgets' . self::$_min_assets . '.js' ), array( 'wp-url', 'wp-api-fetch', 'lodash', ), array( 'widgets', 'elementor' ), 0, 1 ), 'lp-admin-notices' => new LP_Asset_Key( self::url( 'js/dist/admin/admin-notices' . self::$_min_assets . '.js' ), [ 'wp-api-fetch' ], [], 1, 0, '', [ 'strategy' => 'async' ] ), 'lp-material' => new LP_Asset_Key( $this->url( 'js/dist/admin/course-material' . self::$_min_assets . '.js' ), array(), array( LP_COURSE_CPT, LP_LESSON_CPT, ), 0, 1 ), 'lp-admin-tools' => new LP_Asset_Key( $this->url( 'js/dist/admin/admin-tools' . self::$_min_assets . '.js' ), [], array( 'learnpress_page_learn-press-tools' ), 0, 1, '', [ 'strategy' => 'defer' ] ), 'lp-admin-statistic' => new LP_Asset_Key( $this->url( 'js/dist/admin/admin-statistic' . self::$_min_assets . '.js' ), array( 'wp-api-fetch' ), array( 'learnpress_page_learn-press-statistics' ), 0, 0, '', [ 'strategy' => 'defer' ] ), 'lp-load-ajax' => new LP_Asset_Key( self::url( 'js/dist/loadAJAX' . self::$_min_assets . '.js' ), [], [], 0, 0, '1.0.2', [ 'strategy' => 'async' ] ), ) ); return $scripts; } /** * Get default styles in admin. * * @return mixed */ protected function _get_styles(): array { $is_rtl = is_rtl() ? '-rtl' : ''; return apply_filters( 'learn-press/admin-default-styles', array( 'select2' => new LP_Asset_Key( $this->url( 'src/css/vendor/select2.min.css' ) ), /*'font-awesome' => new LP_Asset_Key( $this->url( 'src/css/vendor/font-awesome-5.min.css' ) ),*/ 'jquery-ui' => new LP_Asset_Key( $this->url( 'src/css/vendor/jquery-ui/jquery-ui.min.css' ) ), 'jquery-ui-timepicker' => new LP_Asset_Key( $this->url( 'src/css/vendor/jquery-ui-timepicker-addon.css' ) ), 'jquery-tipsy' => new LP_Asset_Key( $this->url( 'src/css/vendor/jquery.tipsy.css' ) ), 'learn-press-admin' => new LP_Asset_Key( $this->url( 'css/admin/admin' . $is_rtl . self::$_min_assets . '.css' ), array( 'wp-color-picker', 'wp-components', 'select2', 'jquery-ui', 'jquery-ui-timepicker', // 'font-awesome', 'jquery-tipsy', ), array(), 0 ), 'learn-press-statistic' => new LP_Asset_Key( LP_CSS_URL . 'admin/statistic' . $is_rtl . self::$_min_assets . '.css', array(), array( 'learners_page_learn-press-statistics' ), 0 ), 'lp-tom-select' => new LP_Asset_Key( 'https://cdn.jsdelivr.net/npm/tom-select@2.2.3/dist/css/tom-select.css', [], array( 'learnpress_page_learn-press-tools' ), 0 ), ) ); } /** * Register and enqueue needed js and styles */ public function load_scripts() { $screen_id = LP_Admin::instance()->get_screen_id(); if ( empty( $screen_id ) ) { return; } //wp_enqueue_media(); //Todo: tungnx need check why call for that using. $this->handle_js( $screen_id ); $this->handle_style( $screen_id ); do_action( 'learn-press/admin/after-enqueue-scripts' ); } /** * Show overlay */ public function add_elements_global() { echo '<div class="lp-overlay">'; apply_filters( 'learnpress/admin/modal-dialog', learn_press_get_template( 'global/lp-modal-overlay' ) ); echo '</div>'; apply_filters( 'learnpress/admin/steps', learn_press_get_template( 'global/lp-group-step' ) ); // Added notify message when action done. Template::instance()->get_admin_template( 'global/notify-action.php' ); } /** * Get course data for Vue Editor Course use. * * @return array|mixed|null */ public function get_course_data_for_editor_vue() { global $post, $pagenow; if ( empty( $post ) || ( get_post_type() !== LP_COURSE_CPT ) || ! in_array( $pagenow, array( 'post.php', 'post-new.php', ) ) ) { return []; } $course = learn_press_get_course( $post->ID ); $hidden_sections = get_post_meta( $post->ID, '_admin_hidden_sections', true ); return apply_filters( 'learn-press/admin-localize-course-editor', array( 'root' => array( 'course_id' => $post->ID, 'auto_draft' => get_post_status( $post->ID ) == 'auto-draft', 'ajax' => admin_url( 'index.php' ), 'disable_curriculum' => false, 'action' => 'admin_course_editor', 'nonce' => wp_create_nonce( 'learnpress_update_curriculum' ), ), 'chooseItems' => array( 'types' => learn_press_course_get_support_item_types(), 'open' => false, 'addedItems' => array(), 'items' => array(), ), 'i18n' => array( 'item' => __( 'item', 'learnpress' ), 'new_section_item' => __( 'Create a new', 'learnpress' ), 'back' => __( 'Back', 'learnpress' ), 'selected_items' => __( 'Selected items', 'learnpress' ), 'confirm_remove_item' => __( 'Do you want to remove the "{{ITEM_NAME}}" item from the course?', 'learnpress' ), 'confirm_trash_item' => __( 'Do you want to move the "{{ITEM_NAME}}" item to the trash?', 'learnpress' ), 'item_labels' => array( 'singular' => __( 'Item', 'learnpress' ), 'plural' => __( 'Items', 'learnpress' ), ), 'notice_sale_price' => __( 'The course sale price must be less than the regular price', 'learnpress' ), 'notice_price' => __( 'The course price must be greater than the sale price', 'learnpress' ), 'notice_sale_start_date' => __( 'The sale start date must be before the sale end date', 'learnpress' ), 'notice_sale_end_date' => __( 'The sale end date must be after the sale start date', 'learnpress' ), 'notice_invalid_date' => __( 'Invalid date', 'learnpress' ), ), 'sections' => array( 'sections' => $course->get_curriculum_raw(), 'hidden_sections' => ! empty( $hidden_sections ) ? $hidden_sections : array(), 'urlEdit' => admin_url( 'post.php?action=edit&post=' ), ), ) ); } public static function instance() { if ( ! is_admin() ) { return null; } if ( ! self::$_instance ) { self::$_instance = new self(); } return self::$_instance; } } /** * Shortcut function to get instance of LP_Admin_Assets * * @return LP_Admin_Assets|null * Addon Certificate, Import/Export is using. */ function learn_press_admin_assets() { return LP_Admin_Assets::instance(); }