| Current Path : /home/sunflowe/www2/floridevilladereve/templates/saffron/warp/src/Warp/Asset/ |
| Current File : /home/sunflowe/www2/floridevilladereve/templates/saffron/warp/src/Warp/Asset/AssetInterface.php |
<?php
/**
* @package Warp Theme Framework
* @author YOOtheme http://www.yootheme.com
* @copyright Copyright (C) YOOtheme GmbH
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL
*/
namespace Warp\Asset;
/**
* Asset interface.
*/
interface AssetInterface
{
public function getUrl();
public function setUrl($url);
public function getContent($filter = null);
public function setContent($content);
public function load($filter = null);
public function hash($salt = '');
}