CommonDBTM::canDelete PHP Method

canDelete() static public method

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