コード例 #1
0
 /**
  * Registers all JS files that were preregistered by priority.
  */
 protected function registerOrderedScriptFiles()
 {
     $this->sort($this->js);
     foreach ($this->js as $path => $details) {
         if ($this->canOutput($details['output'])) {
             $this->clientScript->registerScriptFile($path);
         }
     }
 }