Full ELMS Learning Network documentation
function theme_image_rotate_summary
×
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).cis7 image.admin.inc | theme_image_rotate_summary($variables) |
cle7 image.admin.inc | theme_image_rotate_summary($variables) |
elmsmedia7 image.admin.inc | theme_image_rotate_summary($variables) |
icor7 image.admin.inc | theme_image_rotate_summary($variables) |
meedjum_blog7 image.admin.inc | theme_image_rotate_summary($variables) |
mooc7 image.admin.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
2 string references to the theme hook from theme_image_rotate_summary()
Note: this list is generated by looking for the string for this theme hook, so it may include some references that are not actually using this theme hook.
- image_image_effect_info in modules/
image/ image.effects.inc - Implements hook_image_effect_info().
- image_theme in modules/
image/ image.module - Implements hook_theme().
File
- modules/
image/ image.admin.inc, line 922 - Administration pages for image settings.
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']));
}