This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{this.getChildHtml('settings')}} | |
{{this.getChildHtml('profile')}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Digibuzz\CoreBundle\Design; | |
use Tree\Node\NodeInterface; | |
use Tree\Node\Node; | |
use Symfony\Component\Templating\PhpEngine; | |
use Symfony\Component\Templating\TemplateNameParser; | |
use Symfony\Component\Templating\Loader\FilesystemLoader; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return $this->services['templating'] = new \Symfony\Bundle\TwigBundle\Debug\TimedTwigEngine($this->get('twig'), $this->get('templating.name_parser'), $this->get('templating.locator'), $this->get('debug.stopwatch')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
firewalls: | |
login: | |
pattern: ^/login$ | |
anonymous: true | |
api: | |
pattern: ^/api$ | |
anonymous: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default: | |
pattern: ^/ | |
form_login: | |
provider: digibuzz_user_provider | |
#login_path: /user/login |