diff options
Diffstat (limited to 'views/installation/forms')
-rw-r--r-- | views/installation/forms/install/template.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/views/installation/forms/install/template.php b/views/installation/forms/install/template.php new file mode 100644 index 000000000..a01914f12 --- /dev/null +++ b/views/installation/forms/install/template.php @@ -0,0 +1,30 @@ +<?php +/** + * Generic form template for install forms + * + * @uses $vars['variables'] + * @uses $vars['type'] Type of form: admin, database, settings + */ + +$variables = $vars['variables']; +$type = $vars['type']; + +$form_body = ''; +foreach ($variables as $field => $params) { + $label = elgg_echo("install:$type:label:$field"); + $help = elgg_echo("install:$type:help:$field"); + $params['name'] = $field; + + $form_body .= '<div>'; + $form_body .= "<label>$label</label>"; + $form_body .= elgg_view("input/{$params['type']}", $params); + $form_body .= "<span class=\"install-help\">$help</span>"; + $form_body .= '</div>'; +} + +$submit_params = array( + 'value' => elgg_echo('install:next'), +); +$form_body .= elgg_view('input/submit', $submit_params); + +echo $form_body; |