+ add the feature of priv setting.

This commit is contained in:
wangchunsheng
2010-03-29 07:14:08 +00:00
parent 507b02e77e
commit db16ec554e
6 changed files with 116 additions and 13 deletions
+13
View File
@@ -60,6 +60,19 @@
<?php foreach($products as $productID => $productName) echo html::a($this->createLink('product', 'browse', "productID=$productID"), $productName) . '<br />';?>
</td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->project->acl;?></th>
<td><?php echo $lang->project->aclList[$project->acl];?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->project->whitelist;?></th>
<td>
<?php
$whitelist = explode(',', $project->whitelist);
foreach($whitelist as $groupID) if(isset($groups[$groupID])) echo $groups[$groupID] . '&nbsp;';
?>
</td>
</tr>
<tr>
<td colspan='2' class='a-center'>
<?php