You are here

function feeds_tamper_ui_add_title in Feeds Tamper 7

Same name and namespace in other branches
  1. 6 feeds_tamper_ui/feeds_tamper_ui.module \feeds_tamper_ui_add_title()

Add plugin title callback.

1 string reference to 'feeds_tamper_ui_add_title'
feeds_tamper_ui_menu in feeds_tamper_ui/feeds_tamper_ui.module
Implements hook_menu().

File

feeds_tamper_ui/feeds_tamper_ui.module, line 98
Feeds Tamper UI - Defines the user interface for Feeds Tamper.

Code

function feeds_tamper_ui_add_title($source) {

  // Title callbacks get check_plain'ed already.
  return t('Add plugin to: !source', array(
    '!source' => $source,
  ));
}