FOF30\Form\Field\Components::getStatic PHP Method

getStatic() public method

Get the rendering of this field type for static display, e.g. in a single item view (typically a "read" task).
Since: 2.1
public getStatic ( ) : string
return string The field HTML
    public function getStatic()
    {
        $options = array('id' => $this->id);
        return $this->getFieldContents($options);
    }