setTable( new TimezonesTable()); } /** * * get all timezones * to be used for the timezone selector * * @return array */ public function getMultiOptions() { $data = array(); $rows = $this->_table->fetchAll(); foreach ($rows as $row) { $data[(string) $row['value']] = $row['caption']; } return $data; } }