]> Raphaƫl G. Git Repositories - packbundle/blobdiff - DependencyInjection/Configuration.php
Remove prefix from cache and public path
[packbundle] / DependencyInjection / Configuration.php
index 7217e98d3d5f7dc340f9f3d57c1bc56d4780da98..d9b1b512eb98a0b54476f5e4aae404955bb4ed48 100644 (file)
@@ -13,6 +13,7 @@ namespace Rapsys\PackBundle\DependencyInjection;
 
 use Symfony\Component\Config\Definition\Builder\TreeBuilder;
 use Symfony\Component\Config\Definition\ConfigurationInterface;
 
 use Symfony\Component\Config\Definition\Builder\TreeBuilder;
 use Symfony\Component\Config\Definition\ConfigurationInterface;
+use Symfony\Component\DependencyInjection\Container;
 use Symfony\Component\Process\ExecutableFinder;
 
 use Rapsys\PackBundle\RapsysPackBundle;
 use Symfony\Component\Process\ExecutableFinder;
 
 use Rapsys\PackBundle\RapsysPackBundle;
@@ -30,7 +31,7 @@ class Configuration implements ConfigurationInterface {
         */
        public function getConfigTreeBuilder(): TreeBuilder {
                //Get TreeBuilder object
         */
        public function getConfigTreeBuilder(): TreeBuilder {
                //Get TreeBuilder object
-               $treeBuilder = new TreeBuilder(RapsysPackBundle::getAlias());
+               $treeBuilder = new TreeBuilder($alias = RapsysPackBundle::getAlias());
 
                //Get ExecutableFinder object
                $finder = new ExecutableFinder();
 
                //Get ExecutableFinder object
                $finder = new ExecutableFinder();
@@ -44,6 +45,8 @@ class Configuration implements ConfigurationInterface {
                                'agent' => (string)ini_get('user_agent')?:'rapsys_pack/0.2.0',
                                'redirect' => 5
                        ],
                                'agent' => (string)ini_get('user_agent')?:'rapsys_pack/0.2.0',
                                'redirect' => 5
                        ],
+                       #TODO: migrate to public.path, public.url and router->generateUrl ?
+                       #XXX: that would means dropping the PathPackage stuff and use static route like rapsys_pack_facebook
                        'output' => [
                                'css' => '@RapsysPack/css/*.pack.css',
                                'js' =>  '@RapsysPack/js/*.pack.js',
                        'output' => [
                                'css' => '@RapsysPack/css/*.pack.css',
                                'js' =>  '@RapsysPack/js/*.pack.js',
@@ -74,6 +77,10 @@ class Configuration implements ConfigurationInterface {
                                                'args' => []
                                        ]
                                ],
                                                'args' => []
                                        ]
                                ],
+                       ],
+                       'public' => [
+                               'path' => dirname(__DIR__).'/Resources/public',
+                               'url' => '/bundles/'.str_replace('_', '', $alias)
                        ]
                ];
 
                        ]
                ];
 
@@ -182,6 +189,13 @@ class Configuration implements ConfigurationInterface {
                                                        ->end()
                                                ->end()
                                        ->end()
                                                        ->end()
                                                ->end()
                                        ->end()
+                                       ->arrayNode('public')
+                                               ->addDefaultsIfNotSet()
+                                               ->children()
+                                                       ->scalarNode('path')->cannotBeEmpty()->defaultValue($defaults['public']['path'])->end()
+                                                       ->scalarNode('url')->cannotBeEmpty()->defaultValue($defaults['public']['url'])->end()
+                                               ->end()
+                                       ->end()
                                ->end()
                        ->end();
 
                                ->end()
                        ->end();