Piwik\Notification::hasNoClear PHP Method

hasNoClear() public method

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