is_dirty() public method

Check whether the given field has been changed since this object was saved.
public is_dirty ( $key )
コード例 #1
0
ファイル: paris.php プロジェクト: florinp/dexonline
 /**
  * Check whether the given field has changed since the object was created or saved
  *
  * @param  string $property
  * @return bool
  */
 public function is_dirty($property)
 {
     return $this->orm->is_dirty($property);
 }