CommonDBTM::canDeleteItem PHP Method

canDeleteItem() public method

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