FOF30\Form\Field\CacheHandler::getStatic PHP 메소드

getStatic() 공개 메소드

Get the rendering of this field type for static display, e.g. in a single item view (typically a "read" task).
부터: 2.0
public getStatic ( ) : string
리턴 string The field HTML
    public function getStatic()
    {
        if (isset($this->element['legacy'])) {
            return $this->getInput();
        }
        $options = array('id' => $this->id);
        return $this->getFieldContents($options);
    }