123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- /*
- * This file is part of the Sonata project.
- *
- * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Sonata\AdminBundle\DependencyInjection;
- use Symfony\Component\Config\Definition\Builder\TreeBuilder;
- use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
- use Symfony\Component\Config\Definition\ConfigurationInterface;
- /**
- * This class contains the configuration information for the bundle
- *
- * This information is solely responsible for how the different configuration
- * sections are normalized, and merged.
- *
- * @author Michael Williams <mtotheikle@gmail.com>
- */
- class Configuration implements ConfigurationInterface
- {
- /**
- * Generates the configuration tree.
- *
- * @return \Symfony\Component\Config\Definition\Builder\TreeBuilder
- */
- public function getConfigTreeBuilder()
- {
- $treeBuilder = new TreeBuilder();
- $rootNode = $treeBuilder->root('sonata_admin', 'array');
- $rootNode
- ->fixXmlConfig('dashboard_group')
- ->fixXmlConfig('admin_service')
- ->children()
- ->scalarNode('security_handler')->defaultValue('sonata.admin.security.handler.noop')->end()
- ->scalarNode('title')->defaultValue('Sonata Admin')->cannotBeEmpty()->end()
- ->scalarNode('title_logo')->defaultValue('bundles/sonataadmin/logo_title.png')->cannotBeEmpty()->end()
- ->arrayNode('dashboard_groups')
- ->useAttributeAsKey('id')
- ->prototype('array')
- ->fixXmlConfig('item')
- ->fixXmlConfig('item_add')
- ->children()
- ->scalarNode('label')->end()
- ->arrayNode('items')
- ->prototype('scalar')->end()
- ->end()
- ->arrayNode('item_adds')
- ->prototype('scalar')->end()
- ->end()
- ->end()
- ->end()
- ->end()
- ->arrayNode('admin_services')
- ->useAttributeAsKey('id')
- ->prototype('array')
- ->children()
- ->scalarNode('model_manager')->end()
- ->scalarNode('form_contractor')->end()
- ->scalarNode('show_builder')->end()
- ->scalarNode('list_builder')->end()
- ->scalarNode('datagrid_builder')->end()
- ->scalarNode('translator')->end()
- ->scalarNode('configuration_pool')->end()
- ->scalarNode('router')->end()
- ->scalarNode('validator')->end()
- ->scalarNode('security_handler')->end()
- ->scalarNode('label')->end()
- ->end()
- ->end()
- ->end()
- ->arrayNode('templates')
- ->addDefaultsIfNotSet()
- ->children()
- ->scalarNode('user_block')->defaultValue('SonataAdminBundle:Core:user_block.html.twig')->cannotBeEmpty()->end()
- ->scalarNode('layout')->defaultValue('SonataAdminBundle::standard_layout.html.twig')->cannotBeEmpty()->end()
- ->scalarNode('ajax')->defaultValue('SonataAdminBundle::ajax_layout.html.twig')->cannotBeEmpty()->end()
- ->scalarNode('list')->defaultValue('SonataAdminBundle:CRUD:list.html.twig')->cannotBeEmpty()->end()
- ->scalarNode('show')->defaultValue('SonataAdminBundle:CRUD:show.html.twig')->cannotBeEmpty()->end()
- ->scalarNode('edit')->defaultValue('SonataAdminBundle:CRUD:edit.html.twig')->cannotBeEmpty()->end()
- ->scalarNode('history')->defaultValue('SonataAdminBundle:CRUD:history.html.twig')->cannotBeEmpty()->end()
- ->scalarNode('history_revision')->defaultValue('SonataAdminBundle:CRUD:history_revision.html.twig')->cannotBeEmpty()->end()
- ->scalarNode('action')->defaultValue('SonataAdminBundle:CRUD:action.html.twig')->cannotBeEmpty()->end()
- ->end()
- ->end()
- ->end()
- ->end();
- return $treeBuilder;
- }
- }
|