Beispiel #1
0
 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;
 }
Beispiel #2
0
 /**
  * Constructs Calendar_Decorator_Wrapper
  * @param object subclass of Calendar
  * @access public
  */
 function Calendar_Decorator_Wrapper(&$Calendar)
 {
     parent::Calendar_Decorator($Calendar);
 }
Beispiel #3
0
 /**
  * Constructs Calendar_Decorator_Weekday
  * @param object subclass of Calendar
  * @access public
  */
 function Calendar_Decorator_Weekday(&$Calendar)
 {
     parent::Calendar_Decorator($Calendar);
 }
Beispiel #4
0
 /**
  * Constructs Calendar_Decorator_Textual
  * @param object subclass of Calendar
  * @access public
  */
 function Calendar_Decorator_Textual(&$Calendar)
 {
     parent::Calendar_Decorator($Calendar);
 }
Beispiel #5
0
 /**
  * Constructs Calendar_Decorator_Uri
  * @param object subclass of Calendar
  * @access public
  */
 function Calendar_Decorator_Uri(&$Calendar)
 {
     parent::Calendar_Decorator($Calendar);
 }
Beispiel #6
0
 function DiaryEvent($calendar)
 {
     Calendar_Decorator::Calendar_Decorator($calendar);
 }
Beispiel #7
0
 /**
  * @param Calendar_Month
  */
 function MonthDecorator(&$Month)
 {
     parent::Calendar_Decorator($Month);
 }
Beispiel #8
0
 function MyBoldDecorator(&$Calendar)
 {
     parent::Calendar_Decorator($Calendar);
 }
Beispiel #9
0
 /**
  * constructeur
  * @param object $calendar un calendrier
  * @access public
  * @return void
  */
 public function __construct($calendar)
 {
     $this->entries = array();
     Calendar_Decorator::Calendar_Decorator($calendar);
 }
Beispiel #10
0
 function __construct(Calendar $calendar)
 {
     // set the author
     //$this->author = xarUserGetVar('id');
     Calendar_Decorator::Calendar_Decorator($calendar);
 }