ManaPHP\Renderer::getSection PHP Method

getSection() public method

Get the string contents of a section.
public getSection ( string $section, string $default = '' ) : string
$section string
$default string
return string
    public function getSection($section, $default = '')
    {
        if (isset($this->_sections[$section])) {
            return $this->_sections[$section];
        } else {
            return $default;
        }
    }