Commit 59123fdf authored by Taylor Otwell's avatar Taylor Otwell

import file class for assets.

parent fe0f4a76
<?php namespace System; <?php namespace System;
use System\File;
use System\HTML; use System\HTML;
class Asset { class Asset {
...@@ -75,7 +76,7 @@ class Asset_Container { ...@@ -75,7 +76,7 @@ class Asset_Container {
*/ */
public function add($name, $source, $dependencies = array(), $attributes = array()) public function add($name, $source, $dependencies = array(), $attributes = array())
{ {
return call_user_func(array($this, (\System\File::extension($source) == 'css') ? 'style' : 'script'), $name, $source, $dependencies, $attributes); return call_user_func(array($this, (File::extension($source) == 'css') ? 'style' : 'script'), $name, $source, $dependencies, $attributes);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment