From: ewinslow Date: Fri, 25 Feb 2011 18:46:59 +0000 (+0000) Subject: Not all of last commit got through completely... X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=5eef9adfea09ef6c913069e8eff8c88cb8a02a04;p=lorea%2Felgg.git Not all of last commit got through completely... git-svn-id: http://code.elgg.org/elgg/trunk@8466 36083f99-b078-4883-b0ff-0f9b5a30f544 --- 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; + +?> + +