CMS\Page::getContent PHP Method

getContent() public method

Return file content
public getContent ( ) : string
return string
    public function getContent()
    {
        if (isset($this->content)) {
            return $this->content;
        }
        // FIXME can be problem if index.php or index.latte
        if ($this->isDir()) {
            return $this->content = is_file($file = $this . '/index.html') || is_file($file = $this . '/index.md') ? file_get_contents($file) : '';
        }
        return $this->content = $this->isFile() ? file_get_contents($this->getRealPath()) : '';
    }