You are here

function feeds_importer_title in Feeds 8.2

Same name and namespace in other branches
  1. 7.2 feeds.module \feeds_importer_title()

Title callback.

Related topics

1 string reference to 'feeds_importer_title'
feeds_menu in ./feeds.module
Implements hook_menu().

File

./feeds.module, line 385
Feeds - basic API functions and hook implementations.

Code

function feeds_importer_title($id) {
  $importer = feeds_importer($id);
  return $importer->config['name'];
}