zentaopms/module/gitlab/view/editgroup.html.php
2023-05-16 10:47:08 +08:00

86 lines
4.2 KiB
PHP

<?php
/**
* The create view file of gitlab module of ZenTaoPMS.
*
* @copyright Copyright 2009-2017 禅道软件(青岛)有限公司(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 Gang Liu <liugang@cnezsoft.com>
* @package gitlab
* @version $Id$
* @link http://www.zentao.net
*/
?>
<?php include '../../common/view/header.html.php';?>
<?php $publicTip = "<span id='publicTip' class='text-danger'>" . $lang->gitlab->group->publicTip . '</span>';?>
<?php js::set('publicTip', $publicTip);?>
<?php js::set('visibility', $group->visibility);?>
<div id='mainContent' class='main-row'>
<div class='main-col main-content'>
<div class='center-block'>
<div class='main-header'>
<h2><?php echo $lang->gitlab->group->edit;?></h2>
</div>
<form id='gitlabForm' method='post' class='form-ajax' enctype="multipart/form-data">
<?php echo html::hidden('id', $group->id);?>
<table class='table table-form'>
<tr>
<th><?php echo $lang->gitlab->group->name;?></th>
<td class='required'><?php echo html::input('name', $group->name, "class='form-control' placeholder='{$lang->gitlab->group->name}'");?></td>
<td class="tips-git"></td>
</tr>
<tr>
<th><?php echo $lang->gitlab->group->path;?></th>
<td>
<div class='input-group'>
<span class='input-group-addon'><?php echo $gitlab->url . '/';?></span>
<span><?php echo html::input('path', $group->path, "readonly class='form-control' placeholder='{$lang->gitlab->group->path}'");?></span>
</div>
<div class="alert alert-warning hidden"><?php echo $lang->gitlab->group->pathTip;?></div>
</td>
<td class="tips-git"></td>
</tr>
<tr>
<th><?php echo $lang->gitlab->group->description;?></th>
<td><?php echo html::textarea('description', $group->description, "rows='4' class='form-control' placeholder='{$lang->gitlab->group->description}'");?></td>
</tr>
<tr>
<th><?php echo $lang->gitlab->group->visibility;?></th>
<td colspan='2'><?php echo nl2br(html::radio('visibility', $lang->gitlab->group->visibilityList, $group->visibility, "", 'block'));?></td>
</tr>
<tr>
<th></th>
<td>
<div class="checkbox-primary">
<input type="checkbox" name='request_access_enabled' id="requestAccessEnabled" value='1' <?php if($group->request_access_enabled) echo 'checked';?> /><label for="external" class="no-margin"><?php echo $lang->gitlab->group->requestAccessEnabledTip; ?></label>
</div>
</td>
</tr>
<tr>
<th><?php echo $lang->gitlab->group->lfsEnabled;?></th>
<td colspan='2'>
<div class="checkbox-primary">
<input type="checkbox" name='lfs_enabled' id="lfsEnabled" value='1' <?php if($group->lfs_enabled) echo 'checked';?> /><label for="external" class="no-margin"><?php echo $lang->gitlab->group->lfsEnabledTip; ?></label>
</div>
</td>
</tr>
<tr>
<th><?php echo $lang->gitlab->group->projectCreationLevel;?></th>
<td><?php echo html::select('project_creation_level', $lang->gitlab->group->projectCreationLevelList, $group->project_creation_level, "class='form-control'");?></td>
</tr>
<tr>
<th><?php echo $lang->gitlab->group->subgroupCreationLevel;?></th>
<td><?php echo html::select('subgroup_creation_level', $lang->gitlab->group->subgroupCreationLevelList, $group->subgroup_creation_level, "class='form-control'");?></td>
</tr>
<tr>
<td colspan="2" class='text-center form-actions'>
<?php echo html::submitButton();?>
<?php if(!isonlybody()) echo html::a(inlink('browseGroup', "gitlabID=$gitlabID"), $lang->goback, '', 'class="btn btn-wide"');?>
</td>
</tr>
</table>
</form>
</div>
</div>
</div>
<?php include '../../common/view/footer.html.php';?>