mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-14 14:24:24 +00:00
refs #357 and refs #224 Squashed commit of the following: commit 1393a2b283566f428e13160da18487c2a0bbea78 Author: Julien Fastré <julien.fastre@champs-libres.coop> Date: Thu Feb 26 12:13:56 2015 +0100 add summary_fields in timeline The tests and fixtures are adapted accordingly commit d0374961c2b03a334ff724fbe2995d082d7d7e01 Author: Julien Fastré <julien@fastre.info> Date: Thu Feb 26 10:36:56 2015 +0100 fix namespace commit c2d71a17301d923cb20ae295f7d1efef8727a643 Author: Julien Fastré <julien@fastre.info> Date: Mon Feb 23 21:59:26 2015 +0100 Improve rendering in person context commit 827d3116a36f8b86bc2dcd79926e42a3d472bb70 Author: Julien Fastré <julien@fastre.info> Date: Mon Feb 23 16:34:43 2015 +0100 add test for timeline page commit d93aa527190a6038b4c58dff3af81568c377cd0f Author: Julien Fastré <julien@fastre.info> Date: Mon Feb 23 16:34:07 2015 +0100 add message for timeline commit 63de4ddc2c7eca8530b3cc6e122d44840340329d Author: Julien Fastré <julien@fastre.info> Date: Mon Feb 23 13:48:32 2015 +0100 create timeline provider
91 lines
2.9 KiB
PHP
91 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace Chill\ReportBundle\DependencyInjection;
|
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
use Symfony\Component\Config\FileLocator;
|
|
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
|
|
use Symfony\Component\DependencyInjection\Loader;
|
|
use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface;
|
|
use Chill\MainBundle\DependencyInjection\MissingBundleException;
|
|
|
|
/**
|
|
* This is the class that loads and manages your bundle configuration
|
|
*
|
|
* To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html}
|
|
*/
|
|
class ChillReportExtension extends Extension implements PrependExtensionInterface
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function load(array $configs, ContainerBuilder $container)
|
|
{
|
|
$configuration = new Configuration();
|
|
$config = $this->processConfiguration($configuration, $configs);
|
|
|
|
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
|
|
$loader->load('services.yml');
|
|
}
|
|
|
|
/**
|
|
* Declare the entity Report, as a customizable entity (can add custom fields)
|
|
*
|
|
* @param ContainerBuilder $container
|
|
*/
|
|
public function declareReportAsCustomizable(ContainerBuilder $container)
|
|
{
|
|
$bundles = $container->getParameter('kernel.bundles');
|
|
if (!isset($bundles['ChillCustomFieldsBundle'])) {
|
|
throw new MissingBundleException('ChillCustomFieldsBundle');
|
|
}
|
|
|
|
$container->prependExtensionConfig('chill_custom_fields',
|
|
array('customizables_entities' =>
|
|
array(
|
|
array(
|
|
'class' => 'Chill\ReportBundle\Entity\Report',
|
|
'name' => 'ReportEntity',
|
|
'options' => array(
|
|
'summary_fields' => array(
|
|
'form_type' => 'custom_fields_group_linked_custom_fields',
|
|
'form_options' =>
|
|
[
|
|
'multiple' => true,
|
|
'expanded' => false
|
|
]
|
|
)
|
|
))
|
|
)
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* declare routes from report bundle
|
|
*
|
|
* @param ContainerBuilder $container
|
|
*/
|
|
private function declareRouting(ContainerBuilder $container)
|
|
{
|
|
$container->prependExtensionConfig('chill_main', array(
|
|
'routing' => array(
|
|
'resources' => array(
|
|
'@ChillReportBundle/Resources/config/routing.yml'
|
|
)
|
|
)
|
|
));
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @param ContainerBuilder $container
|
|
*/
|
|
public function prepend(ContainerBuilder $container)
|
|
{
|
|
$this->declareReportAsCustomizable($container);
|
|
$this->declareRouting($container);
|
|
}
|
|
}
|