You are here

function cloud_zoom_admin_preset_title in Cloud Zoom 6

Profile title callbac for add and edit pages

1 string reference to 'cloud_zoom_admin_preset_title'
cloud_zoom_menu in ./cloud_zoom.module
Implementation of hook_menu().

File

./cloud_zoom.module, line 86
This module integrates the Cloud Zoom JQuery library from: http://www.professorcloud.com/mainsite/cloud-zoom.htm

Code

function cloud_zoom_admin_preset_title($preset, $operation) {
  return t('Cloud Zoom - @operation - @name', array(
    '@operation' => t($operation),
    '@name' => $preset['name'],
  ));
}