Piwik\Notification::hasNoClear PHP Метод

hasNoClear() публичный Метод

Returns 1 if the notification will be displayed without a close button, 0 if otherwise.
public hasNoClear ( ) : integer
Результат integer `1` or `0`.
    public function hasNoClear()
    {
        if ($this->flags & self::FLAG_NO_CLEAR) {
            return 1;
        }
        return 0;
    }