You are here

function scald_galleria_scald_player in Scald: Gallery 7.2

Implements hook_scald_player().

File

scald_galleria/scald_galleria.module, line 26
Scald Galleria is a player for Scald Gallery.

Code

function scald_galleria_scald_player() {
  return array(
    'galleria' => array(
      'name' => 'Galleria',
      'description' => 'Display image gallery using Galleria, a JavaScript image gallery framework.',
      'type' => array(
        'gallery',
      ),
      'settings' => array(
        'width' => '690',
        'height' => '450',
        'fullscreen_link' => FALSE,
        'thumb_style' => 'thumbnail',
        'normal_style' => 'large',
        'big_style' => 'original',
        'theme' => 'classic',
        'options' => '',
      ),
    ),
  );

  // This code will never be hit, but is necessary to mark the string
  // for translation on localize.d.o
  // @codingStandardsIgnoreStart
  t('Galleria');
  t('Display image gallery using Galleria, a JavaScript image gallery framework.');

  // @codingStandardsIgnoreEnd
}