You are here

function collageformatter_image_default_styles in Collage Formatter 7

Implements hook_image_default_styles().

File

./collageformatter.module, line 1004
Main file for Collage Formatter module.

Code

function collageformatter_image_default_styles() {
  $styles = array();
  $styles['collageformatter'] = array(
    'effects' => array(
      array(
        'name' => 'collageformatter',
        'weight' => '0',
      ),
    ),
  );
  return $styles;
}