コード例 #1
0
 public function isEqual(Kwf_Model_Interface $other)
 {
     if ($other instanceof Kwf_Component_Model && $this->getTable()->getTableName() == $other->getTable()->getTableName()) {
         return true;
     }
     return false;
 }
コード例 #2
0
 public function isEqual(Kwf_Model_Interface $other)
 {
     if ($other instanceof Kwf_Component_Model && $this->getTable()->info(Zend_Db_Table_Abstract::NAME) == $other->getTable()->info(Zend_Db_Table_Abstract::NAME)) {
         return true;
     }
     return false;
 }