コード例 #1
0
ファイル: RowAbstract.php プロジェクト: rusnak/Ext
 public function getIdentity()
 {
     if (is_null($this->_identity)) {
         $identityColumn = $this->_indexInstance->getIndexColumn();
         $this->_identity = $this->{$identityColumn};
     }
     return $this->_identity;
 }