CommonDBTM::canPurge PHP 메소드

canPurge() 정적인 공개 메소드

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