You are here

function nivo_slider_image_default_styles in Nivo Slider 7

Implements hook_image_default_styles().

File

./nivo_slider.module, line 378
Primarily Drupal hooks.

Code

function nivo_slider_image_default_styles() {
  $styles = array();
  $styles['nivo_slider'] = array(
    'effects' => array(
      array(
        'name' => 'image_scale',
        'data' => array(
          'width' => 500,
          'upscale' => 1,
        ),
        'weight' => 0,
      ),
    ),
  );
  return $styles;
}