diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-25 18:46:59 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-25 18:46:59 +0000 |
commit | 5eef9adfea09ef6c913069e8eff8c88cb8a02a04 (patch) | |
tree | 4f05dd2f9682cc6d8489e5c3a97f7eacef4b7aeb | |
parent | 8272be76936f9913b4bb29a6ac7d052ac39c8323 (diff) | |
download | elgg-5eef9adfea09ef6c913069e8eff8c88cb8a02a04.tar.gz elgg-5eef9adfea09ef6c913069e8eff8c88cb8a02a04.tar.bz2 |
Not all of last commit got through completely...
git-svn-id: http://code.elgg.org/elgg/trunk@8466 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | views/installation/forms/install/template.php | 43 |
1 files changed, 43 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..5e44d928e --- /dev/null +++ b/views/installation/forms/install/template.php @@ -0,0 +1,43 @@ +<?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 .= '<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>'; +} + +$submit_params = array( + 'value' => elgg_echo('next'), +); +$form_body .= elgg_view('input/submit', $submit_params); + +echo $form_body; + +?> +<?php //@todo JS 1.8: no ?> +<script type="text/javascript"> + var was_submitted = false; + function elggCheckFormSubmission() { + if (was_submitted == false) { + was_submitted = true; + return true; + } + return false; + } +</script> |