Exemple #1
0
 public function method_missing()
 {
     $as = AutoLoader::get_asset_server();
     if (!$this->filename) {
         $this->filename = array_pop($this->route_array);
     }
     $this->filename = substr($this->filename, 0, strrpos($this->filename, "."));
     if (!$this->type) {
         $this->type = $this->route_array[2];
     }
     $this->response->add_header("Content-Type", $as->mime($this->type));
     $this->hash = $this->route_array[1];
     $this->response->write($as->built_bundle($this->filename, $this->type, $this->hash));
 }
Exemple #2
0
function js_bundle($name, $options = array(), $plugin = "")
{
    $as = AutoLoader::get_asset_server();
    echo $as->bundle_builder($name, $options, $plugin, "javascripts");
}