theme_image_rotate_summary($variables)Theme callback for image rotate effect summary output.
$variables An associative array containing:
modules/image/image.admin.inc, line 893
<?php
function theme_image_rotate_summary($variables) {
$data = $variables['data'];
return ($data['random']) ? t('random between -@degrees° and @degrees°', array('@degrees' => str_replace('-', '', $data['degrees']))) : t('@degrees°', array('@degrees' => $data['degrees']));
}
?>