Skip to content
Snippets Groups Projects
class.list.php 31.6 KiB
Newer Older
Peter Rotich's avatar
Peter Rotich committed
    function getState() {
        return $this->get('state');
    }

Peter Rotich's avatar
Peter Rotich committed
    function getValue() {
        return $this->getName();
    }

    function getAbbrev() {
        return '';
    }

    function getSortOrder() {
        return $this->get('sort');
    }

    private function getProperties() {

        if (!isset($this->_properties)) {
            $this->_properties = $this->get('properties');
            if (is_string($this->_properties))
                $this->_properties = JsonDataParser::parse($this->_properties);
            elseif (!$this->_properties)
                $this->_properties = array();
        }

        return $this->_properties;
    }

    function getTranslateTag($subtag) {
        return _H(sprintf('status.%s.%s', $subtag, $this->id));
    }
    function getLocal($subtag) {
        $tag = $this->getTranslateTag($subtag);
        $T = CustomDataTranslation::translate($tag);
        return $T != $tag ? $T : $this->get($subtag);
    }

Peter Rotich's avatar
Peter Rotich committed
    function getConfiguration() {

        if (!$this->_settings) {
            $this->_settings = $this->getProperties();
            if (!$this->_settings)
                $this->_settings = array();
            if ($this->getForm()) {
                foreach ($this->getForm()->getFields() as $f)  {
Peter Rotich's avatar
Peter Rotich committed
                    $name = mb_strtolower($f->get('name'));
                    $id = $f->get('id');
                    switch($name) {
                        case 'flags':
                            foreach (TicketFlagField::$_flags as $k => $v)
Peter Rotich's avatar
Peter Rotich committed
                                if ($this->hasFlag('flags', $v['flag']))
                                    $this->_settings[$id][$k] = $v['name'];
Peter Rotich's avatar
Peter Rotich committed
                            break;
                        case 'state':
                            $this->_settings[$id][$this->get('state')] = $this->get('state');
Peter Rotich's avatar
Peter Rotich committed
                            break;
                        default:
                            if (!$this->_settings[$id] && $this->_settings[$name])
                                $this->_settings[$id] = $this->_settings[$name];
                    }
                }
            }
        }

        return $this->_settings;
    }

    function setConfiguration(&$errors=array()) {
        $properties = array();
        foreach ($this->getConfigurationForm($_POST)->getFields() as $f) {
            if ($this->isInternal() //Item is internal.
                    && !$f->isEditable())
                continue;
Peter Rotich's avatar
Peter Rotich committed
            $val = $f->getClean();
            $errors = array_merge($errors, $f->errors());
            if ($f->errors()) continue;
Peter Rotich's avatar
Peter Rotich committed
            $name = mb_strtolower($f->get('name'));
            switch ($name) {
                case 'flags':
                    if ($val && is_array($val)) {
                        $flags = 0;
                        foreach ($val as $k => $v) {
                            if (isset(TicketFlagField::$_flags[$k]))
                                $flags += TicketFlagField::$_flags[$k]['flag'];
Peter Rotich's avatar
Peter Rotich committed
                            elseif (!$f->errors())
                                $f->addError(__('Unknown or invalid flag'), $name);
Peter Rotich's avatar
Peter Rotich committed
                        }
                        $this->set('flags', $flags);
                    } elseif ($val && !$f->errors()) {
                        $f->addError(__('Unknown or invalid flag format'), $name);
Peter Rotich's avatar
Peter Rotich committed
                    }
                    break;
                case 'state':
                    if ($val)
                        $this->set('state', $val);
Peter Rotich's avatar
Peter Rotich committed
                    else
                        $f->addError(__('Unknown or invalid state'), $name);
Peter Rotich's avatar
Peter Rotich committed
                    break;
                default: //Custom properties the user might add.
Peter Rotich's avatar
Peter Rotich committed
                    $properties[$f->get('id')] = $f->to_php($val);
            // Add field specific validation errors (warnings)
Peter Rotich's avatar
Peter Rotich committed
            $errors = array_merge($errors, $f->errors());
        }

        if (count($errors) === 0) {
            if ($properties && is_array($properties))
                $properties = JsonDataEncoder::encode($properties);

            $this->set('properties', $properties);
Peter Rotich's avatar
Peter Rotich committed
            $this->save(true);
        }

        return count($errors) === 0;
    }

    function update($vars, &$errors) {

        $fields = array('value' => 'name', 'sort' => 'sort');
        foreach($fields as $k => $v) {
            if (isset($vars[$k]))
                $this->set($v, $vars[$k]);
        }

        return $this->save(true);
    }

    function delete() {

        // Statuses with tickets are not deletable
Peter Rotich's avatar
Peter Rotich committed
        if (!$this->isDeletable())
            return false;

        return parent::delete();
Peter Rotich's avatar
Peter Rotich committed
    }

    function __toString() {
        return __($this->getName());
    static function create($ht) {

        if (!isset($ht['mode']))
            $ht['mode'] = 1;

        $ht['created'] = new SqlFunction('NOW');

        return  parent::create($ht);
    }

    static function lookup($var, $list= false) {

        if (!($item = parent::lookup($var)))
            return null;

        $item->_list = $list;

        return $item;
    }


Peter Rotich's avatar
Peter Rotich committed
    static function __create($ht, &$error=false) {
        global $ost;

        $ht['properties'] = JsonDataEncoder::encode($ht['properties']);
        if (($status = TicketStatus::create($ht)))
Peter Rotich's avatar
Peter Rotich committed
            $status->save(true);

        return $status;
    }

    static function status_options() {
Peter Rotich's avatar
Peter Rotich committed
        include(STAFFINC_DIR . 'templates/status-options.tmpl.php');
    }
}