where("item_id", "=", $item->id) ->find_all(); $existingNotes = ORM::factory("items_note") ->where("item_id", "=", $item->id) ->find_all(); $tags_arraystring = ""; $jscode = ""; $legend_faces = ""; $legend_notes = ""; // If it does, then insert some javascript and display an image map // to show where the faces are at. if ((count($existingFaces) > 0) || (count($existingNotes) > 0)) { $jscode = "notes: [ "; foreach ($existingFaces as $oneFace) { $oneTag = ORM::factory("tag", $oneFace->tag_id); $tagdesc = ""; if ($oneFace->description) { $tagdesc = "
". html::clean($oneFace->description); } if (module::get_var("photoannotation", "showfaces", false)) { $legend_faces .= "url() ."\">". html::clean($oneTag->name) .", "; } $jscode .= "{ \"top\": ". $oneFace->y1 .",\n"; $jscode .= "\"left\": ". $oneFace->x1 .",\n"; $jscode .= "\"width\": ". ($oneFace->x2 - $oneFace->x1) .",\n"; $jscode .= "\"height\": ". ($oneFace->y2 - $oneFace->y1) .",\n"; $jscode .= "\"text\": \"". html::clean($oneTag->name) . $tagdesc ."\",\n"; $jscode .= "\"noteid\": ". $oneFace->id .",\n"; $jscode .= "\"notetype\": \"face\",\n"; $jscode .= "\"editable\": true,\n"; $jscode .= "\"url\": \"". $oneTag->url() ."\" },\n"; } if ($legend_faces != "") { $legend_faces = trim($legend_faces, ", "); $legend_faces = t("Faces on this photo: ") . $legend_faces; } foreach ($existingNotes as $oneNote) { $tagdesc = ""; if ($oneNote->description) { $tagdesc = "
". html::clean($oneNote->description); } if (module::get_var("photoannotation", "shownotes", false)) { $legend_notes .= html::clean($oneNote->title) .", "; } $jscode .= "{ \"top\": ". $oneNote->y1 .",\n"; $jscode .= "\"left\": ". $oneNote->x1 .",\n"; $jscode .= "\"width\": ". ($oneNote->x2 - $oneNote->x1) .",\n"; $jscode .= "\"height\": ". ($oneNote->y2 - $oneNote->y1) .",\n"; $jscode .= "\"text\": \"". html::clean($oneNote->title) . $tagdesc ."\",\n"; $jscode .= "\"noteid\": ". $oneNote->id .",\n"; $jscode .= "\"notetype\": \"note\",\n"; $jscode .= "\"editable\": false,\n"; $jscode .= "\"url\": \"\" },\n"; } $jscode = trim($jscode, ",\n"); $jscode .= " ],"; if ($legend_notes != "") { $legend_notes = trim($legend_notes, ", "); $legend_notes = t("Notes on this photo: ") . $legend_notes; } } $legend_display = $legend_faces; if ($legend_display == "") { $legend_display = $legend_notes; } else { if ($legend_notes != "") { $legend_display = $legend_display ."
". $legend_notes; } } $item_tags = ORM::factory("tag") ->join("items_tags", "tags.id", "items_tags.tag_id") ->where("items_tags.item_id", "=", $item->id) ->find_all(); $tags_arraystring = "tags: [ "; foreach ($item_tags as $current_tag) { $tags_arraystring .= "{'name':'". html::clean($current_tag->name) ."','id':'". $current_tag->id ."'},"; } $tags_arraystring = trim($tags_arraystring, ","); $tags_arraystring .= " ],"; $labels_arraystring = "labels: [ '". t("Tag:") ."','". t("Note Title:") ."','". t("Description (optional):") ."','". t("Are you sure you want to delete this annotation?") ."' ],"; ?> ". $legend_display ."" ?>