You are here

function file_styles_styles_default_styles in Styles 7.2

Implementation of Styles module hook_styles_default_styles().

File

contrib/file_styles/includes/styles/file_styles.styles.inc, line 45
styles/contrib/file_styles/includes/styles/file_styles.styles.inc Implementations of various Styles hooks.

Code

function file_styles_styles_default_styles() {
  return array(
    'file' => array(
      'styles' => array(
        'square_thumbnail' => array(
          'label' => 'Square thumbnail',
          'description' => 'A 120x120 square thumbnail for browsing media by an editor.',
        ),
        'thumbnail' => array(
          'label' => 'Thumbnail',
          'description' => 'Small thumbnails representing the media.',
        ),
        'large' => array(
          'label' => 'Large',
          'description' => 'A large format of the media.',
        ),
        'medium' => array(
          'label' => 'Medium',
          'description' => 'A medium format of the media.',
        ),
        'original' => array(
          'label' => 'Original',
          'description' => 'The original format of the media.',
        ),
      ),
    ),
  );
}