APIClient::getSpecificValueToDisplay PHP Method

getSpecificValueToDisplay() static public method

static public getSpecificValueToDisplay ( $field, $values, array $options = [] )
$options array
    static function getSpecificValueToDisplay($field, $values, array $options = array())
    {
        switch ($field) {
            case 'dolog_method':
                $methods = self::getLogMethod();
                return $methods[$values[$field]];
            case 'ipv4_range_start':
            case 'ipv4_range_end':
                return long2ip($values[$field]);
        }
        return parent::getSpecificValueToDisplay($field, $values, $options);
    }