2019-07-17 20:08:50 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @copyright Copyright (C) 2005-2009 Keyboard Monkeys Ltd. http://www.kb-m.com
|
|
|
|
* @license http://creativecommons.org/licenses/BSD/ BSD License
|
|
|
|
* @author Keyboard Monkey Ltd
|
|
|
|
* @since CommunityID 0.9
|
|
|
|
* @package CommunityID
|
|
|
|
* @packager Keyboard Monkeys
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Monkeys_Form_Element_Language extends Zend_Form_Element_Select
|
|
|
|
{
|
|
|
|
private $_decorator;
|
|
|
|
|
|
|
|
public function __construct($spec, $options = array())
|
|
|
|
{
|
|
|
|
$options = array_merge($options, array('disableLoadDefaultDecorators' =>true));
|
|
|
|
parent::__construct($spec, $options);
|
|
|
|
|
|
|
|
$this->_decorator = new Monkeys_Form_Decorator_Composite();
|
|
|
|
$this->addDecorator($this->_decorator);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setDecoratorOptions(array $options)
|
|
|
|
{
|
|
|
|
$this->_decorator->setOptions($options);
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function init()
|
|
|
|
{
|
|
|
|
parent::init();
|
|
|
|
|
|
|
|
translate('-- Select a Language --');
|
|
|
|
$this->addMultiOption(0, '-- Select a Language --');
|
2019-07-17 20:19:00 +00:00
|
|
|
$this->addMultiOptions(Zend_Locale::getTranslationList('language', Zend_Registry::get('Zend_Locale')));
|
2019-07-17 20:08:50 +00:00
|
|
|
asort($this->options);
|
|
|
|
}
|
|
|
|
}
|