-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathfull_layout.php
More file actions
36 lines (32 loc) · 1.11 KB
/
full_layout.php
File metadata and controls
36 lines (32 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/*
* This file is part of the Sylius package.
*
* (c) Sylius Sp. z o.o.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
return static function (ContainerConfigurator $container): void {
$container->extension('sylius_twig_hooks', [
'hooks' => [
'sylius_admin.common.full_layout#sidebar' => [
'content' => [
'template' => '@SyliusBootstrapAdminUi/shared/crud/common/sidebar.html.twig',
],
],
'sylius_admin.common.full_layout#navbar' => [
'content' => [
'template' => '@SyliusBootstrapAdminUi/shared/crud/common/navbar.html.twig',
],
],
'sylius_admin.common.full_layout#footer' => [
'content' => [
'template' => '@SyliusBootstrapAdminUi/shared/crud/common/content/footer.html.twig',
],
],
],
]);
};