Exemplo n.º 1
0
 /**
  * __construct
  *
  * @param GroupInterface $group
  * @param GroupForm     $groupForm
  */
 public function __construct(GroupInterface $group, GroupForm $groupForm)
 {
     parent::__construct($group, $groupForm);
     $this->title['parent'] = trans_choice('groups::global.groups', 2);
     // Establish Filters
     $this->beforeFilter('inGroup:Admins');
 }
Exemplo n.º 2
0
 public function __construct(FileInterface $file, FileForm $fileform)
 {
     parent::__construct($file, $fileform);
     $this->title['parent'] = trans_choice('files::global.files', 2);
 }
Exemplo n.º 3
0
 public function __construct(EventInterface $event, EventForm $eventform)
 {
     parent::__construct($event, $eventform);
     $this->title['parent'] = trans_choice('events::global.events', 2);
 }
Exemplo n.º 4
0
 public function __construct(DashboardInterface $dashboard)
 {
     parent::__construct($dashboard);
     $this->title['parent'] = trans('dashboard::global.Dashboard');
 }
Exemplo n.º 5
0
 public function __construct(TagInterface $tag, TagForm $tagform)
 {
     parent::__construct($tag, $tagform);
     $this->title['parent'] = trans_choice('tags::global.tags', 2);
 }
Exemplo n.º 6
0
 public function __construct(SettingInterface $setting)
 {
     parent::__construct($setting);
     $this->title['parent'] = ucfirst(trans('global.settings'));
 }
Exemplo n.º 7
0
 public function __construct(GalleryInterface $gallery, GalleryForm $galleryform)
 {
     parent::__construct($gallery, $galleryform);
     $this->title['parent'] = trans_choice('galleries::global.galleries', 2);
 }
Exemplo n.º 8
0
 public function __construct(MenuInterface $menu, MenuForm $menuform)
 {
     parent::__construct($menu, $menuform);
     $this->title['parent'] = trans_choice('menus::global.menus', 2);
 }
Exemplo n.º 9
0
 public function __construct(NewsInterface $news, NewsForm $newsform)
 {
     parent::__construct($news, $newsform);
     $this->title['parent'] = Str::title(trans_choice('news::global.news', 2));
 }
Exemplo n.º 10
0
 public function __construct(PartnerInterface $partner, PartnerForm $partnerform)
 {
     parent::__construct($partner, $partnerform);
     $this->title['parent'] = trans_choice('partners::global.partners', 2);
 }
Exemplo n.º 11
0
 public function __construct(ContactInterface $contact, ContactForm $contactform)
 {
     parent::__construct($contact, $contactform);
     $this->title['parent'] = trans_choice('contacts::global.contacts', 2);
 }
Exemplo n.º 12
0
 public function __construct(PageInterface $page, PageForm $pageform)
 {
     parent::__construct($page, $pageform);
     $this->title['parent'] = trans_choice('pages::global.pages', 2);
 }
Exemplo n.º 13
0
 public function __construct(CategoryInterface $category, CategoryForm $categoryform)
 {
     parent::__construct($category, $categoryform);
     $this->title['parent'] = trans_choice('categories::global.categories', 2);
 }
Exemplo n.º 14
0
 public function __construct(TranslationInterface $translation, TranslationForm $translationform)
 {
     parent::__construct($translation, $translationform);
     $this->title['parent'] = trans_choice('translations::global.translations', 2);
 }
Exemplo n.º 15
0
 /**
  * __construct
  *
  * @param UserInterface $user
  * @param UserForm      $userform
  */
 public function __construct(UserInterface $user, UserForm $userform)
 {
     parent::__construct($user, $userform);
     $this->title['parent'] = trans_choice('users::global.users', 2);
 }
Exemplo n.º 16
0
 public function __construct(ProjectInterface $project, ProjectForm $projectform)
 {
     parent::__construct($project, $projectform);
     $this->title['parent'] = trans_choice('projects::global.projects', 2);
 }
Exemplo n.º 17
0
 public function __construct(MenulinkInterface $menulink, MenulinkForm $menulinkform)
 {
     parent::__construct($menulink, $menulinkform);
     $this->title['parent'] = Lang::choice('menulinks::global.menulinks', 2);
 }
Exemplo n.º 18
0
 public function __construct(BlockInterface $block, BlockForm $blockform)
 {
     parent::__construct($block, $blockform);
     $this->title['parent'] = trans_choice('blocks::global.blocks', 2);
 }