Scripts.php 922 Bytes
<?php

namespace AC\Admin;

use AC\Asset\Location\Absolute;
use AC\Asset\Script;
use AC\Asset\Style;
use AC\Registerable;

class Scripts implements Registerable {

	/**
	 * @var Absolute
	 */
	private $location;

	public function __construct( Absolute $location ) {
		$this->location = $location;
	}

	public function register() {
		add_action( 'init', [ $this, 'register_scripts' ] );
	}

	public function register_scripts() {
		$assets = [
			new Script( 'ac-select2-core', $this->location->with_suffix( 'assets/js/select2.js' ) ),
			new Script( 'ac-select2', $this->location->with_suffix( 'assets/js/select2_conflict_fix.js' ), [ 'jquery', 'ac-select2-core' ] ),
			new Style( 'ac-select2', $this->location->with_suffix( 'assets/css/select2.css' ) ),
			new Style( 'ac-jquery-ui', $this->location->with_suffix( 'assets/css/ac-jquery-ui.css' ) ),
		];

		foreach ( $assets as $asset ) {
			$asset->register();
		}
	}

}