1 image.theme.inc theme_image_rotate_summary($variables)

Returns HTML for a summary of an image rotate effect.

Parameters

$variables: An associative array containing:

  • data: The current configuration for this rotate effect.

Related topics

File

core/modules/image/image.theme.inc, line 334
Theme functions for the Image module.

Code

function theme_image_rotate_summary($variables) {
  $data = $variables['data'];
  return ($data['random']) ? t('random between -@degrees&deg and @degrees&deg', array('@degrees' => str_replace('-', '', $data['degrees']))) : t('@degrees&deg', array('@degrees' => $data['degrees']));
}