예제 #1
0
파일: event.php 프로젝트: godboko/modules
 function __construct(Calendar $calendar)
 {
     // set the author
     //$this->author = xarUserGetVar('id');
     Calendar_Decorator::Calendar_Decorator($calendar);
     $this->cE =& $this->getEngine();
     $this->year = $this->calendar->year;
     $this->month = $this->calendar->month;
     $this->day = $this->calendar->day;
 }
예제 #2
0
 /**
  * Constructs Calendar_Decorator_Wrapper
  * @param object subclass of Calendar
  * @access public
  */
 function Calendar_Decorator_Wrapper(&$Calendar)
 {
     parent::Calendar_Decorator($Calendar);
 }
예제 #3
0
 /**
  * Constructs Calendar_Decorator_Weekday
  * @param object subclass of Calendar
  * @access public
  */
 function Calendar_Decorator_Weekday(&$Calendar)
 {
     parent::Calendar_Decorator($Calendar);
 }
예제 #4
0
 /**
  * Constructs Calendar_Decorator_Textual
  * @param object subclass of Calendar
  * @access public
  */
 function Calendar_Decorator_Textual(&$Calendar)
 {
     parent::Calendar_Decorator($Calendar);
 }
예제 #5
0
파일: Uri.php 프로젝트: casan/eccube-2_13
 /**
  * Constructs Calendar_Decorator_Uri
  * @param object subclass of Calendar
  * @access public
  */
 function Calendar_Decorator_Uri(&$Calendar)
 {
     parent::Calendar_Decorator($Calendar);
 }
예제 #6
0
파일: 20.php 프로젝트: godboko/modules
 function DiaryEvent($calendar)
 {
     Calendar_Decorator::Calendar_Decorator($calendar);
 }
예제 #7
0
 /**
  * @param Calendar_Month
  */
 function MonthDecorator(&$Month)
 {
     parent::Calendar_Decorator($Month);
 }
예제 #8
0
파일: 18.php 프로젝트: casan/eccube-2_13
 function MyBoldDecorator(&$Calendar)
 {
     parent::Calendar_Decorator($Calendar);
 }
예제 #9
0
 /**
  * constructeur
  * @param object $calendar un calendrier
  * @access public
  * @return void
  */
 public function __construct($calendar)
 {
     $this->entries = array();
     Calendar_Decorator::Calendar_Decorator($calendar);
 }
예제 #10
0
 function __construct(Calendar $calendar)
 {
     // set the author
     //$this->author = xarUserGetVar('id');
     Calendar_Decorator::Calendar_Decorator($calendar);
 }