summaryrefslogtreecommitdiff
path: root/modules/tag/helpers
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tag/helpers')
-rw-r--r--modules/tag/helpers/tag.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/tag/helpers/tag.php b/modules/tag/helpers/tag.php
index 38595b1c..4b65016d 100644
--- a/modules/tag/helpers/tag.php
+++ b/modules/tag/helpers/tag.php
@@ -88,4 +88,17 @@ class tag_Core {
$form->add_rules_from(ORM::factory("tag"));
return $form;
}
+
+ /**
+ * Handle the creation of a new photo.
+ * @todo Get tags from the XMP and/or IPTC data in the image
+ *
+ * @param Item_Model $photo
+ */
+ public static function on_photo_create() {
+ $photo = Event::$data;
+ Kohana::log("debug", "tag::on_photo_create($photo->name)");
+ return;
+ }
+
}