You are here

function scald_gallery_scald_atom_providers in Scald: Gallery 7.2

Same name and namespace in other branches
  1. 7 scald_gallery.module \scald_gallery_scald_atom_providers()

Implements hook_scald_atom_providers().

File

./scald_gallery.module, line 195
Scald Gallery is a Scald Atom Provider for image galleries.

Code

function scald_gallery_scald_atom_providers() {
  return array(
    'gallery' => 'Gallery items upload',
  );

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

  // @codingStandardsIgnoreEnd
}