示例#1
0
 /**
  * Constructor.
  */
 public function __construct($row, $serviceKey)
 {
     $this->setType('tx_cal_attendee');
     $this->setObjectType('attendee');
     parent::__construct($serviceKey);
     $this->init($row);
 }
示例#2
0
 /**
  * Constructor.
  */
 public function __construct($row, $serviceKey)
 {
     $this->setType('tx_cal_calendar');
     $this->setObjectType('calendar');
     parent::__construct($serviceKey);
     if (is_array($row) && !empty($row)) {
         $this->init($row);
     }
 }
示例#3
0
文件: Model.php 项目: ulrikkold/cal
 /**
  * Constructor.
  * 
  * @param $serviceKey String
  *        	serviceKey for this model
  */
 public function __construct($serviceKey)
 {
     $this->setObjectType('event');
     parent::__construct($serviceKey);
 }
示例#4
0
 public function __construct($serviceKey)
 {
     parent::__construct($serviceKey);
 }