WorklistDefinitionMapping::getValueList PHP Method

getValueList() public method

Convenience getter for managing a string representation of the set of mapped values.
public getValueList ( ) : string
return string
    public function getValueList()
    {
        if (!isset($this->_valuelist)) {
            $res = array();
            foreach ($this->values as $v) {
                $res[] = $v->mapping_value;
            }
            $this->_valuelist = implode(',', $res);
        }
        return $this->_valuelist;
    }