You are here

function imageinfo_cache_image_toolkits in Imageinfo Cache 7.3

Implements hook_image_toolkits().

File

./imageinfo_cache.module, line 99
Imageinfo Cache module.

Code

function imageinfo_cache_image_toolkits() {

  // Do nothing if the pseudo toolkit is disabled.
  if (!variable_get('imageinfo_cache_pseudo_image_toolkit', IMAGEINFO_CACHE_PSEUDO_IMAGE_TOOLKIT)) {
    return;
  }
  module_load_include('inc', 'imageinfo_cache', 'imageinfo_cache.toolkit');
  return array(
    'imageinfo_cache' => array(
      'title' => t('Imageinfo Cache'),
      'available' => TRUE,
    ),
  );
}