예제 #1
0
파일: Style.php 프로젝트: sawan34/tanzi
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->hookName = 'wp_enqueue_scripts';
     $this->media = 'all';
 }
예제 #2
0
 /**
  * Returns only not loaded assets
  * @param \SupsysticTables_Ui_Asset $asset
  * @return bool
  */
 public function filterAssets(SupsysticTables_Ui_Asset $asset)
 {
     return !$asset->isLoaded() && 'wp_enqueue_scripts' === $asset->getHookName();
 }