t("EXIF GPS Map")); } static function get($block_id, $theme) { $block = ""; switch ($block_id) { case "exif_gps_map": $record = ORM::factory("exif_coordinate")->where("item_id", "=", $theme->item->id)->find(); if ($record->loaded()) { $block = new Block(); $block->css_id = "g-exif-gps-sidebar"; $block->title = t("Location"); $block->content = new View("exif_gps_sidebar.html"); $block->content->latitude = $record->latitude; $block->content->longitude = $record->longitude; } break; } return $block; } }