コード例 #1
0
ファイル: observable.php プロジェクト: LupusMichaelis/horn
 /** 
  */
 public function __construct()
 {
     parent::__construct();
     $this->callbacks = new collection();
 }
コード例 #2
0
ファイル: html.php プロジェクト: LupusMichaelis/horn
 public function __construct()
 {
     $this->_canvas = \horn\lib\markup\html4::create_strict();
     $this->_helpers = new collection();
     parent::__construct();
 }
コード例 #3
0
ファイル: date_time.php プロジェクト: LupusMichaelis/horn
 public function __construct()
 {
     $this->_date = new date();
     $this->_time = new time();
     parent::__construct();
 }
コード例 #4
0
ファイル: envelope.php プロジェクト: LupusMichaelis/horn
 /**
  */
 public function __construct(object_base $content)
 {
     parent::__construct();
     $this->attach($content);
 }
コード例 #5
0
ファイル: registry.php プロジェクト: LupusMichaelis/horn
 public function __construct()
 {
     $ref =& $this->_tree;
     $this->_current = (object) array('ref' => &$ref);
     parent::__construct();
 }
コード例 #6
0
ファイル: image.php プロジェクト: LupusMichaelis/horn
 /**
  *	\todo	Duplicate raw image on cloning
  */
 protected function _clone()
 {
     return parent::_clone();
 }
コード例 #7
0
ファイル: callback.php プロジェクト: LupusMichaelis/horn
 /**
  */
 public function __construct($native)
 {
     parent::__construct();
     $this->native = $native;
 }
コード例 #8
0
ファイル: collection.php プロジェクト: LupusMichaelis/horn
 /**
  * \see		self::join
  */
 public function __construct()
 {
     parent::__construct();
     $this->join(func_get_args());
 }
コード例 #9
0
ファイル: rss.php プロジェクト: LupusMichaelis/horn
 public function __construct()
 {
     $this->_canvas = markup\rss::create();
     $this->_helpers = new collection();
     parent::__construct();
 }