コード例 #1
0
ファイル: class.core.php プロジェクト: marleexoxo/FWC
 public function Dequeue_Frontend_Stylehseet($stylesheet_url)
 {
     if ($index = Array_Find($stylesheet_url, $this->arr_stylesheets) !== False) {
         unset($this->arr_stylesheets[$index]);
     }
 }
コード例 #2
0
ファイル: class.core.php プロジェクト: Gculos/farmcosales
 public function Dequeue_Frontend_Script($script_url)
 {
     if ($index = Array_Find($script_url, $this->arr_javascripts) !== False) {
         unset($this->arr_javascripts[$index]);
     }
 }