Classes

File builder/form/field/phpboost/FormFieldRanksSelect.class.php

File builder/form/field/phpboost/FormFieldRanksSelect.class.php

 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: 
<?php
/**
 * @package     Builder
 * @subpackage  Form\field\phpboost
 * @copyright   &copy; 2005-2019 PHPBoost
 * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL-3.0
 * @author      Kevin MASSY <reidlos@phpboost.com>
 * @version     PHPBoost 5.2 - last update: 2014 12 22
 * @since       PHPBoost 3.0 - 2011 09 26
*/

class FormFieldRanksSelect extends FormFieldSimpleSelectChoice
{
    const MEMBER = '0';
    const MODERATOR = '1';
    const ADMINISTRATOR = '2';

    /**
     * Constructs a FormFieldRanksSelect.
     * @param string $id Field id
     * @param string $label Field label
     * @param mixed $value Default value (either a FormFieldEnumOption object or a string corresponding to the FormFieldEnumOption's raw value)
     * @param string[] $field_options Map of the field options (this field has no specific option, there are only the inherited ones)
     * @param FormFieldConstraint List of the constraints
     */
    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()
    {
        $lang = LangLoader::get('user-common');
        $options = array();
        $options[] = new FormFieldSelectChoiceOption($lang['member'], self::MEMBER);
        $options[] = new FormFieldSelectChoiceOption($lang['moderator'], self::MODERATOR);
        $options[] = new FormFieldSelectChoiceOption($lang['administrator'], self::ADMINISTRATOR);
        return $options;
    }
}
?>