blob: d860096cf91456ed6cce2b996211264a6242177f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/**
* Admin account form
*
* @uses $vars['variables'] Array of form variables. See ElggInstaller.
*
* @todo Forms 1.8: Convert to use elgg_view_form
*/
$vars['type'] = 'admin';
$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);
|