<?phpclass Calendar02 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : Calendar with advance properties"; $this->render = new Calendar($this); // set current date $now = new DateTime(); $this->render->setValue($now); // display buttons "today" and "done" $this->render->showButtonPanel(); // display combobox to change month $this->render->changeMonth(); // display combobox to change year $this->render->changeYear(); // display days of months before and after $this->render->showOtherMonths(); // display week number $this->render->showWeek(); // define min date $now->modify("-3 days"); $this->render->setMinDate($now); // define opening animation $this->render->setShowAnim(Calendar::ANIMATION_BOUNCE); }}?>