You are here

function feeds_tamper_sprintf_form in Feeds Tamper 7

1 string reference to 'feeds_tamper_sprintf_form'
sprintf.inc in plugins/sprintf.inc

File

plugins/sprintf.inc, line 16

Code

function feeds_tamper_sprintf_form($importer, $element_key, $settings) {
  $form = array();
  $form['format'] = array(
    '#type' => 'textfield',
    '#title' => t('Format'),
    '#default_value' => isset($settings['format']) ? $settings['format'] : '%s',
    '#size' => 60,
    '#maxlength' => 128,
    '#required' => FALSE,
    '#description' => t('See the <a href="http://www.php.net/manual/en/function.sprintf.php">sprintf</a> documentation for more details.'),
  );
  return $form;
}