mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-13 13:11:31 +00:00
- getAllUsers() and getAllGroups() are now in LetoDMS_DMS
This commit is contained in:
parent
395504dcdb
commit
73494943d5
|
@ -80,7 +80,7 @@ function checkForm()
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
$allUsers = getAllUsers();
|
$allUsers = $dms->getAllUsers();
|
||||||
|
|
||||||
UI::contentHeading(getMLText("edit_document_access"));
|
UI::contentHeading(getMLText("edit_document_access"));
|
||||||
UI::contentContainerStart();
|
UI::contentContainerStart();
|
||||||
|
@ -210,7 +210,7 @@ foreach ($allUsers as $userObj) {
|
||||||
<select name="groupid">
|
<select name="groupid">
|
||||||
<option value="-1"><?php printMLText("select_one");?></option>
|
<option value="-1"><?php printMLText("select_one");?></option>
|
||||||
<?php
|
<?php
|
||||||
$allGroups = getAllGroups();
|
$allGroups = $dms->getAllGroups();
|
||||||
foreach ($allGroups as $groupObj) {
|
foreach ($allGroups as $groupObj) {
|
||||||
print "<option value=\"".$groupObj->getID()."\">" . $groupObj->getName() . "</option>\n";
|
print "<option value=\"".$groupObj->getID()."\">" . $groupObj->getName() . "</option>\n";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user