32 lines
1.2 KiB
PHP
32 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* The html template file of SetPRJModule method of program module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Yidong Wang <yidong@cnezsoft.com>
|
|
* @package program
|
|
* @version $Id: index.html.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.lite.html.php';?>
|
|
<div class="modal-header">
|
|
<h4 class="modal-title"><i class="icon-cog"></i><?php echo $lang->program->PRJModuleSetting;?></h4>
|
|
</div>
|
|
<div class="modal-body" style="max-height: 564px; overflow: visible;">
|
|
<form class="form-condensed" method="post" target="hiddenwin">
|
|
<table class="table table-form">
|
|
<tbody>
|
|
<tr>
|
|
<td class="w-150px"><?php echo $lang->program->PRJModuleOpen;?></td>
|
|
<td><?php echo html::radio('PRJModuleStatus', $lang->program->PRJModuleStatus, $status);?></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" class="text-center"><?php echo html::submitButton();?></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|