Просмотр файла esoTalk-1.0.0g4/core/views/settings/general.php

Размер файла: 964B
<?php
// Copyright 2011 Toby Zerner, Simon Zerner
// This file is part of esoTalk. Please see the included license file for usage information.

if (!defined("IN_ESOTALK")) exit;

/**
 * Displays the general settings form. Since all sections/fields are defined in the controller's form, all we
 * do here is output them one-by-one.
 *
 * @package esoTalk
 */

$form = $data["form"];
?>
<div id='settings-general'>

<?php echo $form->open(); ?>

<ul class='form'>

<?php
// Loop through the form sections (eg. "avatar", "notifications").
foreach ($form->getSections() as $k => $v): ?>

<li><label><?php echo $v; ?></label> <div class='fieldGroup'>
<?php
// Loop through each of the fields in this section and output it.
foreach ($form->getFieldsInSection($k) as $field): ?>

<?php echo $field; ?>

<?php endforeach; ?>
</div></li>

<li class='sep'></li>
<?php endforeach; ?>

<li><?php echo $form->saveButton(); ?></li>

</ul>

<?php echo $form->close(); ?>

</div>