From d4394d9645b379c1d57c096ee4136fbae4904b1d Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sat, 30 Oct 2010 14:55:31 +0000 Subject: added river events for ajax upload --- actions/ajax_upload.php | 5 ++++- actions/ajax_upload_complete.php | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/actions/ajax_upload.php b/actions/ajax_upload.php index a9743cf54..9aea9c19d 100644 --- a/actions/ajax_upload.php +++ b/actions/ajax_upload.php @@ -45,7 +45,10 @@ $image->saveThumbnails($image_lib); $album->prependImageList(array($image->guid)); -error_log('complete'); + +if (get_plugin_setting('img_river_view', 'tidypics') === "all") { + add_to_river('river/object/image/create', 'create', $image->owner_guid, $image->guid); +} echo "1"; exit; \ No newline at end of file diff --git a/actions/ajax_upload_complete.php b/actions/ajax_upload_complete.php index 4fc96061e..0912854a3 100644 --- a/actions/ajax_upload_complete.php +++ b/actions/ajax_upload_complete.php @@ -21,4 +21,7 @@ if ($album->new_album == TP_NEW_ALBUM) { add_to_river('river/object/album/create', 'create', $album->owner_guid, $album->guid); } +// plugins can register to be told when a Tidypics album has had images added +trigger_elgg_event('upload', 'tp_album', $album); + exit; \ No newline at end of file -- cgit v1.2.3