You are here

function finder_admin_export_form in Finder 7

Same name and namespace in other branches
  1. 6 includes/finder.admin.inc \finder_admin_export_form()

Admin finder export form.

1 string reference to 'finder_admin_export_form'
finder_admin_export in includes/finder.admin.inc
Admin finder export page.

File

includes/finder.admin.inc, line 992
The finder admin screens.

Code

function finder_admin_export_form($form, &$form_state, $code) {
  $form['export'] = array(
    '#type' => 'textarea',
    '#title' => t('Finder code'),
    '#default_value' => $code,
    '#rows' => 30,
    '#description' => t('Copy this code and then on the site you want to import to, go to the "Finder import" link on the finder admin page, and paste it in there.'),
    '#attributes' => array(
      'style' => 'width: 97%;',
    ),
  );
  return $form;
}