Ejemplo n.º 1
0
 public function init()
 {
     parent::init();
     $this->config['csrf'] = $this->csrf;
     $this->config['request'] = $this->template->request;
     $this->modify = (array) $this->modify;
     if (isset($this->scheme)) {
         $this->modify['@scheme'] = $this->scheme;
     }
 }
Ejemplo n.º 2
0
 public function init()
 {
     parent::init();
     $this->captcha = Container::load($this->captcha);
 }
Ejemplo n.º 3
0
 public function init()
 {
     parent::init();
     $this->imageProvider = Instance::ensure($this->imageProvider);
 }
Ejemplo n.º 4
0
 public function init()
 {
     parent::init();
     $this->authClientCollection = Container::load('authClientCollection');
 }
Ejemplo n.º 5
0
 /**
  * @inheritdoc
  */
 public function init()
 {
     parent::init();
     $this->execute = Instance::ensure($this->execute, '\\rock\\execute\\EvalExecute');
 }