You are here

function heartbeat_comments_image_default_styles in Heartbeat 7

Implements hook_image_default_styles().

File

modules/heartbeat_comments/heartbeat_comments.module, line 292
Heartbeat comments for activity.

Code

function heartbeat_comments_image_default_styles() {
  $styles = array();
  $styles['comment_avatar'] = array(
    'effects' => array(
      array(
        'name' => 'image_scale',
        'data' => array(
          'width' => 32,
          'height' => 32,
          'upscale' => 1,
        ),
        'weight' => 0,
      ),
    ),
  );
  return $styles;
}