* finish task #6033.

This commit is contained in:
wangyidong
2019-07-05 11:09:08 +08:00
parent 9910fa461c
commit d9b43a8c5e
5 changed files with 7 additions and 7 deletions

View File

@@ -188,7 +188,7 @@ $lang->doc->placeholder->url = 'URL';
$lang->doclib = new stdclass();
$lang->doclib->name = 'Name';
$lang->doclib->control = 'ACL';
$lang->doclib->control = 'Access Control';
$lang->doclib->group = 'Group';
$lang->doclib->user = 'User';
$lang->doclib->files = 'Attachments';

View File

@@ -37,7 +37,7 @@
<table class='table table-form'>
<tbody>
<tr>
<th><?php echo $lang->doc->lib;?></th>
<th class='w-110px'><?php echo $lang->doc->lib;?></th>
<td> <?php echo html::select('lib', $libs, $libID, "class='form-control chosen' onchange=loadDocModule(this.value)");?> </td><td></td>
</tr>
<tr>

View File

@@ -22,7 +22,7 @@
<form method='post' target='hiddenwin' >
<table class='table table-form'>
<tr>
<th class='w-80px'><?php echo $lang->doc->libType?></th>
<th class='w-110px'><?php echo $lang->doc->libType?></th>
<td><?php echo html::radio('type', $libTypeList, $type ? $type : 'product')?></td>
</tr>
<tr class='product'>

View File

@@ -26,7 +26,7 @@
<form class='load-indicator main-form form-ajax' method='post' enctype='multipart/form-data' id='dataform'>
<table class='table table-form'>
<tr>
<th><?php echo $lang->doc->lib;?></th>
<th class='w-110px'><?php echo $lang->doc->lib;?></th>
<td> <?php echo html::select('lib', $libs, $doc->lib, "class='form-control chosen' onchange=loadDocModule(this.value)");?> </td><td></td>
</tr>
<tr>

View File

@@ -24,18 +24,18 @@
<table class='table table-form'>
<?php if(!empty($lib->product)):?>
<tr>
<th><?php echo $lang->doc->product?></th>
<th class='w-130px'><?php echo $lang->doc->product?></th>
<td><?php echo $product->name?></td>
</tr>
<?php endif;?>
<?php if(!empty($lib->project)):?>
<tr>
<th><?php echo $lang->doc->project?></th>
<th class='w-130px'><?php echo $lang->doc->project?></th>
<td><?php echo $project->name?></td>
</tr>
<?php endif;?>
<tr>
<th class='w-80px'><?php echo $lang->doc->libName?></th>
<th class='w-130px'><?php echo $lang->doc->libName?></th>
<td>
<?php echo html::input('name', $lib->name, "class='form-control'");?>
<span class='hidden'><?php echo html::radio('type', $lang->doc->libTypeList, $lib->type);?></span>