예제 #1
0
 /**
  *  Get the scripts urls
  */
 public function getScripts()
 {
     $scripts = array();
     parent::order();
     foreach ($this->resolved as $id) {
         if (isset($this->registered[$id]['url'])) {
             $scripts[] = $this->registered[$id]['url'];
         }
     }
     return $scripts;
 }