| Server IP : 89.108.64.180 / Your IP : 216.73.216.220 Web Server : Apache/2.4.41 (Ubuntu) System : Linux 89-108-64-180.cloudvps.regruhosting.ru 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-root ( 1010) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/www-root/data/www/imperial28.ru/wp-content/themes/jaxon/inc/ |
Upload File : |
<?php
/**
* Assets manager class.
*
* @author Themeisle
* @package jaxon
* @since 1.0.0
*/
namespace Jaxon;
/**
* Class Assets_Manager
*
* @package jaxon
*/
class Assets_Manager {
const ASSETS_SLUGS = array(
'frontend-css' => 'jaxon-style',
'editor-css' => 'jaxon-editor',
'welcome-notice' => 'jaxon-welcome-notice',
);
/**
* Enqueue style.
*
* @param string $handle Name of the style.
* @param string $file Path to the style file.
* @param string[] $dependencies Array of style handles this style depends on.
*
* @return void
*/
public static function enqueue_style( string $handle, string $file, array $dependencies = array() ) {
$uri = JAXON_URL . 'assets/css/build/' . $file . '.css';
wp_register_style( $handle, esc_url( $uri ), $dependencies, JAXON_VERSION );
wp_style_add_data( $handle, 'rtl', 'replace' );
wp_enqueue_style( $handle );
}
/**
* Enqueue script.
*
* @param string $handle Name of the style.
* @param string $file Path to the style file.
* @param bool $in_footer Whether to enqueue the script in the footer.
* @param string[] $dependencies Array of other script handles this script depends on.
* @param array $localization Array of data to pass to the script.
* @param string $localization_object_name Name of the object to create in the global scope.
*
* @return void
*/
public static function enqueue_script( string $handle, string $file, bool $in_footer = true, array $dependencies = array(), array $localization = array(), $localization_object_name = 'jaxonData' ) {
$uri = JAXON_URL . 'assets/js/build/' . $file . '.js';
$php = JAXON_DIR . 'assets/js/build/' . $file . '.asset.php';
$deps = is_file( $php ) ? include $php : array(
'dependencies' => array(),
'version' => JAXON_VERSION,
);
if ( ! empty( $dependencies ) ) {
$deps['dependencies'] = array_merge( $deps['dependencies'], $dependencies );
}
wp_register_script( $handle, esc_url( $uri ), $deps['dependencies'], $deps['version'], $in_footer );
if ( ! empty( $localization ) ) {
wp_localize_script( $handle, $localization_object_name, $localization );
}
wp_enqueue_script( $handle );
wp_set_script_translations( $handle, 'jaxon' );
}
/**
* Get image URL from assets folder.
*
* @param string $file Filename with extension.
*
* @return string
*/
public static function get_image_url( string $file ): string {
return JAXON_URL . 'assets/img/' . $file;
}
}