Contao\Message::hasRaw PHP Метод

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

Check if there are raw messages
public static hasRaw ( string $strScope = TL_MODE ) : boolean
$strScope string An optional message scope
Результат boolean True if there are raw messages
    public static function hasRaw($strScope = TL_MODE)
    {
        return \System::getContainer()->get('session')->getFlashBag()->has(static::getFlashBagKey('raw', $strScope));
    }