function imagezoom_zoom_types in Image Zoom 7.2
Returns an array of available zoom types.
2 calls to imagezoom_zoom_types()
File
- ./
imagezoom.module, line 273 - Provides an Image Zoom field formatter for Image fields.
Code
function imagezoom_zoom_types() {
$types = array(
'window' => t('Window'),
'inner' => t('Inner'),
'lens' => t('Lens'),
);
return $types;
}