You are here

function feeds_tamper_strtotime_form in Feeds Tamper 7

Same name and namespace in other branches
  1. 6 plugins/strtotime.inc \feeds_tamper_strtotime_form()
1 string reference to 'feeds_tamper_strtotime_form'
strtotime.inc in plugins/strtotime.inc

File

plugins/strtotime.inc, line 16

Code

function feeds_tamper_strtotime_form($importer, $element_key, $settings) {
  $form = array();
  $form['html'] = array(
    '#markup' => t('This will take a string containing an English date format and convert it into a Unix Timestamp.'),
  );
  return $form;
}