Exemplo n.º 1
0
 /**
  * Constructor.
  */
 public function __construct($row, $serviceKey)
 {
     $this->setType('tx_cal_attendee');
     $this->setObjectType('attendee');
     parent::__construct($serviceKey);
     $this->init($row);
 }
Exemplo n.º 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);
     }
 }
Exemplo n.º 3
0
 /**
  * Constructor.
  * 
  * @param $serviceKey String
  *        	serviceKey for this model
  */
 public function __construct($serviceKey)
 {
     $this->setObjectType('event');
     parent::__construct($serviceKey);
 }
Exemplo n.º 4
0
 public function __construct($serviceKey)
 {
     parent::__construct($serviceKey);
 }