1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/modules/exif_gps/helpers/exif_gps_event.php

101 lines
3.9 KiB
PHP
Raw Normal View History

2010-02-26 02:51:55 +00:00
<?php defined("SYSPATH") or die("No direct script access.");
/**
* Gallery - a web based photo album viewer and editor
2010-03-04 05:36:58 +00:00
* Copyright (C) 2000-2010 Bharat Mediratta
2010-02-26 02:51:55 +00:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class exif_gps_event_Core {
static function pre_deactivate($data) {
// If the admin is about to deactivate EXIF, warn them that this module requires it.
if ($data->module == "exif") {
$data->messages["warn"][] = t("The EXIF_GPS module requires the EXIF module.");
}
}
static function module_change($changes) {
// If EXIF is deactivated, display a warning that it is required for this module to function properly.
if (!module::is_active("exif") || in_array("exif", $changes->deactivate)) {
site_status::warning(
t("The EXIF_GPS module requires the EXIF module. " .
"<a href=\"%url\">Activate the EXIF module now</a>",
array("url" => html::mark_clean(url::site("admin/modules")))),
"exif_gps_needs_exif");
} else {
site_status::clear("exif_gps_needs_exif");
}
}
static function item_created($item) {
// Whenever a new non-album item is created, check it for GPS coordinates.
if (!$item->is_album()) {
exif_gps::extract($item);
}
}
static function item_deleted($item) {
// Whenever an item is deleted, delete any corresponding GPS coordinates.
db::build()
->delete("exif_coordinates")
->where("item_id", "=", $item->id)
->execute();
}
static function item_edit_form($item, $form) {
// Allow users to set / edit the GPS coordinates associated with the current item.
$record = ORM::factory("exif_coordinate")->where("item_id", "=", $item->id)->find();
$gpsdata = $form->edit_item->group("gps_data")->label("GPS Data");
2010-02-26 02:51:55 +00:00
if ($record->loaded()) {
$gpsdata->input("latitude")->label(t("Latitude"))
2010-02-26 02:51:55 +00:00
->value($record->latitude);
$gpsdata->input("longitude")->label(t("Longitude"))
2010-02-26 02:51:55 +00:00
->value($record->longitude);
} else {
$gpsdata->input("latitude")->label(t("Latitude"));
$gpsdata->input("longitude")->label(t("Longitude"));
2010-02-26 02:51:55 +00:00
}
}
static function item_edit_form_completed($item, $form) {
// Update the db records with the user-specified coordinates.
// Require a set of coordinates (both latitude and longitude).
// If one or both fields are blank, completely delete any coordinates associated with this item.
if (($form->edit_item->latitude->value == "") || ($form->edit_item->longitude->value == "")) {
db::build()
->delete("exif_coordinates")
->where("item_id", "=", $item->id)
->execute();
} else {
$record = ORM::factory("exif_coordinate")->where("item_id", "=", $item->id)->find();
if (!$record->loaded()) {
$record->item_id = $item->id;
}
$record->latitude = $form->edit_item->gps_data->latitude->value;
$record->longitude = $form->edit_item->gps_data->longitude->value;
2010-02-26 02:51:55 +00:00
$record->save();
}
}
2010-03-10 21:33:30 +00:00
static function admin_menu($menu, $theme) {
// Add a link to the EXIF_GPS admin page to the Settings menu.
$menu->get("settings_menu")
->append(Menu::factory("link")
->id("exif_gps")
->label(t("EXIF_GPS Settings"))
->url(url::site("admin/exif_gps")));
}
2010-02-26 02:51:55 +00:00
}