eZ\Publish\Core\FieldType\Page\Value::__toString PHP Method

__toString() public method

Returns a string representation of the field value.
public __toString ( ) : string
return string
    public function __toString()
    {
        if ($this->page instanceof Page) {
            return $this->page->layout;
        }
        return '';
    }