]> Raphaƫl G. Git Repositories - packbundle/blobdiff - Twig/Filter/JPackFilter.php
Fix pack filter args
[packbundle] / Twig / Filter / JPackFilter.php
index 7e1d5c67ba94b6112638794cf24c407784ffbd80..199d980fa0d76d1250187b64e4f99f4848fe37c6 100644 (file)
@@ -4,15 +4,13 @@
 namespace Rapsys\PackBundle\Twig\Filter;
 
 use Rapsys\PackBundle\Twig\Filter\FilterInterface;
-use Symfony\Component\DependencyInjection\ContainerInterface;
 
 class JPackFilter implements FilterInterface {
        //Default bin
-       private $bin = 'jpack';
+       private $bin;
 
        //Default compress type
-       //XXX: can be clean, shrink, obfuscate or best
-       private $compress = 'best';
+       private $compress;
 
        //Twig template filename
        private $fileName;
@@ -20,24 +18,21 @@ class JPackFilter implements FilterInterface {
        //Twig template line
        private $line;
 
-       public function __construct(ContainerInterface $containerInterface, $fileName, $line) {
-               //Load configuration
-               if ($containerInterface->hasParameter('rapsys_pack_jpackfilter')) {
-                       if ($parameters = $containerInterface->getParameter('rapsys_pack_jpackfilter')) {
-                               foreach($parameters as $k => $v) {
-                                       if (isset($this->$k)) {
-                                               $this->$k = $v;
-                                       }
-                               }
-                       }
-               }
-
+       //Configure the object
+       //XXX: can be clean, shrink, obfuscate or best
+       public function __construct($fileName, $line, $bin = 'jpack', $compress = 'best') {
                //Set fileName
                $this->fileName = $fileName;
 
                //Set line
                $this->line = $line;
 
+               //Set bin
+               $this->bin = $bin;
+
+               //Set compress
+               $this->compress = $compress;
+
                //Deal with compress
                if (!empty($this->compress)) {
                        //Append clean parameter