1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33:
<?php
/**
* Form control creating an image upload element for an object derived from icms_ipf_Object
*
* @copyright The ImpressCMS Project http://www.impresscms.org/
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU General Public License (GPL)
* @category ICMS
* @package ipf
* @subpackage form
* @since 1.1
* @author marcan <marcan@impresscms.org>
* @version $Id: Language.php 10721 2010-10-11 19:40:51Z phoenyx $
*/
defined('ICMS_ROOT_PATH') or die("ImpressCMS root path not defined");
class icms_ipf_form_elements_Language extends icms_form_elements_select_Lang {
/**
* Constructor
* @param object $object reference to targetobject (@link icms_ipf_Object)
* @param string $key the form name
*/
public function __construct($object, $key) {
$var = $object->vars[$key];
$control = $object->controls[$key];
$all = isset($control['all']) ? true : false;
parent::__construct($var['form_caption'], $key, $object->getVar($key, 'e'));
if ($all) {
$this->addOption('all', _ALL);
}
}
}