Current File : /var/www/kurt6690.2978.w2868/site96340/wp-content/themes/hopeui/inc/Scripts/Component.php |
<?php
/**
* HopeUI\Utility\Scripts\Component class
*
* @package hopeui
*/
namespace HopeUI\Utility\Scripts;
use HopeUI\Utility\Component_Interface;
use HopeUI\Utility\Templating_Component_Interface;
use function HopeUI\Utility\hopeui;
use function add_action;
use function wp_enqueue_script;
use function get_theme_file_uri;
use function get_theme_file_path;
class Component implements Component_Interface
{
/**
* Associative array of CSS files, as $handle => $data pairs.
* $data must be an array with keys 'file' (file path relative to 'assets/css' directory), and optionally 'global'
* (whether the file should immediately be enqueued instead of just being registered) and 'preload_callback'
* (callback function determining whether the file should be preloaded for the current request).
*
* Do not access this property directly, instead use the `get_css_files()` method.
*
* @var array
*/
protected $js_files;
/**
* Gets the unique identifier for the theme component.
*
* @return string Component slug.
*/
public function get_slug(): string
{
return 'scripts';
}
/**
* Adds the action and filter hooks to integrate with WordPress.
*/
public function initialize()
{
add_action('wp_enqueue_scripts', array($this, 'action_enqueue_scripts'));
}
/**
* Registers or enqueues stylesheets.
*
* Stylesheets that are global are enqueued. All other stylesheets are only registered, to be enqueued later.
*/
public function action_enqueue_scripts()
{
$js_uri = get_template_directory_uri() . '/assets/js/';
$js_dir = get_template_directory() . '/assets/js/';
$js_files = $this->get_js_files();
foreach ($js_files as $handle => $data) {
$src = $js_uri . $data['file'];
$version = hopeui()->get_asset_version($js_dir . $data['file']);
wp_enqueue_script($handle, $src, $data['dependency'], $version, $data['in_footer']);
}
}
/**
* Gets all JS files.
*
* @return array Associative array of $handle => $data pairs.
*/
protected function get_js_files(): array
{
if (is_array($this->js_files)) {
return $this->js_files;
}
$js_files = array(
'bootstrap' => array(
'file' => 'bootstrap.min.js',
'dependency' => array('jquery'),
'in_footer' => false,
),
'select2' => array(
'file' => 'select2.min.js',
'dependency' => array('jquery'),
'in_footer' => true,
),
'customizer' => array(
'file' => 'src/custom.js',
'dependency' => array('jquery'),
'in_footer' => true,
),
);
$this->js_files = array();
foreach ($js_files as $handle => $data) {
if (is_string($data)) {
$data = array('file' => $data);
}
if (empty($data['file'])) {
continue;
}
$this->js_files[$handle] = array_merge(
array(
'global' => false,
'preload_callback' => null,
'media' => 'all',
),
$data
);
}
return $this->js_files;
}
}