Posts Tagged: internationalization


27
Jan 09

Translated Time Zone Listing for Zend_Form

Timezones available:

  • timezonetowindows
  • windowstotimezone
  • territorytotimezone
  • timezonetoterritory
  • citytotimezone
  • timezonetocity

$form = new Zend_Form();

$timeZoneList = $locale->getTranslationList("timezonetoterritory");

$timeZone = $form->createElement('select', 'time_zone', array(

'filters'    => array('StringTrim'),
'label'      => 'Time Zone:',
))->addMultiOptions($timeZoneList);

$this->addElement($timeZone);