Contao\Controller::getPageSections PHP Метод

getPageSections() публичный статический Метод

Return all page sections as array
Устаревший: Deprecated since Contao 4.0, to be removed in Contao 5.0. See https://github.com/contao/core/issues/4693.
public static getPageSections ( ) : array
Результат array An array of active page sections
    public static function getPageSections()
    {
        @trigger_error('Using Controller::getPageSections() has been deprecated and will no longer work in Contao 5.0.', E_USER_DEPRECATED);
        return array('header', 'left', 'right', 'main', 'footer');
    }