2012-12-14 07:53:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Implementation of FolderAccess view
|
|
|
|
*
|
|
|
|
* @category DMS
|
2013-02-14 11:10:53 +00:00
|
|
|
* @package SeedDMS
|
2012-12-14 07:53:13 +00:00
|
|
|
* @license GPL 2
|
|
|
|
* @version @version@
|
|
|
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
* @copyright Copyright (C) 2002-2005 Markus Westphal,
|
|
|
|
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
|
|
|
|
* 2010-2012 Uwe Steinmann
|
|
|
|
* @version Release: @package_version@
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Include parent class
|
|
|
|
*/
|
|
|
|
require_once("class.Bootstrap.php");
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class which outputs the html page for FolderAccess view
|
|
|
|
*
|
|
|
|
* @category DMS
|
2013-02-14 11:10:53 +00:00
|
|
|
* @package SeedDMS
|
2012-12-14 07:53:13 +00:00
|
|
|
* @author Markus Westphal, Malcolm Cowe, Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
* @copyright Copyright (C) 2002-2005 Markus Westphal,
|
|
|
|
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
|
|
|
|
* 2010-2012 Uwe Steinmann
|
|
|
|
* @version Release: @package_version@
|
|
|
|
*/
|
2013-02-14 11:10:53 +00:00
|
|
|
class SeedDMS_View_FolderAccess extends SeedDMS_Bootstrap_Style {
|
2012-12-14 07:53:13 +00:00
|
|
|
function printAccessModeSelection($defMode) { /* {{{ */
|
|
|
|
print "<select name=\"mode\">\n";
|
|
|
|
print "\t<option value=\"".M_NONE."\"" . (($defMode == M_NONE) ? " selected" : "") . ">" . getMLText("access_mode_none") . "\n";
|
|
|
|
print "\t<option value=\"".M_READ."\"" . (($defMode == M_READ) ? " selected" : "") . ">" . getMLText("access_mode_read") . "\n";
|
|
|
|
print "\t<option value=\"".M_READWRITE."\"" . (($defMode == M_READWRITE) ? " selected" : "") . ">" . getMLText("access_mode_readwrite") . "\n";
|
|
|
|
print "\t<option value=\"".M_ALL."\"" . (($defMode == M_ALL) ? " selected" : "") . ">" . getMLText("access_mode_all") . "\n";
|
|
|
|
print "</select>\n";
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
function show() { /* {{{ */
|
|
|
|
$dms = $this->params['dms'];
|
|
|
|
$user = $this->params['user'];
|
|
|
|
$folder = $this->params['folder'];
|
|
|
|
$allUsers = $this->params['allusers'];
|
|
|
|
$allGroups = $this->params['allgroups'];
|
|
|
|
$rootfolderid = $this->params['rootfolderid'];
|
|
|
|
|
|
|
|
$this->htmlStartPage(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName()))));
|
|
|
|
$this->globalNavigation($folder);
|
|
|
|
$this->contentStart();
|
|
|
|
$this->pageNavigation($this->getFolderPathHTML($folder, true), "view_folder", $folder);
|
|
|
|
?>
|
|
|
|
|
|
|
|
<script language="JavaScript">
|
|
|
|
function checkForm()
|
|
|
|
{
|
2013-05-23 14:07:00 +00:00
|
|
|
msg = new Array()
|
2012-12-14 07:53:13 +00:00
|
|
|
if ((document.form1.userid.options[document.form1.userid.selectedIndex].value == -1) &&
|
|
|
|
(document.form1.groupid.options[document.form1.groupid.selectedIndex].value == -1))
|
2013-05-23 14:07:00 +00:00
|
|
|
msg.push("<?php printMLText("js_select_user_or_group");?>");
|
|
|
|
if (msg != "") {
|
|
|
|
noty({
|
|
|
|
text: msg.join('<br />'),
|
|
|
|
type: 'error',
|
|
|
|
dismissQueue: true,
|
|
|
|
layout: 'topRight',
|
|
|
|
theme: 'defaultTheme',
|
|
|
|
_timeout: 1500,
|
|
|
|
});
|
2012-12-14 07:53:13 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
$this->contentHeading(getMLText("edit_folder_access"));
|
|
|
|
$this->contentContainerStart();
|
|
|
|
|
|
|
|
if ($user->isAdmin()) {
|
|
|
|
|
|
|
|
$this->contentSubHeading(getMLText("set_owner"));
|
|
|
|
?>
|
|
|
|
<form class="form-inline" action="../op/op.FolderAccess.php">
|
|
|
|
<?php echo createHiddenFieldWithKey('folderaccess'); ?>
|
|
|
|
<input type="Hidden" name="action" value="setowner">
|
|
|
|
<input type="Hidden" name="folderid" value="<?php print $folder->getID();?>">
|
|
|
|
<select name="ownerid">
|
|
|
|
<?php
|
|
|
|
$owner = $folder->getOwner();
|
|
|
|
foreach ($allUsers as $currUser) {
|
|
|
|
if ($currUser->isGuest())
|
|
|
|
continue;
|
|
|
|
print "<option value=\"".$currUser->getID()."\"";
|
|
|
|
if ($currUser->getID() == $owner->getID())
|
|
|
|
print " selected";
|
|
|
|
print ">" . htmlspecialchars($currUser->getLogin() . " - " . $currUser->getFullname()) . "</option>\n";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
2013-04-19 12:57:01 +00:00
|
|
|
<button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save")?></button>
|
2012-12-14 07:53:13 +00:00
|
|
|
</form>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($folder->getID() != $rootfolderid && $folder->getParent()){
|
|
|
|
|
|
|
|
$this->contentSubHeading(getMLText("access_inheritance"));
|
|
|
|
|
|
|
|
if ($folder->inheritsAccess()) {
|
|
|
|
printMLText("inherits_access_msg");
|
|
|
|
?>
|
|
|
|
<p>
|
|
|
|
<form class="form-inline" action="../op/op.FolderAccess.php">
|
|
|
|
<?php echo createHiddenFieldWithKey('folderaccess'); ?>
|
|
|
|
<input type="hidden" name="folderid" value="<?php print $folder->getID();?>">
|
|
|
|
<input type="hidden" name="action" value="notinherit">
|
|
|
|
<input type="hidden" name="mode" value="copy">
|
|
|
|
<input type="submit" class="btn" value="<?php printMLText("inherits_access_copy_msg")?>">
|
|
|
|
</form>
|
|
|
|
<form action="../op/op.FolderAccess.php" style="display: inline-block;">
|
|
|
|
<?php echo createHiddenFieldWithKey('folderaccess'); ?>
|
|
|
|
<input type="hidden" name="folderid" value="<?php print $folder->getID();?>">
|
|
|
|
<input type="hidden" name="action" value="notinherit">
|
|
|
|
<input type="hidden" name="mode" value="empty">
|
|
|
|
<input type="submit" class="btn" value="<?php printMLText("inherits_access_empty_msg")?>">
|
|
|
|
</form>
|
|
|
|
</p>
|
|
|
|
<?php
|
|
|
|
$this->contentContainerEnd();
|
|
|
|
$this->htmlEndPage();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<form action="../op/op.FolderAccess.php">
|
|
|
|
<?php echo createHiddenFieldWithKey('folderaccess'); ?>
|
|
|
|
<input type="hidden" name="folderid" value="<?php print $folder->getID();?>">
|
|
|
|
<input type="hidden" name="action" value="inherit">
|
|
|
|
<input type="submit" class="btn" value="<?php printMLText("does_not_inherit_access_msg")?>">
|
|
|
|
</form>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
|
|
|
$accessList = $folder->getAccessList();
|
|
|
|
|
|
|
|
$this->contentSubHeading(getMLText("default_access"));
|
|
|
|
?>
|
|
|
|
<form class="form-inline" action="../op/op.FolderAccess.php">
|
|
|
|
<?php echo createHiddenFieldWithKey('folderaccess'); ?>
|
|
|
|
<input type="Hidden" name="folderid" value="<?php print $folder->getID();?>">
|
|
|
|
<input type="Hidden" name="action" value="setdefault">
|
|
|
|
<?php $this->printAccessModeSelection($folder->getDefaultAccess()); ?>
|
2013-04-19 12:57:01 +00:00
|
|
|
<button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save")?></button>
|
2012-12-14 07:53:13 +00:00
|
|
|
</form>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
$this->contentSubHeading(getMLText("edit_existing_access"));
|
|
|
|
|
|
|
|
if ((count($accessList["users"]) != 0) || (count($accessList["groups"]) != 0)) {
|
|
|
|
|
|
|
|
print "<table class=\"table-condensed\">";
|
|
|
|
|
|
|
|
foreach ($accessList["users"] as $userAccess) {
|
|
|
|
$userObj = $userAccess->getUser();
|
|
|
|
print "<tr>\n";
|
2013-05-22 20:47:33 +00:00
|
|
|
print "<td><i class=\"icon-user\"></i></td>\n";
|
2012-12-14 07:53:13 +00:00
|
|
|
print "<td>". htmlspecialchars($userObj->getFullName()) . "</td>\n";
|
|
|
|
print "<form action=\"../op/op.FolderAccess.php\">\n";
|
|
|
|
echo createHiddenFieldWithKey('folderaccess')."\n";
|
|
|
|
print "<input type=\"Hidden\" name=\"folderid\" value=\"".$folder->getID()."\">\n";
|
|
|
|
print "<input type=\"Hidden\" name=\"action\" value=\"editaccess\">\n";
|
|
|
|
print "<input type=\"Hidden\" name=\"userid\" value=\"".$userObj->getID()."\">\n";
|
|
|
|
print "<td>\n";
|
|
|
|
$this->printAccessModeSelection($userAccess->getMode());
|
|
|
|
print "</td>\n";
|
|
|
|
print "<td>\n";
|
2013-04-19 12:57:01 +00:00
|
|
|
print "<button type=\"submit\" class=\"btn btn-mini\"><i class=\"icon-save\"></i> ".getMLText("save")."</button>";
|
2012-12-14 07:53:13 +00:00
|
|
|
print "</td>\n";
|
|
|
|
print "</form>\n";
|
|
|
|
print "<form action=\"../op/op.FolderAccess.php\">\n";
|
|
|
|
echo createHiddenFieldWithKey('folderaccess')."\n";
|
|
|
|
print "<input type=\"Hidden\" name=\"folderid\" value=\"".$folder->getID()."\">\n";
|
|
|
|
print "<input type=\"Hidden\" name=\"action\" value=\"delaccess\">\n";
|
|
|
|
print "<input type=\"Hidden\" name=\"userid\" value=\"".$userObj->getID()."\">\n";
|
|
|
|
print "<td>\n";
|
2013-01-24 09:18:17 +00:00
|
|
|
print "<button type=\"submit\" class=\"btn btn-mini\"><i class=\"icon-remove\"></i> ".getMLText("delete")."</button>";
|
2012-12-14 07:53:13 +00:00
|
|
|
print "</td>\n";
|
|
|
|
print "</form>\n";
|
|
|
|
print "</tr>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($accessList["groups"] as $groupAccess) {
|
|
|
|
$groupObj = $groupAccess->getGroup();
|
|
|
|
$mode = $groupAccess->getMode();
|
|
|
|
print "<tr>";
|
2013-05-22 20:47:33 +00:00
|
|
|
print "<td><i class=\"icon-group\"></i></td>";
|
2012-12-14 07:53:13 +00:00
|
|
|
print "<td>". htmlspecialchars($groupObj->getName()) . "</td>";
|
|
|
|
print "<form action=\"../op/op.FolderAccess.php\">";
|
|
|
|
echo createHiddenFieldWithKey('folderaccess')."\n";
|
|
|
|
print "<input type=\"Hidden\" name=\"folderid\" value=\"".$folder->getID()."\">";
|
|
|
|
print "<input type=\"Hidden\" name=\"action\" value=\"editaccess\">";
|
|
|
|
print "<input type=\"Hidden\" name=\"groupid\" value=\"".$groupObj->getID()."\">";
|
|
|
|
print "<td>";
|
|
|
|
$this->printAccessModeSelection($groupAccess->getMode());
|
|
|
|
print "</td>\n";
|
|
|
|
print "<td><span class=\"actions\">\n";
|
2013-04-19 12:57:01 +00:00
|
|
|
print "<button type=\"submit\" class=\"btn btn-mini\"><i class=\"icon-save\"></i> ".getMLText("save")."</button>";
|
2012-12-14 07:53:13 +00:00
|
|
|
print "</span></td>\n";
|
|
|
|
print "</form>";
|
|
|
|
print "<form action=\"../op/op.FolderAccess.php\">\n";
|
|
|
|
echo createHiddenFieldWithKey('folderaccess')."\n";
|
|
|
|
print "<input type=\"Hidden\" name=\"folderid\" value=\"".$folder->getID()."\">\n";
|
|
|
|
print "<input type=\"Hidden\" name=\"action\" value=\"delaccess\">\n";
|
|
|
|
print "<input type=\"Hidden\" name=\"groupid\" value=\"".$groupObj->getID()."\">\n";
|
2013-01-24 09:18:17 +00:00
|
|
|
print "<td>";
|
|
|
|
print "<button type=\"submit\" class=\"btn btn-mini\"><i class=\"icon-remove\"></i> ".getMLText("delete")."</button>";
|
|
|
|
print "</td>\n";
|
2012-12-14 07:53:13 +00:00
|
|
|
print "</form>";
|
|
|
|
print "</tr>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "</table><br>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<form action="../op/op.FolderAccess.php" name="form1" onsubmit="return checkForm();">
|
|
|
|
<?php echo createHiddenFieldWithKey('folderaccess'); ?>
|
|
|
|
<input type="Hidden" name="folderid" value="<?php print $folder->getID()?>">
|
|
|
|
<input type="Hidden" name="action" value="addaccess">
|
|
|
|
<table class="table-condensed">
|
|
|
|
<tr>
|
|
|
|
<td><?php printMLText("user");?>:</td>
|
|
|
|
<td>
|
|
|
|
<select name="userid">
|
|
|
|
<option value="-1"><?php printMLText("select_one");?>
|
|
|
|
<?php
|
|
|
|
foreach ($allUsers as $userObj) {
|
|
|
|
if ($userObj->isGuest()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
print "<option value=\"".$userObj->getID()."\">" . htmlspecialchars($userObj->getLogin() . " - " . $userObj->getFullName()) . "</option>\n";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="inputDescription"><?php printMLText("group");?>:</td>
|
|
|
|
<td>
|
|
|
|
<select name="groupid">
|
|
|
|
<option value="-1"><?php printMLText("select_one");?>
|
|
|
|
<?php
|
|
|
|
foreach ($allGroups as $groupObj) {
|
|
|
|
print "<option value=\"".$groupObj->getID()."\">" . htmlspecialchars($groupObj->getName()) . "\n";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="inputDescription"><?php printMLText("access_mode");?>:</td>
|
|
|
|
<td>
|
|
|
|
<?php
|
|
|
|
$this->printAccessModeSelection(M_READ);
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td></td>
|
|
|
|
<td><input type="submit" class="btn" value="<?php printMLText("add");?>"></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
$this->contentContainerEnd();
|
|
|
|
$this->htmlEndPage();
|
|
|
|
} /* }}} */
|
|
|
|
}
|
|
|
|
?>
|