SAAS-945: Language + Timezone Setup Popup

This commit is contained in:
drigato 2015-07-27 07:06:22 -04:00
parent ce7765a8cb
commit ee2bfe7664
8 changed files with 164 additions and 3 deletions

View file

@ -0,0 +1,13 @@
<div id="lang-timezone-popup" class="dialogPopup register-dialog" title="<?php echo _("Setup Station Language and Timezone") ?>" style="display: none;">
<form id="lang-timezone-form">
<fieldset>
<dl class="zend_form">
<?php echo $this->element->getElement('csrf') ?>
<?php echo $this->element->getElement('setup_language')->render(); ?>
<?php echo $this->element->getElement('setup_timezone')->render(); ?>
</dl>
</fieldset>
</form>
</div>

View file

@ -21,4 +21,8 @@
</div>
<?php echo $this->dialog ?>
<?php
// TODO: can we remove this???
//echo $this->dialog ?>
<?php echo $this->lang_tz_popup_form; ?>