예제 #1
0
파일: WCalendar.php 프로젝트: point/cassea
 /**
  * Method description
  *
  * More detailed method description
  * @param    mixed $data
  * @return   void
  */
 function setData(WidgetResultSet $data)
 {
     $this->setDateFormat($data->get('dateformat'));
     parent::setData($data);
 }
예제 #2
0
파일: WSpinner.php 프로젝트: point/cassea
 /**
  * Method description
  *
  * More detailed method description
  * @param    mixed $data
  * @return   void
  */
 function setData(WidgetResultSet $data)
 {
     $this->setStep($data->get('step'));
     $this->setMax($data->get('max'));
     $this->setMin($data->get('min'));
     $this->setText($data->get('text'));
     parent::setData($data);
 }