You are here

function cookie_content_blocker_media_image_default_styles in Cookie Content Blocker 7

Implements hook_image_default_styles().

File

modules/cookie_content_blocker_media/cookie_content_blocker_media.module, line 41
Contains the main module code for Cookie content blocker - Media.

Code

function cookie_content_blocker_media_image_default_styles() {
  return array(
    'blocked_media_teaser' => array(
      'label' => 'Blocked media teaser (480x480)',
      'effects' => array(
        array(
          'name' => 'image_scale',
          'data' => array(
            'width' => 480,
            'height' => 480,
            'upscale' => 1,
          ),
          'weight' => 0,
        ),
      ),
    ),
  );
}