You are here

function imageeditor_info in Image Editor 7

Same name in this branch
  1. 7 imageeditor.module \imageeditor_info()
  2. 7 imageeditor.api.php \imageeditor_info()

Helper function to invoke hooks.

Parameters

$type: Either editor, uploader or overlay.

13 calls to imageeditor_info()
imageeditor_admin_css in ./imageeditor.module
imageeditor_imagefield_element_process in imageeditor_imagefield/imageeditor_imagefield.module
Process function for image editor-enabled fields.
imageeditor_imagefield_enabled in imageeditor_imagefield/imageeditor_imagefield.module
Checks that Image Editor for Image Field is enabled on this field.
imageeditor_imagefield_field_widget_info_alter in imageeditor_imagefield/imageeditor_imagefield.module
Implements hook_field_widget_info_alter(). A list of settings needed by Image Editor module on widgets.
imageeditor_imagefield_field_widget_settings_form in imageeditor_imagefield/imageeditor_imagefield.module
Configuration form for editing Image Editor settings for a field instance.

... See full list

File

./imageeditor.module, line 220
Allows online editing of images using different image editing services.

Code

function imageeditor_info($type = 'editor', $codename = NULL) {
  ctools_include('plugins');
  if ($codename) {
    return ctools_get_plugins('imageeditor', $type, $codename);
  }
  return ctools_get_plugins('imageeditor', $type);
}