X-Git-Url: https://git.rapsys.eu/packbundle/blobdiff_plain/e773114d61f305cb45ffb3c0de0d57987f247fcc..6bc3a323095049fba5ac8bb2b1a2cef1e82b8df5:/Twig/PackExtension.php?ds=sidebyside diff --git a/Twig/PackExtension.php b/Twig/PackExtension.php deleted file mode 100644 index 23cceb6..0000000 --- a/Twig/PackExtension.php +++ /dev/null @@ -1,49 +0,0 @@ -fileLocator = $fileLocator; - //Set container interface - $this->containerInterface = $containerInterface; - //Set assets packages - $this->assetsPackages = $assetsPackages; - - //Retrieve bundle config - if ($parameters = $containerInterface->getParameter($this->getAlias())) { - foreach($parameters as $k => $v) { - $this->$k = $v; - } - } - } - - public function getTokenParsers() { - return array( - new PackTokenParser($this->fileLocator, $this->assetsPackages, $this->config, 'stylesheet', $this->output['css'], $this->filters['css']), - new PackTokenParser($this->fileLocator, $this->assetsPackages, $this->config, 'javascript', $this->output['js'], $this->filters['js']), - new PackTokenParser($this->fileLocator, $this->assetsPackages, $this->config, 'image', $this->output['img'], $this->filters['img']) - ); - } - - /** - * {@inheritdoc} - */ - public function getAlias() { - return 'rapsys_pack'; - } -}