aboutsummaryrefslogtreecommitdiffstats
path: root/mayor-orig/www/include/share/session/attrs.php
diff options
context:
space:
mode:
authorM.Gergo2019-03-08 21:20:34 +0100
committerM.Gergo2019-03-08 21:20:34 +0100
commitf51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0 (patch)
treee13e60e4b94a3b58f1e2bfbe271102c8f04b67bd /mayor-orig/www/include/share/session/attrs.php
parentc76a004b0135786f2742283f8d5f917106f58bd8 (diff)
downloadmayor-f51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0.tar.gz
mayor-f51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0.zip
további rendrakás
Diffstat (limited to 'mayor-orig/www/include/share/session/attrs.php')
-rw-r--r--mayor-orig/www/include/share/session/attrs.php63
1 files changed, 0 insertions, 63 deletions
diff --git a/mayor-orig/www/include/share/session/attrs.php b/mayor-orig/www/include/share/session/attrs.php
deleted file mode 100644
index c7ebafb7..00000000
--- a/mayor-orig/www/include/share/session/attrs.php
+++ /dev/null
@@ -1,63 +0,0 @@
-<?php
-/*
- Module: useradmin
-
- Minden auth-típus esetén lekérdezhető kell legyen az alábbi néhány attribútum.
- Az egyes backend-ek esetén ezek kiegészülhetnek további attribútumokkal.
-
- Az attribútumokhoz tartozik egy adott nyelvű elnevezés (desc) és egy típus (type),
- ami alapján megjelenítjük, beolvassuk, módosítjuk, stb...
-
- Esetleg ez a tömb használható arra is, hogy az egyes attribútumok hozzáférési jogosultságait
- később megadjuk... (lásd LDAP backend)
-
-*/
-
-// global $attrDescription, $attrView, $unicodeAttrs, $timestampAttrs, $memberTypes;
-
- $accountAttrs = array(
-// -- kötelező --
- 'userAccount',
- 'userCn',
- 'userPassword',
-// -- lekérdezhető, opcionális --
- 'uidNumber',
- 'mail',
- 'telephoneNumber',
- 'studyId',
- 'shadowLastChange',
- 'shadowMin',
- 'shadowMax',
- 'shadowWarning',
- 'shadowInactive',
- 'shadowExpire'
- );
-
- $groupAttrs = array(
- 'groupCn',
- 'groupDesc',
- 'member',
- );
-
- $attrDef = array(
- 'userAccount' => array('desc' => _ATTR_USERACCOUNT, 'type' => 'text'),
- 'userCn' => array('desc' => _ATTR_USERCN, 'type' => 'text'),
- 'userPassword' => array('desc' => _ATTR_USERPASSWORD, 'type' => 'text'),
- 'uidNumber' => array('desc' => _ATTR_UIDNUMBER, 'type' => 'text'),
- 'mail' => array('desc' => _ATTR_MAIL, 'type' => 'text'),
- 'telephoneNumber' => array('desc' => _ATTR_TELEPHONENUMBER, 'type' => 'text'),
- 'studyId' => array('desc' => _ATTR_STUDYID, 'type' => 'text'),
- 'shadowLastChange' => array('desc' => _ATTR_SHADOWLASTCHANGE, 'type' => 'text'),
- 'shadowMin' => array('desc' => _ATTR_SHADOWMIN, 'type' => 'text'),
- 'shadowMax' => array('desc' => _ATTR_SHADOWMAX, 'type' => 'text'),
- 'shadowWarning' => array('desc' => _ATTR_SHADOWWARNING, 'type' => 'text'),
- 'shadowInactive' => array('desc' => _ATTR_SHADOWINACTIVE, 'type' => 'text'),
- 'shadowExpire' => array('desc' => _ATTR_SHADOWEXPIRE, 'type' => 'text'),
- 'groupCn' => array('desc' => _ATTR_GROUPCN, 'type' => 'text'),
- 'groupDesc' => array('desc' => _ATTR_GROUPDESC, 'type' => 'text'),
- 'member' => array('desc' => _ATTR_MEMBER, 'type' => 'select'),
- );
-
-
-
-?>