From 5eef9adfea09ef6c913069e8eff8c88cb8a02a04 Mon Sep 17 00:00:00 2001 From: ewinslow Date: Fri, 25 Feb 2011 18:46:59 +0000 Subject: Not all of last commit got through completely... git-svn-id: http://code.elgg.org/elgg/trunk@8466 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/installation/forms/install/template.php | 43 +++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 views/installation/forms/install/template.php (limited to 'views/installation/forms') diff --git a/views/installation/forms/install/template.php b/views/installation/forms/install/template.php new file mode 100644 index 000000000..5e44d928e --- /dev/null +++ b/views/installation/forms/install/template.php @@ -0,0 +1,43 @@ + $params) { + $label = elgg_echo("install:$type:label:$field"); + $help = elgg_echo("install:$type:help:$field"); + $params['name'] = $field; + + $form_body .= '

'; + $form_body .= ""; + $form_body .= elgg_view("input/{$params['type']}", $params); + $form_body .= "$help"; + $form_body .= '

'; +} + +$submit_params = array( + 'value' => elgg_echo('next'), +); +$form_body .= elgg_view('input/submit', $submit_params); + +echo $form_body; + +?> + + -- cgit v1.2.3