- Added support for updated driver configuration - Added revision control database schema (258fed034e
) - Added option "callhistory_answered_elsewhere" - save point in phone directory for pickup calls. (bug fix by dkgroot0291207d82
) - Bug fix options (TFTP SERVER remapping support) - And traditionally added new bugs. - И для тех кто хочет помочь проекту добавлены свежие баги. Я их еще не нашел, а вы ?
53 lines
2.2 KiB
PHP
53 lines
2.2 KiB
PHP
<?php
|
||
/*
|
||
* To change this license header, choose License Headers in Project Properties.
|
||
* To change this template file, choose Tools | Templates
|
||
* and open the template in the editor.
|
||
*/
|
||
// vim: set ai ts=4 sw=4 ft=phtml:
|
||
|
||
?>
|
||
|
||
<form autocomplete="off" name="frm_general" id="frm_general" class="fpbx-submit" action="" method="post">
|
||
<input type="hidden" name="category" value="generalform">
|
||
<input type="hidden" name="Submit" value="Submit">
|
||
<!-- div id="toolbar-all">
|
||
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" onclick="load_oncliсk(this,'*new*')" data-target=".new_network"><i class="fa fa-bolt"></i> <?php echo _("Add Keyset"); ?></button>
|
||
</div -->
|
||
<?php
|
||
echo $this->ShowGroup('sccp_general',1);
|
||
echo $this->ShowGroup('sccp_dev_time_s',1);
|
||
echo $this->ShowGroup('sccp_net',1);
|
||
echo $this->ShowGroup('sccp_lang',1);
|
||
echo $this->ShowGroup('sccp_qos_config',1);
|
||
echo $this->ShowGroup('sccp_extpath_config',1);
|
||
|
||
?>
|
||
|
||
</form>
|
||
|
||
<!-- Begin Form Input New / Edit -->
|
||
<div class="modal fade new_network" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel_Net">
|
||
<div class="modal-dialog modal-lg" role="document">
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||
<h4 class="modal-title" id="gridSystemModalLabel_Net">Add New Network</h4>
|
||
</div>
|
||
<div class="modal-body">
|
||
<ul class="nav nav-tabs" role="tablist">
|
||
<?php
|
||
// echo $this->ShowGroup('add_network_1',0);
|
||
?>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="modal-footer">
|
||
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
||
<button type="button" class="btn btn-primary sccp_update" data-id="network_add" data-mode="new" id="network_add" data-dismiss="modal">Save</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|