xxb/module/group/view/copy.html.php
2023-10-23 15:51:36 +08:00

40 lines
1.5 KiB
PHP

<?php
/**
* The copy view of group module of XXB.
*
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd., www.zentao.net)
* @license ZOSL (https://zpl.pub/page/zoslv1.html)
* @author Xiying Guan <guanxiying@xirangit.com>
* @package group
* @version $Id: copy.html.php 4129 2013-01-18 01:58:14Z wwccss $
* @link https://xuanim.com
*/
?>
<?php include '../../common/view/header.html.php';?>
<div id='titlebar'>
<div class='heading'>
<span class='prefix' title='GROUP'><?php echo html::icon($lang->icons['group']);?></span>
<strong><?php echo $lang->group->copy;?></strong>
<small class='text-muted'> <?php echo html::icon($lang->icons['copy']);?></small>
</div>
</div>
<form class='form-condensed mw-500px pdb-20' method='post' target='hiddenwin'>
<table align='center' class='table table-form'>
<tr>
<th class='w-100px'><?php echo $lang->group->name;?></th>
<td><?php echo html::input('name', $group->name, "class='form-control'");?></td>
</tr>
<tr>
<th><?php echo $lang->group->desc;?></th>
<td><?php echo html::textarea('desc', $group->desc, "rows='5' class='form-control'");?></td>
</tr>
<tr>
<th><?php echo $lang->group->option;?></th>
<td><?php echo html::checkbox('options', $lang->group->copyOptions);?></td>
</tr>
<tr><td colspan='2' class='text-center'><?php echo html::submitButton();?></td></tr>
</table>
</form>
<?php include '../../common/view/footer.html.php';?>