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: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68:
<?php
class FormFieldThemesSelect extends FormFieldSimpleSelectChoice
{
private $check_authorizations = true;
public function __construct($id, $label, $value = 0, $field_options = array(), array $constraints = array())
{
parent::__construct($id, $label, $value, $this->generate_options(), $field_options, $constraints);
}
private function generate_options()
{
$options = array();
foreach (ThemesManager::get_activated_themes_map_sorted_by_localized_name() as $theme)
{
if ($this->check_authorizations)
{
if ($theme->check_auth())
{
$options[] = new FormFieldSelectChoiceOption($theme->get_configuration()->get_name(), $theme->get_id());
}
}
else
{
$options[] = new FormFieldSelectChoiceOption($theme->get_configuration()->get_name(), $theme->get_id());
}
}
return $options;
}
protected function compute_options(array &$field_options)
{
foreach ($field_options as $attribute => $value)
{
$attribute = TextHelper::strtolower($attribute);
switch ($attribute)
{
case 'check_authorizations' :
$this->check_authorizations = (bool)$value;
unset($field_options['check_authorizations']);
break;
}
}
parent::compute_options($field_options);
}
}
?>