Files
carpseeds.pl/wp-content/plugins/jet-menu/cherry-framework/modules/cherry5-assets-loader/inc/cherry5-assets-loader-handle-js.php
2024-07-15 11:28:08 +02:00

51 lines
880 B
PHP

<?php
/**
* JS lodaer handler class
*
* @package Cherry_Framework
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2017, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
if ( ! class_exists( 'Cherry5_Assets_Loader_Handle_JS' ) ) {
/**
* Define Cherry5_Assets_Loader_Handle_JS class
*/
class Cherry5_Assets_Loader_Handle_JS extends Cherry5_Assets_Loader_Handle {
/**
* Handles list
*
* @var array
*/
public $handles = array();
/**
* Handles list
*
* @var array
*/
public $prepared_handles = array();
/**
* Define required properies
*/
public function __construct() {
$this->context = 'script';
$this->init();
}
}
}