diff options
Diffstat (limited to 'mayor-orig/www/policy/private/session/groupInfo-pre.php')
-rw-r--r-- | mayor-orig/www/policy/private/session/groupInfo-pre.php | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/mayor-orig/www/policy/private/session/groupInfo-pre.php b/mayor-orig/www/policy/private/session/groupInfo-pre.php new file mode 100644 index 00000000..97864ffa --- /dev/null +++ b/mayor-orig/www/policy/private/session/groupInfo-pre.php @@ -0,0 +1,43 @@ +<?php +/* + Module: base/session +*/ + + if (_RIGHTS_OK !== true) die(); + + + $toPolicy = readVariable($_POST['toPolicy'], 'enum', + readVariable($_GET['toPolicy'], 'enum', _POLICY, $POLICIES), + $POLICIES + ); + + $groupCn = readVariable($_GET['groupCn'],'regreplace',null,array("[^a-zA-Z0-9\ \.\,_:;űáéúőóüöíŰÁÉÚŐÓÜÖÍ\-]")); + +// egyelőre csak private-ból lehet valaki admin... +// if (memberOf(_USERACCOUNT, $AUTH[_POLICY]['adminGroup'])) define('_ACCESS_AS', _ADMIN_ACCESS); + + if ( + _POLICY == 'private' && + ( + memberOf(_USERACCOUNT, $AUTH[_POLICY]['adminGroup']) || + ( + memberOf(_USERACCOUNT,'diakadmin') && + in_array('diak',$userCategories) + ) + ) + ) define('_ACCESS_AS', _ADMIN_ACCESS); + else define('_ACCESS_AS', _OTHER_ACCESS); + + list($backendAttrs,$backendAttrDef) = getBackendAttrs('Group', $toPolicy); + + if ($action == 'changeSettings') { + + changeGroupInfo($groupCn, $toPolicy); + + } + $groupInfo = getGroupInfo($groupCn, $toPolicy); // keretrendszer attribútumai + // backend attribútumai + + if ($groupInfo===false) $_SESSION['alert'][] = 'page::'; + +?> |