Example #1
0
 /**
  * @param SessionSection $sessionSection
  * @param ProductfrontFormFactory $formFactory
  * @param ItemRepository $productRepository
  */
 public function __construct(SessionSection $sessionSection, ProductfrontFormFactory $formFactory, ItemRepository $productRepository)
 {
     parent::__construct();
     $this->sessionSection = $sessionSection;
     $this->formFactory = $formFactory;
     $this->productRepository = $productRepository;
 }
Example #2
0
 /**
  * @param EntityManager $entityManager
  * @param ClearFormFactory $clearFormFactory
  * @param BasicFormFactory $basicFormFactory
  */
 public function __construct(EntityManager $entityManager, ClearFormFactory $clearFormFactory, BasicFormFactory $basicFormFactory)
 {
     parent::__construct();
     $this->entityManager = $entityManager;
     $this->_clearFormFactory = $clearFormFactory;
     $this->_basicFormFactory = $basicFormFactory;
 }
Example #3
0
 /**
  * @param \Nette\ComponentModel\IContainer $ajaxDir
  * @param null $ajaxPath
  * @param SessionSection $sessionSection
  */
 public function __construct($ajaxDir, $ajaxPath, SessionSection $sessionSection)
 {
     parent::__construct();
     $this->ajaxDir = $ajaxDir;
     $this->ajaxPath = $ajaxPath;
     $this->sessionSection = $sessionSection;
 }
Example #4
0
 /**
  * @param LoginFormFactory $loginFormFactory
  * @param ProviderFormFactory $providerFormFactory
  * @param ResetFormFactory $resetFormFactory
  * @param ConfirmFormFactory $confirmFormFactory
  * @param SecurityManager $securityManager
  * @param UserRepository $userRepository
  * @param ConnectionCheckerFactory $connectionChecker
  * @param IMailer $mailer
  */
 public function __construct(LoginFormFactory $loginFormFactory, ProviderFormFactory $providerFormFactory, ResetFormFactory $resetFormFactory, ConfirmFormFactory $confirmFormFactory, SecurityManager $securityManager, UserRepository $userRepository, ConnectionCheckerFactory $connectionChecker, IMailer $mailer)
 {
     parent::__construct();
     $this->loginFormFactory = $loginFormFactory;
     $this->providerFormFactory = $providerFormFactory;
     $this->resetFormFactory = $resetFormFactory;
     $this->confirmFormFactory = $confirmFormFactory;
     $this->securityManager = $securityManager;
     $this->userRepository = $userRepository;
     $this->connectionChecker = $connectionChecker;
     $this->mailer = $mailer;
 }
Example #5
0
 /**
  * @param string $userType
  * @param string $mode
  * @param string $loginProviderMode
  * @param string|array $roles
  * @param string $emailSender
  * @param string $emailFrom
  * @param string $emailSubject
  * @param string $emailText
  */
 public function __construct($userType, $mode, $loginProviderMode, $roles, $emailSender, $emailFrom, $emailSubject, $emailText)
 {
     parent::__construct();
     $this->loginProviderMode = $loginProviderMode;
     $this->mode = $mode;
     $this->roles = $roles;
     $this->userType = $userType;
     $this->emailSender = $emailSender;
     $this->emailFrom = $emailFrom;
     $this->emailSubject = $emailSubject;
     $this->emailText = $emailText;
 }
Example #6
0
 /**
  * @param RouteRepository $routeRepository
  * @param WebsiteManager $websiteManager
  */
 public function __construct(RouteRepository $routeRepository, WebsiteManager $websiteManager)
 {
     parent::__construct();
     $this->routeRepository = $routeRepository;
     $this->websiteManager = $websiteManager;
 }
Example #7
0
 /**
  * @param WebsiteManager $websiteManager
  * @param PageRepository $pageRepository
  */
 public function __construct(WebsiteManager $websiteManager, PageRepository $pageRepository)
 {
     parent::__construct();
     $this->websiteManager = $websiteManager;
     $this->pageRepository = $pageRepository;
 }
Example #8
0
 /**
  * @param MailformEntity $mailformEntity
  * @param MailformfrontFormFactory $formFactory
  */
 public function __construct(MailformEntity $mailformEntity, MailformfrontFormFactory $formFactory)
 {
     parent::__construct();
     $this->mailformEntity = $mailformEntity;
     $this->formFactory = $formFactory;
 }
Example #9
0
 /**
  * @param WebsiteManager $websiteManager
  */
 public function __construct(WebsiteManager $websiteManager)
 {
     parent::__construct();
     $this->websiteManager = $websiteManager;
 }
Example #10
0
 /**
  * @param Request $httpRequest
  */
 public function __construct(Request $httpRequest)
 {
     parent::__construct();
     $this->httpRequest = $httpRequest;
 }
Example #11
0
 /**
  * @param \Nette\Http\SessionSection $sessionSection
  * @param ItemRepository $productRepository
  */
 public function __construct(\Nette\Http\SessionSection $sessionSection, ItemRepository $productRepository)
 {
     parent::__construct();
     $this->sessionSection = $sessionSection;
     $this->productRepository = $productRepository;
 }
Example #12
0
 public function __construct(LanguageRepository $languageRepository)
 {
     parent::__construct();
     $this->languageRepository = $languageRepository;
 }
Example #13
0
 /**
  * @param DomainRepository $domainRepository
  */
 public function __construct(DomainRepository $domainRepository)
 {
     parent::__construct();
     $this->domainRepository = $domainRepository;
 }
Example #14
0
 /**
  * @param TagRepository $tagRepository
  */
 public function __construct(TagRepository $tagRepository)
 {
     parent::__construct();
     $this->tagRepository = $tagRepository;
 }