You are here

function feeds_importer_title in Feeds 7.2

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

Title callback.

Parameters

FeedsImporter $importer: The importer to return the page title for.

Return value

string A page title.

Related topics

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

File

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

Code

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