Skip to content

Instantly share code, notes, and snippets.

@tjboudreaux
Created January 22, 2010 01:09
Show Gist options
  • Save tjboudreaux/283405 to your computer and use it in GitHub Desktop.
Save tjboudreaux/283405 to your computer and use it in GitHub Desktop.
public function postUpdate($event)
{
$profile = Zend_Registry::getInstance()->get("role");
$currentRecord = $this->getTable()->find($event->getInvoker()->id);
$profile->steps = $profile->steps - $currentRecord->steps +
$event->getInvoker()->steps;
$profile->save();
}
public function postInsert($event)
{
$profile = Zend_Registry::getInstance()->get("role");
$profile->steps += $event->getInvoker()->steps;
$profile->save();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment