52 lines
2.0 KiB
PHP
52 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* The menu view of custom module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
|
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
* @author Hao Sun <sunhao@cnezsoft.com>
|
|
* @package user
|
|
* @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<div id='mainContent' class='space'>
|
|
<div class='center-block'>
|
|
<div class='main-header'>
|
|
<h2>
|
|
<?php echo $lang->customMenu;?>
|
|
<i class='icon icon-spin icon-spinner' id='loadingIcon'></i>
|
|
</h2>
|
|
</div>
|
|
<div id='menuEditor'>
|
|
<div class='panel panel-default'>
|
|
<nav id='navbar' class='bg-primary'>
|
|
<ul class='nav nav-default'></ul>
|
|
</nav>
|
|
<nav id='subNavbar'>
|
|
<ul class='nav nav-default'></ul>
|
|
</nav>
|
|
<nav id='mainMenu'>
|
|
<ul class='nav nav-default'></ul>
|
|
</nav>
|
|
</div>
|
|
<div class='text-left'>
|
|
<?php if(common::hasPriv('custom', 'setPublic')):?>
|
|
<div class='space-sm'>
|
|
<?php echo html::checkbox('setPublic', array(1 => $lang->custom->setPublic));?>
|
|
</div>
|
|
<?php endif;?>
|
|
<button id='saveMenuBtn' type='button' class='btn btn-primary btn-wide'><?php echo $lang->save ?></button>
|
|
<button id='closeModalBtn' type='button' class='btn btn-wide'><?php echo $lang->close ?></button>
|
|
<button id='resetMenuBtn' type='button' class='btn btn-wide'><?php echo $lang->custom->restore ?></button>
|
|
<span class='text-danger'> <i class="icon icon-exclamation-sign"></i> <?php echo $lang->custom->menuTip ?></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
window.startMenu = {'module': '<?php echo $module ?>', 'method': '<?php echo $method ?>'};
|
|
</script>
|
|
<?php include '../../common/view/footer.html.php';?>
|