diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-08-02 12:09:00 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-08-02 12:09:00 -0700 |
commit | 7ad0808a117fd1db4e94da8d7763ccca1d69350a (patch) | |
tree | 3102d84609cfb0412cf431c4ea97fb7c35748d71 /modules/notification/helpers/notification_event.php | |
parent | f034c6c534ad6a07dacc6e64c7e6b43f139c3831 (diff) |
Change the API for getting to the original state of an ORM.
Old API: $obj->original("field_name")
New API: $obj->original()->field_name
This allows us to revert the varous xxx_updated events back to passing
an original ORM as well as the the updated one. This makes for a
cleaner event API.
Old API: comment_updated($comment) { $comment->original("field_name") }
Old API: comment_updated($old, $new) { $old->field_name }
Diffstat (limited to 'modules/notification/helpers/notification_event.php')
-rw-r--r-- | modules/notification/helpers/notification_event.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/notification/helpers/notification_event.php b/modules/notification/helpers/notification_event.php index c6e770a7..d1b76e93 100644 --- a/modules/notification/helpers/notification_event.php +++ b/modules/notification/helpers/notification_event.php @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ class notification_event_Core { - static function item_updated($item) { - notification::send_item_updated($item); + static function item_updated($original, $new) { + notification::send_item_updated($new); } static function item_created($item) { @@ -40,8 +40,8 @@ class notification_event_Core { } } - static function comment_updated($item) { - if ($item->state == "published" && $item->original("state") != "published") { + static function comment_updated($original, $new) { + if ($new->state == "published" && $original->state != "published") { notification::send_comment_published($new); } } |