function theme_image_rotate_summary
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
-
modules/
image/ image.admin.inc, line 936
Code
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'],
));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.