CommonDBTM::canPurge PHP Method

canPurge() static public method

May be overloaded if needed
static public canPurge ( ) : booleen
return booleen
    static function canPurge()
    {
        if (static::$rightname) {
            return Session::haveRight(static::$rightname, PURGE);
        }
        return false;
    }
CommonDBTM