Example #1
0
 /**
  * create renderer instance
  * @param array $pParams
  */
 public function __construct($pParams = array())
 {
     parent::__construct();
     if (count($pParams) > 0) {
         $this->urlParts = $pParams;
     }
 }
Example #2
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
 }
Example #3
0
 /**
  * Constructor
  * @param string $pUrl url
  */
 public function __construct($pSection = 'default')
 {
     parent::__construct($pSection);
 }
Example #4
0
 /**
  * create request resolver instance
  */
 public function __construct()
 {
     parent::__construct();
     $this->requestHandler = new \SplObjectStorage();
 }
Example #5
0
 /**
  * create datasetprovider instance
  * @param \Savant\Storage\CDatabase $db
  */
 public function __construct(\Savant\Storage\CDatabase $pDb)
 {
     parent::__construct();
     $this->db = $pDb;
     self::$TABLE = \array_pop(\explode('\\', \get_class($this)));
 }
Example #6
0
 /**
  * destroy xmlrpc client
  */
 public function __destruct()
 {
     $this->disconnect();
     parent::__destruct();
 }
Example #7
0
 /**
  * kill security context
  */
 public function __destruct()
 {
     parent::__destruct();
 }
Example #8
0
 /**
  * create template engine instance
  * @param string $pSection
  */
 public function __construct($pSection = 'default')
 {
     parent::__construct($pSection);
     $this->TEMPLATE_DIR = \Savant\CBootstrap::$SKINS_DIR;
     $this->COMPILE_DIR = \Savant\CBootstrap::$CACHE_DIR;
 }
Example #9
0
 /**
  * create unit test result parser instance from testfile
  */
 public function __construct($pSection = 'default')
 {
     parent::__construct($pSection);
     $this->simplexml = \simplexml_load_file($this->TESTFILE);
 }