You are here

function feeds_tamper_timetodate_validate in Feeds Tamper 6

Same name and namespace in other branches
  1. 7 plugins/timetodate.inc \feeds_tamper_timetodate_validate()
1 string reference to 'feeds_tamper_timetodate_validate'
timetodate.inc in plugins/timetodate.inc

File

plugins/timetodate.inc, line 28

Code

function feeds_tamper_timetodate_validate(&$settings) {
  if (empty($settings['date_format'])) {
    form_set_error('settings][date_format', t('Please enter a valid date format string.'));
  }
}