]> Raphaël G. Git Repositories - packbundle/commitdiff
Switch from Packages to PackageInterface
authorRaphaël Gertz <git@rapsys.eu>
Tue, 26 Nov 2019 14:12:03 +0000 (15:12 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Tue, 26 Nov 2019 14:12:03 +0000 (15:12 +0100)
Switch from \Twig_Extension to AbstractExtension
Declare protected members
Hardcode parameters name in copy process
Cleanup

Twig/PackExtension.php

index 23cceb67ab84d70466a55d1a85890764a1e5a96c..91a7a897907ee9ae529fbf3fe32b7199eb707a5b 100644 (file)
@@ -4,9 +4,10 @@ namespace Rapsys\PackBundle\Twig;
 
 use Symfony\Component\HttpKernel\Config\FileLocator;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
 use Symfony\Component\HttpKernel\Config\FileLocator;
 use Symfony\Component\DependencyInjection\ContainerInterface;
-use Symfony\Component\Asset\Packages;
+use Symfony\Component\Asset\PackageInterface;
+use Twig\Extension\AbstractExtension;
 
 
-class PackExtension extends \Twig_Extension {
+class PackExtension extends AbstractExtension {
        //The config
        private $config;
 
        //The config
        private $config;
 
@@ -16,28 +17,34 @@ class PackExtension extends \Twig_Extension {
        //The filter
        private $filters;
 
        //The filter
        private $filters;
 
-       public function __construct(FileLocator $fileLocator, ContainerInterface $containerInterface, Packages $assetsPackages) {
+       //The file locator
+       protected $locator;
+
+       //The assets package
+       protected $package;
+
+       public function __construct(FileLocator $locator, ContainerInterface $container, PackageInterface $package) {
                //Set file locator
                //Set file locator
-               $this->fileLocator = $fileLocator;
-               //Set container interface
-               $this->containerInterface = $containerInterface;
+               $this->locator = $locator;
+
                //Set assets packages
                //Set assets packages
-               $this->assetsPackages = $assetsPackages;
+               $this->package = $package;
 
                //Retrieve bundle config
 
                //Retrieve bundle config
-               if ($parameters = $containerInterface->getParameter($this->getAlias())) {
-                       foreach($parameters as $k => $v) {
-                               $this->$k = $v;
+               if ($parameters = $container->getParameter($this->getAlias())) {
+                       //Set config, output and filters arrays
+                       foreach(['config', 'output', 'filters'] as $k) {
+                               $this->$k = $parameters[$k];
                        }
                }
        }
 
        public function getTokenParsers() {
                        }
                }
        }
 
        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'])
-               );
+               return [
+                       new PackTokenParser($this->locator, $this->package, $this->config, 'stylesheet', $this->output['css'], $this->filters['css']),
+                       new PackTokenParser($this->locator, $this->package, $this->config, 'javascript', $this->output['js'], $this->filters['js']),
+                       new PackTokenParser($this->locator, $this->package, $this->config, 'image', $this->output['img'], $this->filters['img'])
+               ];
        }
 
        /**
        }
 
        /**