aboutsummaryrefslogtreecommitdiff
path: root/views/installation/install/forms/database.php
blob: 02e3816ee15a79b2bfc3728b58aeee70b80fba37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * Database form
 *
 * @uses $vars['variables'] Array of form variables. See ElggInstaller.
 * 
 * @todo Forms 1.8: Convert to use elgg_view_form
 */

$vars['type'] = 'database';
$form_body = elgg_view('install/forms/template', $vars);

$url = current_page_url();

$params = array(
	'body' => $form_body,
	'action' => $url,
	'disable_security' => TRUE,
	'js' => 'onsubmit="return elggCheckFormSubmission()"',
);
echo elgg_view('input/form', $params);