*/ interface AssetInterface { /** * Ensures the current asset includes the supplied filter. * * @param FilterInterface $filter A filter */ public function ensureFilter(FilterInterface $filter); /** * Returns an array of filters currently applied. * * @return array An array of filters */ public function getFilters(); /** * Clears all filters from the current asset. */ public function clearFilters(); /** * Loads the asset into memory and applies load filters. * * You may provide an additional filter to apply during load. * * @param FilterInterface $additionalFilter An additional filter */ public function load(FilterInterface $additionalFilter = null); /** * Applies dump filters and returns the asset as a string. * * You may provide an additional filter to apply during dump. * * Dumping an asset should not change its state. * * If the current asset has not been loaded yet, it should be * automatically loaded at this time. * * @param FilterInterface $additionalFilter An additional filter * * @return string The filtered content of the current asset */ public function dump(FilterInterface $additionalFilter = null); /** * Returns the loaded content of the current asset. * * @return string The content */ public function getContent(); /** * Sets the content of the current asset. * * Filters can use this method to change the content of the asset. * * @param string $content The asset content */ public function setContent($content); /** * Returns an absolute path or URL to the source asset's root directory. * * This value should be an absolute path to a directory in the filesystem, * an absolute URL with no path, or null. * * For example: * * * '/path/to/web' * * 'http://example.com' * * null * * @return string|null The asset's root */ public function getSourceRoot(); /** * Returns the relative path for the source asset. * * This value can be combined with the asset's source root (if both are * non-null) to get something compatible with file_get_contents(). * * For example: * * * 'js/main.js' * * 'main.js' * * null * * @return string|null The source asset path */ public function getSourcePath(); /** * Returns the URL for the current asset. * * @return string|null A web URL where the asset will be dumped */ public function getTargetPath(); /** * Sets the URL for the current asset. * * @param string $targetPath A web URL where the asset will be dumped */ public function setTargetPath($targetPath); /** * Returns the time the current asset was last modified. * * @return integer|null A UNIX timestamp */ public function getLastModified(); } __halt_compiler();----SIGNATURE:----UpymVY8XNg6wnCLnO1OXidipn/ZuhMufssdoTMuC+4uHMvlAZcBcfn6IiaRkhLFfWGLnMts+7AMZ9a+hnKPUcakGZMfBbJYHEBpaHGwbyygOrqw4yqWO5dXU65FpiuDRfZ+fdqsNmx3WcKH+vnVUITKChzACJGPQwrOy1KU1uF+NFJlsxxXyj4RNW6q+YbEh6OWEe7GwK5yJc3GZrKniWIK1TgsWfXuhvMOuucZtQgOXU2b5sonIUs9bDKlLzECGJ7UA51va2FwkLgsAw7mpWkB4zGRgKqQy6CgUHlqp6+wdQSJu/i79adrNdFtWPRXiWoHOdhs3WLoryaJ6OgFSjB0TORTI5r2/xBh7jUX+uYQLA+fC8TWKga86ryAW7bwXY6QLFdXW3Ye4+jKRBNBAm8T6UiHnusNrX7b1jV12Syem3LZogZmGWYe4RQ/KT/dUYk4bgBIpGdyn8SAFxgbyysbH1e2DHcnLjApXlsBlAdfgBbI41oDnF0PZcLuKUnhDocT0Av2t11QUwyv+44mBp4IZ7ok41sc5zJM9dSHGDUmJ49jjbWRIGXH/S8f/2dNLdaDNp6axVza5+HiTIhT2YAhcVzc+B/jrkZ6b0Q8vpQUzi7p0ScLDjmeEKM5+SzhtyRc9CU1OUtquNY9KeopIJFr8/Vd7PTHhlj9+5KFAuOI=----ATTACHMENT:----MzA0NDg2MjY2Mzg2NjA1NSAzNjAwODAwNjgxODkwMTAwIDU4MjA1NjYyMjM1OTg4NTg=