This file contains hidden or 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
/home/user/app/logs/prod.log { | |
create 600 user group | |
notifempty | |
daily | |
rotate 14 | |
missingok | |
compress | |
mail email@address | |
} |
This file contains hidden or 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
<div class="nav-collapse collapse"> | |
{{ knp_menu_render('TaliceAdminBundle:Menu:main', { 'allow_safe_labels': true , 'nav_type': 'navbar' }) }} | |
<div class="navbar-text navbar-user pull-right"> | |
<div> | |
<a id="logoutLink" | |
data-shift="{{ shift_active() ? 'yes' : 'no' }}" | |
href="{{ path("user_logout_end_shift") }}"> | |
<i class="icon-off icon-white"></i> | |
</a> |
This file contains hidden or 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 Crana\OrdersBundle\EventListener; | |
use Symfony\Component\Form\Event\DataEvent; | |
use Symfony\Component\Form\FormConfigBuilder; | |
use Symfony\Component\Form\FormConfigInterface; | |
use Symfony\Component\Form\FormEvent; | |
use Symfony\Component\Form\FormFactoryInterface; | |
use Symfony\Component\EventDispatcher\EventSubscriberInterface; |
This file contains hidden or 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 | |
/** @ORM\Entity */ | |
class AttributeType | |
{ | |
/**... */ | |
private $id; | |
/** @ORM\Column(type="string") */ | |
private $name; |
NewerOlder