imagecache_autorotate.install 389 B

12345678910111213
  1. <?php
  2. /**
  3. * @file (un)install and (dis/en)able hooks for imagecache autorotate module.
  4. */
  5. /**
  6. * Implements hook_enable().
  7. */
  8. function imagecache_autorotate_enable() {
  9. if (!function_exists('exif_read_data')) {
  10. drupal_set_message(t('The exif_read_data() function is not available in this PHP installation. You probably will have to enable the exif extension.'), 'warning');
  11. }
  12. }