CommonDBTM::canDeleteItem PHP 메소드

canDeleteItem() 공개 메소드

Default is true and check entity if the objet is entity assign May be overloaded if needed
public canDeleteItem ( ) : booleen
리턴 booleen
    function canDeleteItem()
    {
        if (!$this->checkEntity()) {
            return false;
        }
        return true;
    }
CommonDBTM