adding a widget "add a person" on homepage, replacing the homepage menu

We use the new widget api to add a widget "add a person" on homepage. The homepage menu is deprecated.
This commit is contained in:
2016-09-23 12:28:26 +02:00
parent adbc59ec76
commit 38df9bb91d
5 changed files with 64 additions and 1 deletions

View File

@@ -89,6 +89,7 @@ class ChillPersonExtension extends Extension implements PrependExtensionInterfac
public function prepend(ContainerBuilder $container)
{
$this->prependRoleHierarchy($container);
$this->prependHomepageWidget($container);
$bundles = $container->getParameter('kernel.bundles');
//add ChillMain to assetic-enabled bundles
@@ -125,6 +126,31 @@ class ChillPersonExtension extends Extension implements PrependExtensionInterfac
));
}
/**
*
* Add a widget "add a person" on the homepage, automatically
*
* @param \Chill\PersonBundle\DependencyInjection\containerBuilder $container
*/
protected function prependHomepageWidget(containerBuilder $container)
{
$container->prependExtensionConfig('chill_main', array(
'widgets' => array(
'homepage' => array(
array(
'widget_alias' => 'add_person',
'order' => 2
)
)
)
));
}
/**
* Add role hierarchy.
*
* @param ContainerBuilder $container
*/
protected function prependRoleHierarchy(ContainerBuilder $container)
{
$container->prependExtensionConfig('security', array(