How do I check if field has changed?
I'd like to trigger an action in preSave()
only if specific field has changed, e.q.
public function preSave() {
if ($bodyBefore != $bodyNow) {
$this->html = $this->_htmlify($bodyNow);
}
}
The question is how to get this $bodyBefore and $bodyNow :)