コード例 #1
0
ファイル: PublicController.php プロジェクト: typicms/places
 public function __construct(PlaceInterface $place)
 {
     parent::__construct($place);
 }
コード例 #2
0
 public function __construct(NewsInterface $news)
 {
     parent::__construct($news);
 }
コード例 #3
0
ファイル: PublicController.php プロジェクト: typicms/contacts
 public function __construct(ContactInterface $contact)
 {
     parent::__construct($contact);
 }
コード例 #4
0
ファイル: PublicController.php プロジェクト: typicms/tags
 public function __construct(TagInterface $tag)
 {
     parent::__construct($tag);
 }
コード例 #5
0
 public function __construct(ProductInterface $product)
 {
     parent::__construct($product);
 }
コード例 #6
0
ファイル: PublicController.php プロジェクト: typicms/objects
 public function __construct(ObjectInterface $object)
 {
     parent::__construct($object);
 }
コード例 #7
0
ファイル: PublicController.php プロジェクト: typicms/partners
 public function __construct(PartnerInterface $partner)
 {
     parent::__construct($partner);
 }
コード例 #8
0
 public function __construct(CategoryInterface $category)
 {
     parent::__construct($category);
 }
コード例 #9
0
ファイル: PublicController.php プロジェクト: typicms/news
 public function __construct(NewsInterface $news, Feed $feed)
 {
     $this->feed = $feed;
     parent::__construct($news);
 }
コード例 #10
0
 public function __construct(ReasonInterface $reason)
 {
     parent::__construct($reason);
 }
コード例 #11
0
ファイル: PublicController.php プロジェクト: typicms/pages
 public function __construct(PageInterface $page)
 {
     parent::__construct($page);
 }
コード例 #12
0
 public function __construct(SeminarInterface $seminar, Calendar $calendar)
 {
     parent::__construct($seminar);
     $this->calendar = $calendar;
 }
コード例 #13
0
 public function __construct(GalleryInterface $gallery)
 {
     parent::__construct($gallery);
 }
コード例 #14
0
ファイル: PublicController.php プロジェクト: typicms/events
 public function __construct(EventInterface $event, Calendar $calendar)
 {
     parent::__construct($event);
     $this->calendar = $calendar;
 }