/** * @see Page::readData() */ public function readData() { parent::readData(); }
/** * @see Page::readData() */ public function readData() { parent::readData(); $this->groups = Group::getAccessibleGroups(array(), array(Group::GUESTS, Group::EVERYONE)); }
/** * @see Page::readData() */ public function readData() { parent::readData(); for ($h = 0; $h <= 23; $h++) { $this->dateOptions['hour'][$h] = $h < 10 ? '0' . (string) $h : (string) $h; } for ($d = 1; $d <= 31; $d++) { $this->dateOptions['day'][$d] = $d < 10 ? '0' . (string) $d : (string) $d; } for ($m = 1; $m <= 12; $m++) { $this->dateOptions['month'][$m] = $m < 10 ? '0' . (string) $m : (string) $m; } for ($y = 2011; $y <= 2038; $y++) { $this->dateOptions['year'][$y] = (string) $y; } }