Ejemplo n.º 1
0
 public function __construct(Library\ObjectConfig $config)
 {
     parent::__construct($config);
     $this->_container = $config->container;
     $this->_populate_from_request = $config->populate_from_request;
     $this->_file_controller = $this->getObject($config->file_controller, array('request' => $this->getObject('lib:controller.request', array('query' => array('container' => $this->_container)))));
     $this->_attachment_controller = $this->getObject($config->attachment_controller, array('request' => $this->getObject('lib:controller.request', array('query' => array('container' => $this->_container)))));
     $this->_attachment_limit = $config->attachment_limit;
 }
Ejemplo n.º 2
0
 public function __construct(Library\ObjectConfig $config)
 {
     parent::__construct($config);
     $this->_actions = Library\ObjectConfig::unbox($config->actions);
     $this->_title_column = Library\ObjectConfig::unbox($config->title_column);
 }
Ejemplo n.º 3
0
 public function __construct(Library\ObjectConfig $config)
 {
     parent::__construct($config);
     $this->_filter = $config->filter;
 }
Ejemplo n.º 4
0
 public function __construct(Library\ObjectConfig $config)
 {
     parent::__construct($config);
     $this->_config = $config->captcha;
 }