You are here

function scald_image_scald_atom_providers in Scald: Media Management made easy 7

Implements hook_scald_atom_providers().

File

modules/providers/scald_image/scald_image.module, line 15
Scald Image is a Scald Atom Provider for images.

Code

function scald_image_scald_atom_providers() {
  return array(
    'image' => 'Image upload',
  );

  // This code will never be hit, but is necessary to mark the string
  // for translation on localize.d.o
  t('Image upload');
}