function finder_admin_export_form in Finder 6
Same name and namespace in other branches
- 7 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 1013 - The finder admin screens.
Code
function finder_admin_export_form($form_state, $code) {
$form = array();
$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;
}