*/ namespace RankMath\Admin; use RankMath\Helper; use RankMath\Runner; use RankMath\Traits\Hooker; defined( 'ABSPATH' ) || exit; /** * Assets class. * * @codeCoverageIgnore */ class Assets implements Runner { use Hooker; /** * Prefix for the enqueue handles. */ const PREFIX = 'rank-math-'; /** * Register hooks. */ public function hooks() { $this->action( 'admin_enqueue_scripts', 'register' ); $this->action( 'admin_enqueue_scripts', 'enqueue' ); $this->action( 'admin_enqueue_scripts', 'overwrite_wplink', 99 ); } /** * Register styles and scripts. */ public function register() { $js = rank_math()->plugin_url() . 'assets/admin/js/'; $css = rank_math()->plugin_url() . 'assets/admin/css/'; $vendor = rank_math()->plugin_url() . 'assets/vendor/'; // Styles. wp_register_style( self::PREFIX . 'common', $css . 'common.css', null, rank_math()->version ); wp_register_style( self::PREFIX . 'cmb2', $css . 'cmb2.css', null, rank_math()->version ); wp_register_style( self::PREFIX . 'dashboard', $css . 'dashboard.css', [ 'rank-math-common' ], rank_math()->version ); wp_register_style( self::PREFIX . 'plugin-feedback', $css . 'feedback.css', [ 'rank-math-common' ], rank_math()->version ); // Scripts. wp_register_script( 'clipboard', rank_math()->plugin_url() . 'assets/vendor/clipboard.min.js', null, '2.0.0', true ); wp_register_script( 'validate', rank_math()->plugin_url() . 'assets/vendor/jquery.validate.min.js', [ 'jquery' ], '1.19.0', true ); wp_register_script( self::PREFIX . 'validate', $js . 'validate.js', [ 'jquery' ], rank_math()->version, true ); wp_register_script( self::PREFIX . 'common', $js . 'common.js', [ 'jquery', 'validate' ], rank_math()->version, true ); wp_register_script( self::PREFIX . 'dashboard', $js . 'dashboard.js', [ 'jquery', 'clipboard', 'validate' ], rank_math()->version, true ); wp_register_script( self::PREFIX . 'plugin-feedback', $js . 'feedback.js', [ 'jquery' ], rank_math()->version, true ); // Select2. wp_register_style( 'select2-rm', $vendor . 'select2/select2.min.css', null, '4.0.6-rc.1' ); wp_register_script( 'select2-rm', $vendor . 'select2/select2.min.js', null, '4.0.6-rc.1', true ); Helper::add_json( 'hasPremium', \class_exists( '\\RankMath\\Premium' ) ); Helper::add_json( 'api', [ 'root' => esc_url_raw( get_rest_url() ), 'nonce' => ( wp_installing() && ! is_multisite() ) ? '' : wp_create_nonce( 'wp_rest' ), ] ); Helper::add_json( 'validationl10n', [ 'regexErrorDefault' => __( 'Please use the correct format.', 'rank-math' ), 'requiredErrorDefault' => __( 'This field is required.', 'rank-math' ), 'emailErrorDefault' => __( 'Please enter a valid email address.', 'rank-math' ), 'urlErrorDefault' => __( 'Please enter a valid URL.', 'rank-math' ), ] ); /** * Allow other plugins to register/deregister admin styles or scripts after plugin assets. */ $this->do_action( 'admin/register_scripts' ); } /** * Enqueue styles and scripts. */ public function enqueue() { $screen = get_current_screen(); // Our screens only. if ( ! in_array( $screen->taxonomy, Helper::get_allowed_taxonomies(), true ) && ! in_array( $screen->id, $this->get_admin_screen_ids(), true ) ) { return; } // Add thank you. $this->filter( 'admin_footer_text', 'admin_footer_text' ); Helper::add_json( 'maxTags', Helper::is_site_connected() ? 5 : 1 ); /** * Allow other plugins to enqueue/dequeue admin styles or scripts after plugin assets. */ $this->do_action( 'admin/enqueue_scripts' ); } /** * Add footer credit on admin pages. * * @param string $text Default text for admin footer. * @return string */ public function admin_footer_text( $text ) { /* translators: plugin url */ return Helper::is_whitelabel() ? $text : '' . sprintf( wp_kses_post( __( 'Thank you for using Rank Math', 'rank-math' ) ), 'https://s.rankmath.com/home' ) . ''; } /** * Overwrite wplink script file. * Rank Math adds new options in the link popup when editing a post. */ public function overwrite_wplink() { wp_deregister_script( 'wplink' ); wp_register_script( 'wplink', rank_math()->plugin_url() . 'assets/admin/js/wplink.js', [ 'jquery', 'wpdialogs' ], null, true ); wp_localize_script( 'wplink', 'wpLinkL10n', [ 'title' => esc_html__( 'Insert/edit link', 'rank-math' ), 'update' => esc_html__( 'Update', 'rank-math' ), 'save' => esc_html__( 'Add Link', 'rank-math' ), 'noTitle' => esc_html__( '(no title)', 'rank-math' ), 'noMatchesFound' => esc_html__( 'No matches found.', 'rank-math' ), 'linkSelected' => esc_html__( 'Link selected.', 'rank-math' ), 'linkInserted' => esc_html__( 'Link inserted.', 'rank-math' ), 'relCheckbox' => __( 'Add rel="nofollow"', 'rank-math' ), 'linkTitle' => esc_html__( 'Link Title', 'rank-math' ), ] ); } /** * Enqueues styles. * * @param string $style The name of the style to enqueue. */ public function enqueue_style( $style ) { wp_enqueue_style( self::PREFIX . $style ); } /** * Enqueues scripts. * * @param string $script The name of the script to enqueue. */ public function enqueue_script( $script ) { wp_enqueue_script( self::PREFIX . $script ); } /** * Get admin screen ids. * * @return array */ private function get_admin_screen_ids() { $pages = [ 'toplevel_page_rank-math', 'rank-math_page_rank-math-role-manager', 'rank-math_page_rank-math-seo-analysis', 'rank-math_page_rank-math-404-monitor', 'rank-math_page_rank-math-redirections', 'rank-math_page_rank-math-link-builder', 'rank-math_page_rank-math-search-console', 'rank-math_page_rank-math-import-export', 'rank-math_page_rank-math-help', 'user-edit', 'profile', ]; return array_merge( $pages, Helper::get_allowed_post_types() ); } }