You are here

function _taxonomy_feeds_form_callback_options in Feeds 7.2

Same name and namespace in other branches
  1. 8.2 mappers/taxonomy.inc \_taxonomy_feeds_form_callback_options()

Returns the list of available term search methods.

Return value

array An array of taxonomy search option titles.

2 calls to _taxonomy_feeds_form_callback_options()
taxonomy_feeds_form_callback in mappers/taxonomy.inc
Settings form callback.
taxonomy_feeds_summary_callback in mappers/taxonomy.inc
Mapping configuration summary for taxonomy.module.

File

mappers/taxonomy.inc, line 321
On behalf implementation of Feeds mapping API for taxonomy.module.

Code

function _taxonomy_feeds_form_callback_options() {
  return array(
    FEEDS_TAXONOMY_SEARCH_TERM_NAME => 'Term name',
    FEEDS_TAXONOMY_SEARCH_TERM_ID => 'Term ID',
    FEEDS_TAXONOMY_SEARCH_TERM_GUID => 'GUID',
  );
}