Themosis\Field\Fields\FieldBuilder::parseFeatures PHP Method

parseFeatures() protected method

Parse and prepare field feature properties.
protected parseFeatures ( ) : array
return array
    protected function parseFeatures()
    {
        $f = $this['features'];
        // Check the title extra property.
        $f['title'] = isset($f['title']) ? ucfirst($f['title']) : ucfirst($this['name']);
        return $f;
    }