You are here

function scald_dnd_library_image_default_styles in Scald: Media Management made easy 7

Implements hook_image_default_styles().

File

modules/library/scald_dnd_library/scald_dnd_library.module, line 350
Scald DnD Library

Code

function scald_dnd_library_image_default_styles() {
  $presets = array();
  $presets['library'] = array(
    'effects' => array(
      array(
        'name' => 'image_scale',
        'data' => array(
          'width' => '48',
          'height' => '',
          'upscale' => 0,
        ),
        'weight' => '0',
      ),
    ),
  );
  return $presets;
}