diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-28 00:19:08 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-28 00:19:08 +0000 |
commit | 3ad9b6174a0adcc3d9b6e4ae007bd3ffd8ef2d26 (patch) | |
tree | b55c0a1303627c35707afd71389f5dd340663e76 /core/helpers | |
parent | b8c034cb373a9e1f2df684f56e2cb1a42e413d1c (diff) |
Add event plumbing to allow the tag module to be notified when a photo is created. Eventually this will be used to parse the image meta data and extract tags;
Diffstat (limited to 'core/helpers')
-rw-r--r-- | core/helpers/album.php | 3 | ||||
-rw-r--r-- | core/helpers/photo.php | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/core/helpers/album.php b/core/helpers/album.php index bae682fa..e2163b4c 100644 --- a/core/helpers/album.php +++ b/core/helpers/album.php @@ -53,6 +53,9 @@ class album_Core { if (!file_exists($thumbnail_dir)) { mkdir($thumbnail_dir); } + + Event::run("gallery.album_created", $photo); + return $album; } } diff --git a/core/helpers/photo.php b/core/helpers/photo.php index 46a33b56..900322d2 100644 --- a/core/helpers/photo.php +++ b/core/helpers/photo.php @@ -74,8 +74,12 @@ class photo_Core { // @todo: parameterize these dimensions // This saves the photo a second time, which is unfortunate but difficult to avoid. - return $photo->set_thumbnail($filename, 200, 140) + $result = $photo->set_thumbnail($filename, 200, 140) ->set_resize($filename, 640, 480) ->save(); + + Event::run("gallery.photo_created", $photo); + + return $result; } } |