diff options
Diffstat (limited to 'views/failsafe/install/forms/template.php')
-rw-r--r-- | views/failsafe/install/forms/template.php | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/views/failsafe/install/forms/template.php b/views/failsafe/install/forms/template.php deleted file mode 100644 index a2d93f42e..000000000 --- a/views/failsafe/install/forms/template.php +++ /dev/null @@ -1,27 +0,0 @@ -<?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("installation:$type:label:$field"); - $help = elgg_echo("installation:$type:help:$field"); - $params['internalname'] = $field; - - $form_body .= '<p>'; - $form_body .= "<label>$label</label>"; - $form_body .= elgg_view("input/{$params['type']}", $params); - $form_body .= "<span class=\"install_help\">$help</span>"; - $form_body .= '</p>'; -} - -$form_body .= elgg_view('input/submit', array('value' => elgg_echo('next'))); - -echo $form_body; |