Classes

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

File builder/form/field/phpboost/FormFieldMemberSanction.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: 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: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 
<?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 - 2010 12 26
*/

class FormFieldMemberSanction extends FormFieldSimpleSelectChoice
{
    private $lang;
    private $timestamp = 0;

    /**
     * Constructs a FormFieldMemberSanction.
     * @param string $id Field id
     * @param string $label Field label
     * @param timestamp $value Default 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())
    {
        $this->load_lang();
        $this->timestamp = $value;
        parent::__construct($id, $label, $this->get_time_value(), $this->generate_options(), $field_options, $constraints);
    }

    private function generate_options()
    {
        $sanctions = $this->get_sanctions_duration();
        $options = array();
        foreach ($sanctions as $duration => $name)
        {
            $options[] = new FormFieldSelectChoiceOption($name, $duration);
        }
        return $options;
    }

    private function load_lang()
    {
        $this->lang = LangLoader::get('date-common');
    }

    private function get_time_value()
    {
        $difference = ($this->timestamp - time());

        $times = array_keys($this->get_sanctions_duration());
        if ($difference > 0)
        {
            for ($i = count($times) - 1; $i > 0; $i--)
            {
                $t = ceil(($times[$i] + $times[$i - 1]) /2);

                if ($difference >= $t)
                {
                    return $times[$i];
                }
            }
            return 0;
        }
    }

    private function get_sanctions_duration()
    {
        return array(
            '0' => LangLoader::get_message('no', 'common'),
            '60' => '1 ' . $this->lang['minute'],
            '300' => '5 ' . $this->lang['minutes'],
            '900' => '15 ' . $this->lang['minutes'],
            '1800' => '30 ' . $this->lang['minutes'],
            '3600' => '1 ' . $this->lang['hour'],
            '7200' => '2 ' . $this->lang['hours'],
            '86400' => '1 ' . $this->lang['day'],
            '172800' => '2 ' . $this->lang['days'],
            '604800' => '1 ' . $this->lang['week'],
            '1209600' => '2 ' . $this->lang['weeks'],
            '2419200' => '1 ' . $this->lang['month'],
            '4838400' => '2 ' . $this->lang['month'],
            '326592000' => LangLoader::get_message('illimited', 'main')
        );
    }
}
?>