Habari\Cache::has_group PHP Method

has_group() public static method

Is group in the cache?
public static has_group ( string $group ) : boolean
$group string name of the cached group
return boolean true if group is cached, false if not
    public static function has_group($group)
    {
        $group = self::site_unique() . $group;
        return self::$instance->_has_group($group);
    }