File: /dom877180/wp-content/plugins/wordpress-seo-premium/premium/classes/premium-assets.php
<?php
/**
* WPSEO Premium plugin file.
*
* @package WPSEO\Premium\Classes
*/
/**
* Loads the Premium assets.
*/
class WPSEO_Premium_Assets implements WPSEO_WordPress_Integration {
/**
* Registers the hooks.
*
* @codeCoverageIgnore Method relies on a WordPress function.
*
* @return void
*/
public function register_hooks() {
add_action( 'admin_init', array( $this, 'register_assets' ) );
}
/**
* Registers the assets for premium.
*
* @return void
*/
public function register_assets() {
$version = $this->get_version();
$scripts = $this->get_scripts( $version );
$styles = $this->get_styles( $version );
array_walk( $scripts, array( $this, 'register_script' ) );
array_walk( $styles, array( $this, 'register_style' ) );
}
/**
* Retrieves a flatten version.
*
* @codeCoverageIgnore Method uses a dependency.
*
* @return string The flatten version.
*/
protected function get_version() {
$asset_manager = new WPSEO_Admin_Asset_Manager();
return $asset_manager->flatten_version( WPSEO_VERSION );
}
/**
* Retrieves an array of script to register.
*
* @codeCoverageIgnore Returns a simple dataset.
*
* @param string $version Current version number.
*
* @return array The scripts.
*/
protected function get_scripts( $version ) {
return array(
array(
'name' => 'yoast-seo-premium-commons',
'source' => 'assets/js/dist/commons-premium-' . $version . WPSEO_CSSJS_SUFFIX . '.js',
'dependencies' => array(),
),
array(
'name' => WPSEO_Admin_Asset_Manager::PREFIX . 'premium-metabox',
'source' => 'assets/js/dist/wp-seo-premium-metabox-' . $version . WPSEO_CSSJS_SUFFIX . '.js',
'dependencies' => array(
'jquery',
'wp-util',
'underscore',
'wp-element',
'wp-i18n',
'wp-data',
'wp-components',
'yoast-seo-premium-commons',
WPSEO_Admin_Asset_Manager::PREFIX . 'components',
WPSEO_Admin_Asset_Manager::PREFIX . 'analysis',
),
),
array(
'name' => 'yoast-social-preview',
'source' => 'assets/js/dist/yoast-premium-social-preview-' . $version . WPSEO_CSSJS_SUFFIX . '.js',
'dependencies' => array( 'jquery', 'jquery-ui-core', 'yoast-seo-premium-commons', WPSEO_Admin_Asset_Manager::PREFIX . 'analysis' ),
),
array(
'name' => 'wp-seo-premium-custom-fields-plugin',
'source' => 'assets/js/dist/wp-seo-premium-custom-fields-plugin-' . $version . WPSEO_CSSJS_SUFFIX . '.js',
'dependencies' => array( 'jquery', 'yoast-seo-premium-commons' ),
),
array(
'name' => 'wp-seo-premium-quickedit-notification',
'source' => 'assets/js/dist/wp-seo-premium-quickedit-notification-' . $version . WPSEO_CSSJS_SUFFIX . '.js',
'dependencies' => array(
'jquery',
'wp-api',
'wp-api-fetch',
'yoast-seo-premium-commons',
),
),
array(
'name' => 'wp-seo-premium-redirect-notifications',
'source' => 'assets/js/dist/wp-seo-premium-redirect-notifications-' . $version . WPSEO_CSSJS_SUFFIX . '.js',
'dependencies' => array(
'jquery',
'wp-api',
'wp-api-fetch',
'yoast-seo-premium-commons',
),
),
array(
'name' => 'wp-seo-premium-redirect-notifications-gutenberg',
'source' => 'assets/js/dist/wp-seo-premium-redirect-notifications-gutenberg-' . $version . WPSEO_CSSJS_SUFFIX . '.js',
'dependencies' => array(
WPSEO_Admin_Asset_Manager::PREFIX . 'components',
'wp-plugins',
),
),
);
}
/**
* Retrieves an array of styles to register.
*
* @codeCoverageIgnore Returns a simple dataset.
*
* @param string $version Current version number.
*
* @return array The styles.
*/
protected function get_styles( $version ) {
return array(
array(
'name' => WPSEO_Admin_Asset_Manager::PREFIX . 'premium-metabox',
'source' => 'assets/css/dist/premium-metabox-' . $version . WPSEO_CSSJS_SUFFIX . '.css',
'dependencies' => array(),
),
array(
'name' => 'yoast-social-preview-css',
'source' => 'assets/dist/social_preview/yoast-social-preview-390.min.css',
'dependencies' => array(
WPSEO_Admin_Asset_Manager::PREFIX . 'metabox-css',
),
),
array(
'name' => 'yoast-premium-social-preview',
'source' => 'assets/css/dist/premium-social-preview-' . $version . '.min.css',
'dependencies' => array(
WPSEO_Admin_Asset_Manager::PREFIX . 'metabox-css',
),
),
);
}
/**
* Registers the given script to WordPress.
*
* @codeCoverageIgnore Method calls a WordPress function.
*
* @param array $script The script to register.
*
* @return void
*/
protected function register_script( $script ) {
wp_register_script(
$script['name'],
plugin_dir_url( WPSEO_PREMIUM_FILE ) . $script['source'],
$script['dependencies'],
WPSEO_VERSION
);
}
/**
* Registers the given style to WordPress.
*
* @codeCoverageIgnore Method calls a WordPress function.
*
* @param array $style The style to register.
*
* @return void
*/
protected function register_style( $style ) {
wp_register_style(
$style['name'],
plugin_dir_url( WPSEO_PREMIUM_FILE ) . $style['source'],
$style['dependencies'],
WPSEO_VERSION
);
}
}