You are here

function feeds_processor_config_form_update_existing_after_build in Feeds 7.2

Form after build callback for the field "update_existing".

Adds descriptions to options of this field.

1 string reference to 'feeds_processor_config_form_update_existing_after_build'
FeedsProcessor::configForm in plugins/FeedsProcessor.inc
Returns configuration form for this object.

File

plugins/FeedsProcessor.inc, line 1519
Contains FeedsProcessor and related classes.

Code

function feeds_processor_config_form_update_existing_after_build($field) {
  $field[FEEDS_REPLACE_EXISTING]['#description'] = t('Loads records directly from the database, bypassing the Entity API. Faster, but use with caution.');
  $field[FEEDS_UPDATE_EXISTING]['#description'] = t('Loads complete @entities using the Entity API for full integration with other modules. Slower, but most reliable.', $field['#tokens']);
  return $field;
}