You are here

function feed_import_import_feed_form in Feed Import 7.2

Same name and namespace in other branches
  1. 7.3 feed_import.module \feed_import_import_feed_form()
  2. 7 feed_import.module \feed_import_import_feed_form()

Feed import form

1 string reference to 'feed_import_import_feed_form'
feed_import_menu in ./feed_import.module
Implements hook_menu().

File

./feed_import.module, line 750
User interface, cron functions for feed_import module

Code

function feed_import_import_feed_form($form, &$form_state) {
  $form['code'] = array(
    '#type' => 'textarea',
    '#title' => t('Paste your code here'),
    '#rows' => 5,
  );
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Start import'),
  );
  return $form;
}