From 96d54bf6955d8e9711a50646473620182d442d76 Mon Sep 17 00:00:00 2001 From: Silvio <s1lv10@uol.com.br> Date: Fri, 23 Apr 2010 17:23:54 -0300 Subject: Initial import from upstream release --- exif.install | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 exif.install (limited to 'exif.install') diff --git a/exif.install b/exif.install new file mode 100755 index 0000000..0071310 --- /dev/null +++ b/exif.install @@ -0,0 +1,26 @@ +<?php +// $Id: exif.install,v 1.4.2.5 2010/03/19 22:17:00 rapsli Exp $ +/** + * @file the install part of the module +*/ + +/** + * Implementation of hook_install(). + */ +function exif_install() { + db_query("UPDATE {system} SET weight = %d WHERE name = '%s'", -10, 'exif'); +} + +function exif_requirements($phase) { + $t = get_t(); + if ($phase == 'runtime' || $phase == 'install') { + if (!function_exists('exif_read_data')) { + $requirements['exif_read_data'] = array( + 'title' => $t('Function exif_read_data not available'), + 'value' => $t('The Function exif_read_data is not available on the system.'), + 'severity' => REQUIREMENT_ERROR, + ); + } + } + return $requirements; +} \ No newline at end of file -- cgit v1.2.3