*/ class Coffee extends \AssetsMinify\Assets\Factory { /** * Constructor * * @param array $content The files to save to cache * @param string $cachefile The cache file name * @param object $manager The Factory object */ public function __construct($content, $cachefile, $manager) { parent::__construct( $this ); $manager->cache->fs->set( $cachefile, $this->createAsset( $content, $this->getFilters() )->dump() ); } public function setFilters() { $this->setFilter('CoffeeScriptFilter', new CoffeeScriptFilter( get_option('am_coffeescript_path', '/usr/bin/coffee') ) ); } }