コード例 #1
0
ファイル: LayoutFormFactory.php プロジェクト: svobodni/web
 public function __construct(EntityMapper $mapper, TemplateManager $templateManager, $modules)
 {
     parent::__construct($mapper);
     $this->templateManager = $templateManager;
     $this->modules =& $modules;
 }
コード例 #2
0
 public function __construct(\DoctrineModule\Forms\Mappers\EntityMapper $mapper, SecurityManager $securityManager)
 {
     parent::__construct($mapper);
     $this->securityManager = $securityManager;
 }
コード例 #3
0
ファイル: FormFactory.php プロジェクト: svobodni/web
 public function __construct(EntityMapper $mapper, ApiClientFactory $apiClientFactory)
 {
     parent::__construct($mapper);
     $this->apiClientFactory = $apiClientFactory;
 }
コード例 #4
0
 /**
  * @param \DoctrineModule\Forms\Mappers\EntityMapper $mapper
  * @param \Nette\Security\User $user
  */
 public function __construct(EntityMapper $mapper, User $user)
 {
     parent::__construct($mapper);
     $this->user = $user;
 }