1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
|
<html>
<head>
<title>Package modules Element Index</title>
<link rel="stylesheet" type="text/css" href="media/style.css">
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0" height="48" width="100%">
<tr>
<td class="header_top">modules</td>
</tr>
<tr><td class="header_line"><img src="media/empty.png" width="1" height="1" border="0" alt="" /></td></tr>
<tr>
<td class="header_menu">
[ <a href="classtrees_modules.html" class="menu">class tree: modules</a> ]
[ <a href="elementindex_modules.html" class="menu">index: modules</a> ]
[ <a href="elementindex.html" class="menu">all elements</a> ]
</td>
</tr>
<tr><td class="header_line"><img src="media/empty.png" width="1" height="1" border="0" alt="" /></td></tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="200" class="menu">
<div id="ric">
<p><a href="ric_README.html">README</a></p>
</div>
<div id="todolist">
<p><a href="todolist.html">Todo List</a></p>
</div>
<b>Packages:</b><br />
<a href="li_PDF.html">PDF</a><br />
<a href="li_profiles.html">profiles</a><br />
<a href="li_main.html">main</a><br />
<a href="li_LDAP.html">LDAP</a><br />
<a href="li_tools.html">tools</a><br />
<a href="li_types.html">types</a><br />
<a href="li_lists.html">lists</a><br />
<a href="li_lib.html">lib</a><br />
<a href="li_modules.html">modules</a><br />
<a href="li_metaHTML.html">metaHTML</a><br />
<a href="li_selfService.html">selfService</a><br />
<a href="li_configuration.html">configuration</a><br />
<a href="li_PHP_Compat.html">PHP_Compat</a><br />
<a href="li_Net_SSH1.html">Net_SSH1</a><br />
<a href="li_Net_SSH2.html">Net_SSH2</a><br />
<a href="li_Net_SFTP.html">Net_SFTP</a><br />
<a href="li_Math_BigInteger.html">Math_BigInteger</a><br />
<a href="li_Crypt_RSA.html">Crypt_RSA</a><br />
<a href="li_Crypt_Hash.html">Crypt_Hash</a><br />
<a href="li_Crypt_TripleDES.html">Crypt_TripleDES</a><br />
<a href="li_Crypt_TerraDES.html">Crypt_TerraDES</a><br />
<a href="li_Crypt_AES.html">Crypt_AES</a><br />
<a href="li_Crypt_RC4.html">Crypt_RC4</a><br />
<a href="li_Crypt_DES.html">Crypt_DES</a><br />
<a href="li_Crypt_Random.html">Crypt_Random</a><br />
<a href="li_Crypt_Rijndael.html">Crypt_Rijndael</a><br />
<a href="li_Help.html">Help</a><br />
<a href="li_phpLDAPadmin.html">phpLDAPadmin</a><br />
<a href="li_horde-cipher.html">horde-cipher</a><br />
<a href="li_lam.html">lam</a><br />
<a href="li_default.html">default</a><br />
<br /><br />
<b>Files:</b><br />
<div class="package">
<a href="modules/_lib---modules---account.inc.html"> account.inc
</a><br>
<a href="modules/_lib---modules---asteriskAccount.inc.html"> asteriskAccount.inc
</a><br>
<a href="modules/_lib---modules---asteriskExtension.inc.html"> asteriskExtension.inc
</a><br>
<a href="modules/_lib---modules---asteriskVoicemail.inc.html"> asteriskVoicemail.inc
</a><br>
<a href="modules/_lib---modules---authorizedServiceObject.inc.html"> authorizedServiceObject.inc
</a><br>
<a href="modules/_lib---baseModule.inc.html"> baseModule.inc
</a><br>
<a href="modules/_lib---createntlm.inc.html"> createntlm.inc
</a><br>
<a href="modules/_lib---modules---ddns.inc.html"> ddns.inc
</a><br>
<a href="modules/_lib---modules---dhcp_settings.inc.html"> dhcp_settings.inc
</a><br>
<a href="modules/_templates---account---edit.php.html"> edit.php
</a><br>
<a href="modules/_lib---modules---eduPerson.inc.html"> eduPerson.inc
</a><br>
<a href="modules/_lib---modules---fixed_ip.inc.html"> fixed_ip.inc
</a><br>
<a href="modules/_lib---modules---freeRadius.inc.html"> freeRadius.inc
</a><br>
<a href="modules/_lib---modules---generalInformation.inc.html"> generalInformation.inc
</a><br>
<a href="modules/_lib---modules---hostObject.inc.html"> hostObject.inc
</a><br>
<a href="modules/_lib---modules---ieee802device.inc.html"> ieee802device.inc
</a><br>
<a href="modules/_lib---modules---imapAccess.inc.html"> imapAccess.inc
</a><br>
<a href="modules/_lib---modules---inetLocalMailRecipient.inc.html"> inetLocalMailRecipient.inc
</a><br>
<a href="modules/_lib---modules---inetOrgPerson.inc.html"> inetOrgPerson.inc
</a><br>
<a href="modules/_lib---modules---kolabUser.inc.html"> kolabUser.inc
</a><br>
<a href="modules/_lib---lamdaemon.inc.html"> lamdaemon.inc
</a><br>
<a href="modules/_lib---modules---ldapPublicKey.inc.html"> ldapPublicKey.inc
</a><br>
<a href="modules/_lib---modules.inc.html"> modules.inc
</a><br>
<a href="modules/_lib---modules---nisMailAlias.inc.html"> nisMailAlias.inc
</a><br>
<a href="modules/_lib---modules---nisnetgroup.inc.html"> nisnetgroup.inc
</a><br>
<a href="modules/_lib---modules---posixAccount.inc.html"> posixAccount.inc
</a><br>
<a href="modules/_lib---modules---posixGroup.inc.html"> posixGroup.inc
</a><br>
<a href="modules/_lib---modules---quota.inc.html"> quota.inc
</a><br>
<a href="modules/_lib---modules---range.inc.html"> range.inc
</a><br>
<a href="modules/_lib---modules---sambaDomain.inc.html"> sambaDomain.inc
</a><br>
<a href="modules/_lib---modules---sambaGroupMapping.inc.html"> sambaGroupMapping.inc
</a><br>
<a href="modules/_lib---modules---sambaSamAccount---sambaMungedDial.inc.html"> sambaMungedDial.inc
</a><br>
<a href="modules/_lib---modules---sambaSamAccount.inc.html"> sambaSamAccount.inc
</a><br>
<a href="modules/_lib---modules---shadowAccount.inc.html"> shadowAccount.inc
</a><br>
<a href="modules/_lib---modules---systemQuotas.inc.html"> systemQuotas.inc
</a><br>
</div><br />
<b>Interfaces:</b><br />
<div class="package">
<a href="modules/passwordService.html">passwordService</a><br />
</div>
<b>Classes:</b><br />
<div class="package">
<a href="modules/account.html">account</a><br />
<a href="modules/accountContainer.html">accountContainer</a><br />
<a href="modules/asteriskAccount.html">asteriskAccount</a><br />
<a href="modules/asteriskExtension.html">asteriskExtension</a><br />
<a href="modules/asteriskVoicemail.html">asteriskVoicemail</a><br />
<a href="modules/authorizedServiceObject.html">authorizedServiceObject</a><br />
<a href="modules/baseModule.html">baseModule</a><br />
<a href="modules/ddns.html">ddns</a><br />
<a href="modules/dhcp_settings.html">dhcp_settings</a><br />
<a href="modules/eduPerson.html">eduPerson</a><br />
<a href="modules/fixed_ip.html">fixed_ip</a><br />
<a href="modules/freeRadius.html">freeRadius</a><br />
<a href="modules/generalInformation.html">generalInformation</a><br />
<a href="modules/hostObject.html">hostObject</a><br />
<a href="modules/ieee802Device.html">ieee802Device</a><br />
<a href="modules/imapAccess.html">imapAccess</a><br />
<a href="modules/inetLocalMailRecipient.html">inetLocalMailRecipient</a><br />
<a href="modules/inetOrgPerson.html">inetOrgPerson</a><br />
<a href="modules/kolabUser.html">kolabUser</a><br />
<a href="modules/ldapPublicKey.html">ldapPublicKey</a><br />
<a href="modules/nisMailAlias.html">nisMailAlias</a><br />
<a href="modules/nisnetgroup.html">nisnetgroup</a><br />
<a href="modules/posixAccount.html">posixAccount</a><br />
<a href="modules/posixGroup.html">posixGroup</a><br />
<a href="modules/quota.html">quota</a><br />
<a href="modules/range.html">range</a><br />
<a href="modules/samba3domain.html">samba3domain</a><br />
<a href="modules/sambaDomain.html">sambaDomain</a><br />
<a href="modules/sambaGroupMapping.html">sambaGroupMapping</a><br />
<a href="modules/sambaMungedDial.html">sambaMungedDial</a><br />
<a href="modules/sambaSamAccount.html">sambaSamAccount</a><br />
<a href="modules/shadowAccount.html">shadowAccount</a><br />
<a href="modules/smbHash.html">smbHash</a><br />
<a href="modules/systemQuotas.html">systemQuotas</a><br />
</div>
</td>
<td>
<table cellpadding="10" cellspacing="0" width="100%" border="0"><tr><td valign="top">
<a name="top"></a>
<h1>Element index for package modules</h1>
[ <a href="elementindex_modules.html#a">a</a> ]
[ <a href="elementindex_modules.html#b">b</a> ]
[ <a href="elementindex_modules.html#c">c</a> ]
[ <a href="elementindex_modules.html#d">d</a> ]
[ <a href="elementindex_modules.html#e">e</a> ]
[ <a href="elementindex_modules.html#f">f</a> ]
[ <a href="elementindex_modules.html#g">g</a> ]
[ <a href="elementindex_modules.html#h">h</a> ]
[ <a href="elementindex_modules.html#i">i</a> ]
[ <a href="elementindex_modules.html#k">k</a> ]
[ <a href="elementindex_modules.html#l">l</a> ]
[ <a href="elementindex_modules.html#m">m</a> ]
[ <a href="elementindex_modules.html#n">n</a> ]
[ <a href="elementindex_modules.html#o">o</a> ]
[ <a href="elementindex_modules.html#p">p</a> ]
[ <a href="elementindex_modules.html#q">q</a> ]
[ <a href="elementindex_modules.html#r">r</a> ]
[ <a href="elementindex_modules.html#s">s</a> ]
[ <a href="elementindex_modules.html#t">t</a> ]
[ <a href="elementindex_modules.html#_">_</a> ]
<hr />
<a name="_"></a>
<div>
<h2>_</h2>
<dl>
<dt><b>__construct</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#method__construct">accountContainer::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file kolabUser.inc, method <a href="modules/kolabUser.html#method__construct">kolabUser::__construct()</a><br> Creates a new kolabUser object.</dd>
<dt><b>__construct</b></dt>
<dd>in file sambaGroupMapping.inc, method <a href="modules/sambaGroupMapping.html#method__construct">sambaGroupMapping::__construct()</a><br> Creates a new module for Samba 3 groups.</dd>
<dt><b>__construct</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#method__construct">sambaSamAccount::__construct()</a><br> Creates a new sambaSamAccount object.</dd>
<dt><b>__construct</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#method__construct">shadowAccount::__construct()</a><br> Creates a new shadowAccount object.</dd>
<dt><b>__construct</b></dt>
<dd>in file asteriskAccount.inc, method <a href="modules/asteriskAccount.html#method__construct">asteriskAccount::__construct()</a><br> Creates a new asteriskAccount object.</dd>
<dt><b>__construct</b></dt>
<dd>in file hostObject.inc, method <a href="modules/hostObject.html#method__construct">hostObject::__construct()</a><br> Creates a new hostObject object.</dd>
<dt><b>__construct</b></dt>
<dd>in file asteriskVoicemail.inc, method <a href="modules/asteriskVoicemail.html#method__construct">asteriskVoicemail::__construct()</a><br> Creates a new asteriskVoicemail object.</dd>
<dt><b>__construct</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#method__construct">baseModule::__construct()</a><br> Creates a new base module class</dd>
<dt><b>__construct</b></dt>
<dd>in file freeRadius.inc, method <a href="modules/freeRadius.html#method__construct">freeRadius::__construct()</a><br> Creates a new freeRadius object.</dd>
<dt><b>__construct</b></dt>
<dd>in file dhcp_settings.inc, method <a href="modules/dhcp_settings.html#method__construct">dhcp_settings::__construct()</a><br> Creates a new dhcp_settings object.</dd>
<dt><b>__construct</b></dt>
<dd>in file eduPerson.inc, method <a href="modules/eduPerson.html#method__construct">eduPerson::__construct()</a><br> Creates a new eduPerson object.</dd>
<dt><b>__construct</b></dt>
<dd>in file authorizedServiceObject.inc, method <a href="modules/authorizedServiceObject.html#method__construct">authorizedServiceObject::__construct()</a><br> Creates a new authorizedServiceObject object.</dd>
<dt><b>__sleep</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#method__sleep">accountContainer::__sleep()</a><br> Encrypts sensitive data before storing in session.</dd>
<dt><b>__wakeup</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#method__wakeup">accountContainer::__wakeup()</a><br> Decrypts sensitive data after accountContainer was loaded from session.</dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="a"></a>
<div>
<h2>a</h2>
<dl>
<dt><b>$attributes</b></dt>
<dd>in file fixed_ip.inc, variable <a href="modules/fixed_ip.html#var$attributes">fixed_ip::$attributes</a></dd>
<dt><b>$attributes</b></dt>
<dd>in file baseModule.inc, variable <a href="modules/baseModule.html#var$attributes">baseModule::$attributes</a><br> contains all ldap attributes which should be written</dd>
<dt><b>$attributes</b></dt>
<dd>in file dhcp_settings.inc, variable <a href="modules/dhcp_settings.html#var$attributes">dhcp_settings::$attributes</a></dd>
<dt><b>$attributes</b></dt>
<dd>in file modules.inc, variable <a href="modules/accountContainer.html#var$attributes">accountContainer::$attributes</a><br> Array of all used attributes</dd>
<dt><b>$attributes_orig</b></dt>
<dd>in file modules.inc, variable <a href="modules/accountContainer.html#var$attributes_orig">accountContainer::$attributes_orig</a><br> original LDAP attributes when account was loaded from LDAP</dd>
<dt><b>$autoAddObjectClasses</b></dt>
<dd>in file baseModule.inc, variable <a href="modules/baseModule.html#var$autoAddObjectClasses">baseModule::$autoAddObjectClasses</a><br> if true, managed object classes are added when an account is created or loaded (default: true)</dd>
<dt><b>account</b></dt>
<dd>in file account.inc, class <a href="modules/account.html">account</a><br> Manages the object class "account" for users and hosts.</dd>
<dt><b>accountContainer</b></dt>
<dd>in file modules.inc, class <a href="modules/accountContainer.html">accountContainer</a><br> This class includes all modules and attributes of an account.</dd>
<dt><b>array_sort</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodarray_sort">asteriskExtension::array_sort()</a></dd>
<dt><b>asteriskAccount</b></dt>
<dd>in file asteriskAccount.inc, class <a href="modules/asteriskAccount.html">asteriskAccount</a><br> Manages the Asterisk extension of user accounts.</dd>
<dt><b>asteriskExtension</b></dt>
<dd>in file asteriskExtension.inc, class <a href="modules/asteriskExtension.html">asteriskExtension</a><br> Manages Asterisk extensions.</dd>
<dt><b>asteriskVoicemail</b></dt>
<dd>in file asteriskVoicemail.inc, class <a href="modules/asteriskVoicemail.html">asteriskVoicemail</a><br> Manages the Asterisk extension of user accounts.</dd>
<dt><b>ASTERISK_DEFAULT_REALM</b></dt>
<dd>in file asteriskAccount.inc, class constant <a href="modules/asteriskAccount.html#constASTERISK_DEFAULT_REALM">asteriskAccount::ASTERISK_DEFAULT_REALM</a></dd>
<dt><b>authorizedServiceObject</b></dt>
<dd>in file authorizedServiceObject.inc, class <a href="modules/authorizedServiceObject.html">authorizedServiceObject</a><br> Provides Authorized Service for accounts.</dd>
<dt><b>account.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---account.inc.html">account.inc</a></dd>
<dt><b>asteriskAccount.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---asteriskAccount.inc.html">asteriskAccount.inc</a></dd>
<dt><b>asteriskExtension.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---asteriskExtension.inc.html">asteriskExtension.inc</a></dd>
<dt><b>asteriskVoicemail.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---asteriskVoicemail.inc.html">asteriskVoicemail.inc</a></dd>
<dt><b>authorizedServiceObject.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---authorizedServiceObject.inc.html">authorizedServiceObject.inc</a></dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="b"></a>
<div>
<h2>b</h2>
<dl>
<dt><b>baseModule</b></dt>
<dd>in file baseModule.inc, class <a href="modules/baseModule.html">baseModule</a><br> Parent class of all account modules.</dd>
<dt><b>buildPasswordString</b></dt>
<dd>in file asteriskAccount.inc, method <a href="modules/asteriskAccount.html#methodbuildPasswordString">asteriskAccount::buildPasswordString()</a><br> Builds the password string for the password attribute.</dd>
<dt><b>buildUploadAccounts</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functionbuildUploadAccounts">buildUploadAccounts()</a><br> This function builds the LDAP accounts for the file upload.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file kolabUser.inc, method <a href="modules/kolabUser.html#methodbuild_uploadAccounts">kolabUser::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file nisnetgroup.inc, method <a href="modules/nisnetgroup.html#methodbuild_uploadAccounts">nisnetgroup::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file nisMailAlias.inc, method <a href="modules/nisMailAlias.html#methodbuild_uploadAccounts">nisMailAlias::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodbuild_uploadAccounts">posixAccount::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file ldapPublicKey.inc, method <a href="modules/ldapPublicKey.html#methodbuild_uploadAccounts">ldapPublicKey::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodbuild_uploadAccounts">inetOrgPerson::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#methodbuild_uploadAccounts">shadowAccount::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file systemQuotas.inc, method <a href="modules/systemQuotas.html#methodbuild_uploadAccounts">systemQuotas::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodbuild_uploadAccounts">sambaSamAccount::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file sambaGroupMapping.inc, method <a href="modules/sambaGroupMapping.html#methodbuild_uploadAccounts">sambaGroupMapping::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file sambaDomain.inc, method <a href="modules/sambaDomain.html#methodbuild_uploadAccounts">sambaDomain::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodbuild_uploadAccounts">posixGroup::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file ieee802device.inc, method <a href="modules/ieee802Device.html#methodbuild_uploadAccounts">ieee802Device::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file authorizedServiceObject.inc, method <a href="modules/authorizedServiceObject.html#methodbuild_uploadAccounts">authorizedServiceObject::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodbuild_uploadAccounts">baseModule::build_uploadAccounts()</a><br> In this function the LDAP accounts are built.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file asteriskVoicemail.inc, method <a href="modules/asteriskVoicemail.html#methodbuild_uploadAccounts">asteriskVoicemail::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodbuild_uploadAccounts">asteriskExtension::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file asteriskAccount.inc, method <a href="modules/asteriskAccount.html#methodbuild_uploadAccounts">asteriskAccount::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file inetLocalMailRecipient.inc, method <a href="modules/inetLocalMailRecipient.html#methodbuild_uploadAccounts">inetLocalMailRecipient::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file ddns.inc, method <a href="modules/ddns.html#methodbuild_uploadAccounts">ddns::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file hostObject.inc, method <a href="modules/hostObject.html#methodbuild_uploadAccounts">hostObject::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file account.inc, method <a href="modules/account.html#methodbuild_uploadAccounts">account::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file freeRadius.inc, method <a href="modules/freeRadius.html#methodbuild_uploadAccounts">freeRadius::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file eduPerson.inc, method <a href="modules/eduPerson.html#methodbuild_uploadAccounts">eduPerson::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>build_uploadAccounts</b></dt>
<dd>in file dhcp_settings.inc, method <a href="modules/dhcp_settings.html#methodbuild_uploadAccounts">dhcp_settings::build_uploadAccounts()</a><br> In this function the LDAP account is built up.</dd>
<dt><b>baseModule.inc</b></dt>
<dd>procedural page <a href="modules/_lib---baseModule.inc.html">baseModule.inc</a></dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="c"></a>
<div>
<h2>c</h2>
<dl>
<dt><b>$ctx</b></dt>
<dd>in file sambaMungedDial.inc, variable <a href="modules/sambaMungedDial.html#var$ctx">sambaMungedDial::$ctx</a></dd>
<dt><b>$ctxattributes</b></dt>
<dd>in file sambaMungedDial.inc, variable <a href="modules/sambaMungedDial.html#var$ctxattributes">sambaMungedDial::$ctxattributes</a></dd>
<dt><b>can_manage</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodcan_manage">baseModule::can_manage()</a><br> Returns true if this module can manage accounts of the current type, otherwise false.</dd>
<dt><b>checkASCII</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodcheckASCII">posixAccount::checkASCII()</a><br> Checks if an attribute contains only ASCII charaters and replaces invalid characters.</dd>
<dt><b>checkConfigOptions</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functioncheckConfigOptions">checkConfigOptions()</a><br> Checks if the configuration options are valid</dd>
<dt><b>checkProfileOptions</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functioncheckProfileOptions">checkProfileOptions()</a><br> Checks if the profile options are valid</dd>
<dt><b>checkSelfServiceOptions</b></dt>
<dd>in file kolabUser.inc, method <a href="modules/kolabUser.html#methodcheckSelfServiceOptions">kolabUser::checkSelfServiceOptions()</a><br> Checks if all input values are correct and returns the LDAP attributes which should be changed.</dd>
<dt><b>checkSelfServiceOptions</b></dt>
<dd>in file asteriskAccount.inc, method <a href="modules/asteriskAccount.html#methodcheckSelfServiceOptions">asteriskAccount::checkSelfServiceOptions()</a><br> Checks if all input values are correct and returns the LDAP attributes which should be changed.</dd>
<dt><b>checkSelfServiceOptions</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodcheckSelfServiceOptions">baseModule::checkSelfServiceOptions()</a><br> Checks if all input values are correct and returns the LDAP attributes which should be changed.</dd>
<dt><b>checkSelfServiceOptions</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodcheckSelfServiceOptions">posixAccount::checkSelfServiceOptions()</a><br> Checks if all input values are correct and returns the LDAP attributes which should be changed.</dd>
<dt><b>checkSelfServiceOptions</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodcheckSelfServiceOptions">inetOrgPerson::checkSelfServiceOptions()</a><br> Checks if all input values are correct and returns the LDAP attributes which should be changed.</dd>
<dt><b>checkSelfServiceOptions</b></dt>
<dd>in file asteriskVoicemail.inc, method <a href="modules/asteriskVoicemail.html#methodcheckSelfServiceOptions">asteriskVoicemail::checkSelfServiceOptions()</a><br> Checks if all input values are correct and returns the LDAP attributes which should be changed.</dd>
<dt><b>checkSelfServiceOptions</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodcheckSelfServiceOptions">sambaSamAccount::checkSelfServiceOptions()</a><br> Checks if all input values are correct and returns the LDAP attributes which should be changed.</dd>
<dt><b>checkSelfServiceSettings</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodcheckSelfServiceSettings">baseModule::checkSelfServiceSettings()</a><br> Checks if the self service settings are valid.</dd>
<dt><b>check_configOptions</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodcheck_configOptions">posixAccount::check_configOptions()</a><br> Checks input values of module settings.</dd>
<dt><b>check_configOptions</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodcheck_configOptions">baseModule::check_configOptions()</a><br> Checks input values of module settings.</dd>
<dt><b>check_ip</b></dt>
<dd>in file dhcp_settings.inc, function <a href="modules/_lib---modules---dhcp_settings.inc.html#functioncheck_ip">check_ip()</a><br> This function checks if the given IP address ist valid.</dd>
<dt><b>check_mac</b></dt>
<dd>in file fixed_ip.inc, method <a href="modules/fixed_ip.html#methodcheck_mac">fixed_ip::check_mac()</a><br> Check, if a mac address is invalid</dd>
<dt><b>check_module_conflicts</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functioncheck_module_conflicts">check_module_conflicts()</a><br> Checks if there are conflicts between modules</dd>
<dt><b>check_module_depends</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functioncheck_module_depends">check_module_depends()</a><br> Checks if there are missing dependencies between modules.</dd>
<dt><b>check_profileOptions</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodcheck_profileOptions">baseModule::check_profileOptions()</a><br> Checks input values of account profiles.</dd>
<dt><b>check_profileOptions</b></dt>
<dd>in file systemQuotas.inc, method <a href="modules/systemQuotas.html#methodcheck_profileOptions">systemQuotas::check_profileOptions()</a><br> Checks input values of account profiles.</dd>
<dt><b>check_profileOptions</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodcheck_profileOptions">inetOrgPerson::check_profileOptions()</a><br> Checks input values of account profiles.</dd>
<dt><b>check_profileOptions</b></dt>
<dd>in file freeRadius.inc, method <a href="modules/freeRadius.html#methodcheck_profileOptions">freeRadius::check_profileOptions()</a><br> Checks input values of account profiles.</dd>
<dt><b>check_profileOptions</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methodcheck_profileOptions">quota::check_profileOptions()</a><br> Checks input values of account profiles.</dd>
<dt><b>check_range</b></dt>
<dd>in file range.inc, method <a href="modules/range.html#methodcheck_range">range::check_range()</a><br> Checks if the first IP is smaller than the second IP.</dd>
<dt><b>check_subnet_range</b></dt>
<dd>in file range.inc, method <a href="modules/range.html#methodcheck_subnet_range">range::check_subnet_range()</a><br> Check if an IP address is in the correct subnet.</dd>
<dt><b>continue_main</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#methodcontinue_main">accountContainer::continue_main()</a><br> This function is called when the user clicks on any button on the account pages.</dd>
<dt><b>createntlm.inc</b></dt>
<dd>procedural page <a href="modules/_lib---createntlm.inc.html">createntlm.inc</a></dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="d"></a>
<div>
<h2>d</h2>
<dl>
<dt><b>$ddns</b></dt>
<dd>in file ddns.inc, variable <a href="modules/ddns.html#var$ddns">ddns::$ddns</a></dd>
<dt><b>$dn</b></dt>
<dd>in file account.inc, variable <a href="modules/samba3domain.html#var$dn">samba3domain::$dn</a><br> DN</dd>
<dt><b>$dnSuffix</b></dt>
<dd>in file modules.inc, variable <a href="modules/accountContainer.html#var$dnSuffix">accountContainer::$dnSuffix</a><br> DN suffix of the account</dd>
<dt><b>$dn_orig</b></dt>
<dd>in file modules.inc, variable <a href="modules/accountContainer.html#var$dn_orig">accountContainer::$dn_orig</a><br> DN of account when it was loaded</dd>
<dt><b>ddns</b></dt>
<dd>in file ddns.inc, class <a href="modules/ddns.html">ddns</a><br> Manages DDNS entries.</dd>
<dt><b>decode_munged</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methoddecode_munged">sambaMungedDial::decode_munged()</a><br> Takes a base64-encoded MungedDial-String and returns an array of included parameters and values</dd>
<dt><b>delete_attributes</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methoddelete_attributes">posixGroup::delete_attributes()</a><br> Checks if the group which should be deleted is still used as primary group.</dd>
<dt><b>delete_attributes</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methoddelete_attributes">posixAccount::delete_attributes()</a><br> Additional LDAP operations on delete.</dd>
<dt><b>delete_attributes</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methoddelete_attributes">baseModule::delete_attributes()</a><br> This function returns an array with the same syntax as save_attributes().</dd>
<dt><b>dhcp_settings</b></dt>
<dd>in file dhcp_settings.inc, class <a href="modules/dhcp_settings.html">dhcp_settings</a><br> Manages DHCP entries.</dd>
<dt><b>displaySpecialSelfServicePage</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methoddisplaySpecialSelfServicePage">baseModule::displaySpecialSelfServicePage()</a><br> This function creates meta HTML code to display the module specific page for the self service.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methoddisplay_html_attributes">posixGroup::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file ieee802device.inc, method <a href="modules/ieee802Device.html#methoddisplay_html_attributes">ieee802Device::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methoddisplay_html_attributes">inetOrgPerson::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file kolabUser.inc, method <a href="modules/kolabUser.html#methoddisplay_html_attributes">kolabUser::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file inetLocalMailRecipient.inc, method <a href="modules/inetLocalMailRecipient.html#methoddisplay_html_attributes">inetLocalMailRecipient::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file imapAccess.inc, method <a href="modules/imapAccess.html#methoddisplay_html_attributes">imapAccess::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file sambaGroupMapping.inc, method <a href="modules/sambaGroupMapping.html#methoddisplay_html_attributes">sambaGroupMapping::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file sambaDomain.inc, method <a href="modules/sambaDomain.html#methoddisplay_html_attributes">sambaDomain::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methoddisplay_html_attributes">posixAccount::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file nisnetgroup.inc, method <a href="modules/nisnetgroup.html#methoddisplay_html_attributes">nisnetgroup::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file nisMailAlias.inc, method <a href="modules/nisMailAlias.html#methoddisplay_html_attributes">nisMailAlias::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file range.inc, method <a href="modules/range.html#methoddisplay_html_attributes">range::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methoddisplay_html_attributes">quota::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file ldapPublicKey.inc, method <a href="modules/ldapPublicKey.html#methoddisplay_html_attributes">ldapPublicKey::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file hostObject.inc, method <a href="modules/hostObject.html#methoddisplay_html_attributes">hostObject::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file authorizedServiceObject.inc, method <a href="modules/authorizedServiceObject.html#methoddisplay_html_attributes">authorizedServiceObject::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methoddisplay_html_attributes">baseModule::display_html_attributes()</a><br> This function creates meta HTML code to display the module page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file generalInformation.inc, method <a href="modules/generalInformation.html#methoddisplay_html_attributes">generalInformation::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file asteriskVoicemail.inc, method <a href="modules/asteriskVoicemail.html#methoddisplay_html_attributes">asteriskVoicemail::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file systemQuotas.inc, method <a href="modules/systemQuotas.html#methoddisplay_html_attributes">systemQuotas::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file account.inc, method <a href="modules/account.html#methoddisplay_html_attributes">account::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file asteriskAccount.inc, method <a href="modules/asteriskAccount.html#methoddisplay_html_attributes">asteriskAccount::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methoddisplay_html_attributes">asteriskExtension::display_html_attributes()</a><br> This function will create the meta HTML code to show a page with all attributes.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file ddns.inc, method <a href="modules/ddns.html#methoddisplay_html_attributes">ddns::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#methoddisplay_html_attributes">shadowAccount::display_html_attributes()</a><br> This function will create the meta HTML code to show a page with all attributes.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file fixed_ip.inc, method <a href="modules/fixed_ip.html#methoddisplay_html_attributes">fixed_ip::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file eduPerson.inc, method <a href="modules/eduPerson.html#methoddisplay_html_attributes">eduPerson::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file dhcp_settings.inc, method <a href="modules/dhcp_settings.html#methoddisplay_html_attributes">dhcp_settings::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file freeRadius.inc, method <a href="modules/freeRadius.html#methoddisplay_html_attributes">freeRadius::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_attributes</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methoddisplay_html_attributes">sambaSamAccount::display_html_attributes()</a><br> Returns the HTML meta data for the main account page.</dd>
<dt><b>display_html_delete</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methoddisplay_html_delete">posixAccount::display_html_delete()</a><br> Displays the delete homedir option for the delete page.</dd>
<dt><b>display_html_delete</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methoddisplay_html_delete">baseModule::display_html_delete()</a><br> This function creates meta HTML code which will be displayed when an account should be deleted.</dd>
<dt><b>display_html_deleteUser</b></dt>
<dd>in file kolabUser.inc, method <a href="modules/kolabUser.html#methoddisplay_html_deleteUser">kolabUser::display_html_deleteUser()</a><br> This function will create the meta HTML code to show a page to mark an account for deletion.</dd>
<dt><b>display_html_expiration</b></dt>
<dd>in file freeRadius.inc, method <a href="modules/freeRadius.html#methoddisplay_html_expiration">freeRadius::display_html_expiration()</a><br> This function will create the meta HTML code to show a page to change the expiration date.</dd>
<dt><b>display_html_expire</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#methoddisplay_html_expire">shadowAccount::display_html_expire()</a><br> This function will create the meta HTML code to show a page with the expiration date.</dd>
<dt><b>display_html_group</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methoddisplay_html_group">posixAccount::display_html_group()</a><br> Displays the group selection.</dd>
<dt><b>display_html_group</b></dt>
<dd>in file nisnetgroup.inc, method <a href="modules/nisnetgroup.html#methoddisplay_html_group">nisnetgroup::display_html_group()</a><br> Displays the group selection.</dd>
<dt><b>display_html_homedir</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methoddisplay_html_homedir">posixAccount::display_html_homedir()</a><br> Displays the delete homedir option for the homedir page.</dd>
<dt><b>display_html_logonHours</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methoddisplay_html_logonHours">sambaSamAccount::display_html_logonHours()</a><br> This function will create the HTML page to edit logon hours.</dd>
<dt><b>display_html_manager</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methoddisplay_html_manager">inetOrgPerson::display_html_manager()</a><br> This function will create the meta HTML code to show a page to change the manager attribute.</dd>
<dt><b>display_html_password</b></dt>
<dd>in file imapAccess.inc, method <a href="modules/imapAccess.html#methoddisplay_html_password">imapAccess::display_html_password()</a><br> Returns the HTML meta data for the password page.</dd>
<dt><b>display_html_photo</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methoddisplay_html_photo">inetOrgPerson::display_html_photo()</a><br> Displays the photo upload page.</dd>
<dt><b>display_html_sambaUserWorkstations</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methoddisplay_html_sambaUserWorkstations">sambaSamAccount::display_html_sambaUserWorkstations()</a><br> This function will create the HTML page to edit the allowed workstations.</dd>
<dt><b>display_html_select</b></dt>
<dd>in file nisnetgroup.inc, method <a href="modules/nisnetgroup.html#methoddisplay_html_select">nisnetgroup::display_html_select()</a><br> Displays the host/user selection.</dd>
<dt><b>display_html_terminalServer</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methoddisplay_html_terminalServer">sambaSamAccount::display_html_terminalServer()</a><br> This function will create the HTML page to edit the terminal server options.</dd>
<dt><b>display_html_time</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methoddisplay_html_time">sambaSamAccount::display_html_time()</a><br> This function will create the meta HTML code to show a page to change time values.</dd>
<dt><b>display_html_user</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methoddisplay_html_user">asteriskExtension::display_html_user()</a><br> Displays a list of possible owners of this extension.</dd>
<dt><b>display_html_user</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methoddisplay_html_user">posixGroup::display_html_user()</a><br> Displays selections to add or remove users from current group.</dd>
<dt><b>doHash</b></dt>
<dd>in file createntlm.inc, method <a href="modules/smbHash.html#methoddoHash">smbHash::doHash()</a></dd>
<dt><b>doLogin</b></dt>
<dd>in file imapAccess.inc, method <a href="modules/imapAccess.html#methoddoLogin">imapAccess::doLogin()</a><br> Checks the password given by user and save it as session parameter.</dd>
<dt><b>doUploadPostActions</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methoddoUploadPostActions">baseModule::doUploadPostActions()</a><br> This function is responsible to do additional tasks after the account has been created in LDAP (e.g. modifying group memberships, adding Quota etc..).</dd>
<dt><b>doUploadPostActions</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methoddoUploadPostActions">quota::doUploadPostActions()</a><br> This function executes one post upload action.</dd>
<dt><b>doUploadPostActions</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methoddoUploadPostActions">posixAccount::doUploadPostActions()</a><br> This function executes one post upload action.</dd>
<dt><b>doUploadPostActions</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functiondoUploadPostActions">doUploadPostActions()</a><br> This function executes one post upload action.</dd>
<dt><b>ddns.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---ddns.inc.html">ddns.inc</a></dd>
<dt><b>dhcp_settings.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---dhcp_settings.inc.html">dhcp_settings.inc</a></dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="e"></a>
<div>
<h2>e</h2>
<dl>
<dt><b>eduPerson</b></dt>
<dd>in file eduPerson.inc, class <a href="modules/eduPerson.html">eduPerson</a><br> Manages the eduPerson extension for user accounts.</dd>
<dt><b>encode_munged</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodencode_munged">sambaMungedDial::encode_munged()</a><br> Encode full MungedDial-String</dd>
<dt><b>endian</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodendian">sambaMungedDial::endian()</a><br> endian</dd>
<dt><b>eduPerson.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---eduPerson.inc.html">eduPerson.inc</a></dd>
<dt><b>edit.php</b></dt>
<dd>procedural page <a href="modules/_templates---account---edit.php.html">edit.php</a></dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="f"></a>
<div>
<h2>f</h2>
<dl>
<dt><b>$finalDN</b></dt>
<dd>in file modules.inc, variable <a href="modules/accountContainer.html#var$finalDN">accountContainer::$finalDN</a><br> DN of saved account</dd>
<dt><b>$fixed_ip</b></dt>
<dd>in file fixed_ip.inc, variable <a href="modules/fixed_ip.html#var$fixed_ip">fixed_ip::$fixed_ip</a></dd>
<dt><b>fixed_ip</b></dt>
<dd>in file fixed_ip.inc, class <a href="modules/fixed_ip.html">fixed_ip</a><br> Manages fixed IP addresses.</dd>
<dt><b>fixLDAPAttributes</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#methodfixLDAPAttributes">accountContainer::fixLDAPAttributes()</a><br> Fixes spelling errors in the attribute names.</dd>
<dt><b>freeRadius</b></dt>
<dd>in file freeRadius.inc, class <a href="modules/freeRadius.html">freeRadius</a><br> Manages FreeRadius accounts.</dd>
<dt><b>fixed_ip.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---fixed_ip.inc.html">fixed_ip.inc</a></dd>
<dt><b>freeRadius.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---freeRadius.inc.html">freeRadius.inc</a></dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="g"></a>
<div>
<h2>g</h2>
<dl>
<dt><b>generalInformation</b></dt>
<dd>in file generalInformation.inc, class <a href="modules/generalInformation.html">generalInformation</a><br> Shows general information like the creation time of an account.</dd>
<dt><b>generateNextExtensionName</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodgenerateNextExtensionName">asteriskExtension::generateNextExtensionName()</a><br> This function searches in the base subtree and finds all extensions names within.</dd>
<dt><b>genTime</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodgenTime">sambaMungedDial::genTime()</a><br> genTime</dd>
<dt><b>getAccountContainer</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodgetAccountContainer">baseModule::getAccountContainer()</a><br> Returns the <a href="modules/accountContainer.html">accountContainer</a> object.</dd>
<dt><b>getAccountModule</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#methodgetAccountModule">accountContainer::getAccountModule()</a><br> Returns the account module with the given class name</dd>
<dt><b>getAccountModules</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#methodgetAccountModules">accountContainer::getAccountModules()</a><br> Returns the included account modules.</dd>
<dt><b>getAdminPassword</b></dt>
<dd>in file imapAccess.inc, method <a href="modules/imapAccess.html#methodgetAdminPassword">imapAccess::getAdminPassword()</a><br> Returns the admin password.</dd>
<dt><b>getAttributes</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodgetAttributes">baseModule::getAttributes()</a><br> Returns the LDAP attributes which are managed in this module.</dd>
<dt><b>getAvailableModules</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functiongetAvailableModules">getAvailableModules()</a><br> Returns an array with all available user module names</dd>
<dt><b>getAvailablePDFFields</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functiongetAvailablePDFFields">getAvailablePDFFields()</a><br> Returns a list of available PDF entries.</dd>
<dt><b>getBrokenConn</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodgetBrokenConn">sambaMungedDial::getBrokenConn()</a><br> gets Broken-Connection value: disconnect/reset</dd>
<dt><b>getButtonStatus</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodgetButtonStatus">baseModule::getButtonStatus()</a><br> Controls if the module button the account page is visible and activated.</dd>
<dt><b>getButtonStatus</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodgetButtonStatus">posixGroup::getButtonStatus()</a><br> Controls if the module button the account page is visible and activated.</dd>
<dt><b>getButtonStatus</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodgetButtonStatus">inetOrgPerson::getButtonStatus()</a><br> Controls if the module button the account page is visible and activated.</dd>
<dt><b>getButtonStatus</b></dt>
<dd>in file range.inc, method <a href="modules/range.html#methodgetButtonStatus">range::getButtonStatus()</a><br> Controls if the module button the account page is visible and activated.</dd>
<dt><b>getButtonStatus</b></dt>
<dd>in file account.inc, method <a href="modules/account.html#methodgetButtonStatus">account::getButtonStatus()</a><br> Controls if the module button the account page is visible and activated.</dd>
<dt><b>getButtonStatus</b></dt>
<dd>in file fixed_ip.inc, method <a href="modules/fixed_ip.html#methodgetButtonStatus">fixed_ip::getButtonStatus()</a><br> Controls if the module button the account page is visible and activated.</dd>
<dt><b>getButtonStatus</b></dt>
<dd>in file nisMailAlias.inc, method <a href="modules/nisMailAlias.html#methodgetButtonStatus">nisMailAlias::getButtonStatus()</a><br> Controls if the module button the account page is visible and activated.</dd>
<dt><b>getConfigOptions</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functiongetConfigOptions">getConfigOptions()</a><br> Returns a hash array (module name => elements) of all module options for the configuration page.</dd>
<dt><b>getConnectClientDrives</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodgetConnectClientDrives">sambaMungedDial::getConnectClientDrives()</a><br> gets connect-client-drive-at-logon value: enabled/disabled</dd>
<dt><b>getConnectClientPrinters</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodgetConnectClientPrinters">sambaMungedDial::getConnectClientPrinters()</a><br> gets connect-client-printers-at-logon value: enabled/disabled</dd>
<dt><b>getCtxMaxConnectionTimeF</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodgetCtxMaxConnectionTimeF">sambaMungedDial::getCtxMaxConnectionTimeF()</a><br> SMARTY: gets the checkbox state of "Connection"</dd>
<dt><b>getCtxMaxDisconnectionTimeF</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodgetCtxMaxDisconnectionTimeF">sambaMungedDial::getCtxMaxDisconnectionTimeF()</a><br> SMARTY: gets the checkbox state of "Disconnection"</dd>
<dt><b>getCtxMaxIdleTimeF</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodgetCtxMaxIdleTimeF">sambaMungedDial::getCtxMaxIdleTimeF()</a><br> SMARTY: gets the checkbox state of "Idle"</dd>
<dt><b>getDefaultExtensionOwner</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodgetDefaultExtensionOwner">asteriskExtension::getDefaultExtensionOwner()</a><br> Returns the default extension owner.</dd>
<dt><b>getDefaultPrinter</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodgetDefaultPrinter">sambaMungedDial::getDefaultPrinter()</a><br> gets set-client-printer-to-default value: enabled/disabled</dd>
<dt><b>getDHCPOption</b></dt>
<dd>in file dhcp_settings.inc, method <a href="modules/dhcp_settings.html#methodgetDHCPOption">dhcp_settings::getDHCPOption()</a><br> Returns a DHCP option.</dd>
<dt><b>getHelp</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functiongetHelp">getHelp()</a><br> Returns a help entry from an account module.</dd>
<dt><b>getIcon</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodgetIcon">baseModule::getIcon()</a><br> Returns the path to the module icon.</dd>
<dt><b>getInheritMode</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodgetInheritMode">sambaMungedDial::getInheritMode()</a><br> gets Inherit-config-from-client value: enabled/disabled</dd>
<dt><b>getLDAPAliases</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodgetLDAPAliases">baseModule::getLDAPAliases()</a><br> Returns a list of aliases for LDAP attributes.</dd>
<dt><b>getLinkToSpecialSelfServicePage</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodgetLinkToSpecialSelfServicePage">baseModule::getLinkToSpecialSelfServicePage()</a><br> This allows modules to create a link to a module specific page for the self service.</dd>
<dt><b>getMailboxPrefix</b></dt>
<dd>in file imapAccess.inc, method <a href="modules/imapAccess.html#methodgetMailboxPrefix">imapAccess::getMailboxPrefix()</a><br> This function returns the prefix for mailboxes.</dd>
<dt><b>getManagedAttributes</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodgetManagedAttributes">baseModule::getManagedAttributes()</a><br> Returns a list of LDAP attributes which are managed by this module.</dd>
<dt><b>getManagedObjectClasses</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodgetManagedObjectClasses">baseModule::getManagedObjectClasses()</a><br> Returns a list of managed object classes for this module.</dd>
<dt><b>getModuleAlias</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functiongetModuleAlias">getModuleAlias()</a><br> Returns the alias name of a module</dd>
<dt><b>getModulesDependencies</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functiongetModulesDependencies">getModulesDependencies()</a><br> Returns a hash array (module name => dependencies) of all module dependencies</dd>
<dt><b>getMunged</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodgetMunged">sambaMungedDial::getMunged()</a><br> Returns ready-to-run mungedDialString to be filled into ldap</dd>
<dt><b>getNextGIDs</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodgetNextGIDs">posixGroup::getNextGIDs()</a><br> Returns one or more free GID numbers.</dd>
<dt><b>getNextUIDs</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodgetNextUIDs">posixAccount::getNextUIDs()</a><br> Returns one or more free UID numbers.</dd>
<dt><b>getOnDemandFlags</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodgetOnDemandFlags">sambaMungedDial::getOnDemandFlags()</a><br> Returns array of flags, which can be set on-demand with activated java-script</dd>
<dt><b>getOriginalAttributes</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodgetOriginalAttributes">baseModule::getOriginalAttributes()</a><br> Returns the LDAP attributes which are managed in this module (with unchanged values).</dd>
<dt><b>getParentDN</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#methodgetParentDN">accountContainer::getParentDN()</a><br> Returns the parent DN of a given DN.</dd>
<dt><b>getProfileOptions</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functiongetProfileOptions">getProfileOptions()</a><br> Returns the elements for the profile page.</dd>
<dt><b>getRDN</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#methodgetRDN">accountContainer::getRDN()</a><br> Returns the RDN part of a given DN.</dd>
<dt><b>getRDNAttributes</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functiongetRDNAttributes">getRDNAttributes()</a><br> Returns a list of LDAP attributes which can be used to form the RDN.</dd>
<dt><b>getReConn</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodgetReConn">sambaMungedDial::getReConn()</a><br> gets Reconnection value: from any client/from previous client only</dd>
<dt><b>getRequiredExtensions</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodgetRequiredExtensions">baseModule::getRequiredExtensions()</a><br> This function returns a list of PHP extensions (e.g. hash) which are needed by this module.</dd>
<dt><b>getRequiredExtensions</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functiongetRequiredExtensions">getRequiredExtensions()</a><br> Returns true if the module is a base module</dd>
<dt><b>getSelfServiceFields</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodgetSelfServiceFields">baseModule::getSelfServiceFields()</a><br> Returns a list of possible input fields and their descriptions.</dd>
<dt><b>getSelfServiceOptions</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodgetSelfServiceOptions">posixAccount::getSelfServiceOptions()</a><br> Returns the meta HTML code for each input field.</dd>
<dt><b>getSelfServiceOptions</b></dt>
<dd>in file kolabUser.inc, method <a href="modules/kolabUser.html#methodgetSelfServiceOptions">kolabUser::getSelfServiceOptions()</a><br> Returns the meta HTML code for each input field.</dd>
<dt><b>getSelfServiceOptions</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodgetSelfServiceOptions">inetOrgPerson::getSelfServiceOptions()</a><br> Returns the meta HTML code for each input field.</dd>
<dt><b>getSelfServiceOptions</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodgetSelfServiceOptions">baseModule::getSelfServiceOptions()</a><br> Returns the meta HTML code for each input field.</dd>
<dt><b>getSelfServiceSearchAttributes</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodgetSelfServiceSearchAttributes">baseModule::getSelfServiceSearchAttributes()</a><br> This function returns a list of possible LDAP attributes (e.g. uid, cn, ...) which can be used to search for LDAP objects.</dd>
<dt><b>getSelfServiceSettings</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodgetSelfServiceSettings">baseModule::getSelfServiceSettings()</a><br> Returns a list of self service configuration settings.</dd>
<dt><b>getServerAddress</b></dt>
<dd>in file imapAccess.inc, method <a href="modules/imapAccess.html#methodgetServerAddress">imapAccess::getServerAddress()</a><br> This function returns the IMAP server address including encryption options.</dd>
<dt><b>getShadow</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodgetShadow">sambaMungedDial::getShadow()</a><br> gets shadow value (enum): 0-4</dd>
<dt><b>getTsLogin</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodgetTsLogin">sambaMungedDial::getTsLogin()</a><br> Gets Terminal-Server-Login value: enabled/disabled</dd>
<dt><b>getUploadColumns</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functiongetUploadColumns">getUploadColumns()</a><br> Returns an array containing all input columns for the file upload.</dd>
<dt><b>get_alias</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodget_alias">baseModule::get_alias()</a><br> Returns an alias name for the module.</dd>
<dt><b>get_configOptions</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodget_configOptions">posixGroup::get_configOptions()</a><br> Returns a list of elements for the configuration.</dd>
<dt><b>get_configOptions</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodget_configOptions">baseModule::get_configOptions()</a><br> Returns a list of configuration options.</dd>
<dt><b>get_dependencies</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodget_dependencies">baseModule::get_dependencies()</a><br> This function returns a list with all depending and conflicting modules.</dd>
<dt><b>get_help</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodget_help">baseModule::get_help()</a><br> This function returns the help entry array for a specific help id.</dd>
<dt><b>get_ldap_filter</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodget_ldap_filter">baseModule::get_ldap_filter()</a><br> Returns an LDAP filter for the account lists</dd>
<dt><b>get_ldap_filter</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functionget_ldap_filter">get_ldap_filter()</a><br> Returns the LDAP filter used by the account lists</dd>
<dt><b>get_metaData</b></dt>
<dd>in file authorizedServiceObject.inc, method <a href="modules/authorizedServiceObject.html#methodget_metaData">authorizedServiceObject::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodget_metaData">baseModule::get_metaData()</a><br> This function provides meta data which is interpreted by baseModule.</dd>
<dt><b>get_metaData</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodget_metaData">sambaSamAccount::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file freeRadius.inc, method <a href="modules/freeRadius.html#methodget_metaData">freeRadius::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file asteriskVoicemail.inc, method <a href="modules/asteriskVoicemail.html#methodget_metaData">asteriskVoicemail::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file inetLocalMailRecipient.inc, method <a href="modules/inetLocalMailRecipient.html#methodget_metaData">inetLocalMailRecipient::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file fixed_ip.inc, method <a href="modules/fixed_ip.html#methodget_metaData">fixed_ip::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file sambaDomain.inc, method <a href="modules/sambaDomain.html#methodget_metaData">sambaDomain::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodget_metaData">posixAccount::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file imapAccess.inc, method <a href="modules/imapAccess.html#methodget_metaData">imapAccess::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file nisnetgroup.inc, method <a href="modules/nisnetgroup.html#methodget_metaData">nisnetgroup::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file nisMailAlias.inc, method <a href="modules/nisMailAlias.html#methodget_metaData">nisMailAlias::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file hostObject.inc, method <a href="modules/hostObject.html#methodget_metaData">hostObject::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#methodget_metaData">shadowAccount::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file sambaGroupMapping.inc, method <a href="modules/sambaGroupMapping.html#methodget_metaData">sambaGroupMapping::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodget_metaData">asteriskExtension::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file kolabUser.inc, method <a href="modules/kolabUser.html#methodget_metaData">kolabUser::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file account.inc, method <a href="modules/account.html#methodget_metaData">account::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file eduPerson.inc, method <a href="modules/eduPerson.html#methodget_metaData">eduPerson::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file generalInformation.inc, method <a href="modules/generalInformation.html#methodget_metaData">generalInformation::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodget_metaData">inetOrgPerson::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methodget_metaData">quota::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file ldapPublicKey.inc, method <a href="modules/ldapPublicKey.html#methodget_metaData">ldapPublicKey::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file range.inc, method <a href="modules/range.html#methodget_metaData">range::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file ieee802device.inc, method <a href="modules/ieee802Device.html#methodget_metaData">ieee802Device::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file systemQuotas.inc, method <a href="modules/systemQuotas.html#methodget_metaData">systemQuotas::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file ddns.inc, method <a href="modules/ddns.html#methodget_metaData">ddns::get_metaData()</a><br> Returns meta data that is interpreted by parent class.</dd>
<dt><b>get_metaData</b></dt>
<dd>in file asteriskAccount.inc, method <a href="modules/asteriskAccount.html#methodget_metaData">asteriskAccount::get_metaData()</a><br> Returns meta data that is interpreted by parent class.</dd>
<dt><b>get_metaData</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodget_metaData">posixGroup::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_metaData</b></dt>
<dd>in file dhcp_settings.inc, method <a href="modules/dhcp_settings.html#methodget_metaData">dhcp_settings::get_metaData()</a><br> Returns meta data that is interpreted by parent class</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file range.inc, method <a href="modules/range.html#methodget_pdfEntries">range::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file sambaDomain.inc, method <a href="modules/sambaDomain.html#methodget_pdfEntries">sambaDomain::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file asteriskVoicemail.inc, method <a href="modules/asteriskVoicemail.html#methodget_pdfEntries">asteriskVoicemail::get_pdfEntries()</a><br> Returns a list of PDF entries</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file systemQuotas.inc, method <a href="modules/systemQuotas.html#methodget_pdfEntries">systemQuotas::get_pdfEntries()</a><br> Returns a list of PDF entries</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file account.inc, method <a href="modules/account.html#methodget_pdfEntries">account::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file freeRadius.inc, method <a href="modules/freeRadius.html#methodget_pdfEntries">freeRadius::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file asteriskAccount.inc, method <a href="modules/asteriskAccount.html#methodget_pdfEntries">asteriskAccount::get_pdfEntries()</a><br> Returns a list of PDF entries</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodget_pdfEntries">asteriskExtension::get_pdfEntries()</a><br> Returns a list of PDF entries</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodget_pdfEntries">sambaSamAccount::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file authorizedServiceObject.inc, method <a href="modules/authorizedServiceObject.html#methodget_pdfEntries">authorizedServiceObject::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file hostObject.inc, method <a href="modules/hostObject.html#methodget_pdfEntries">hostObject::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file sambaGroupMapping.inc, method <a href="modules/sambaGroupMapping.html#methodget_pdfEntries">sambaGroupMapping::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file fixed_ip.inc, method <a href="modules/fixed_ip.html#methodget_pdfEntries">fixed_ip::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file ddns.inc, method <a href="modules/ddns.html#methodget_pdfEntries">ddns::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#methodget_pdfEntries">shadowAccount::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodget_pdfEntries">baseModule::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file dhcp_settings.inc, method <a href="modules/dhcp_settings.html#methodget_pdfEntries">dhcp_settings::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file ldapPublicKey.inc, method <a href="modules/ldapPublicKey.html#methodget_pdfEntries">ldapPublicKey::get_pdfEntries()</a><br> Returns a list of PDF entries</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodget_pdfEntries">inetOrgPerson::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file eduPerson.inc, method <a href="modules/eduPerson.html#methodget_pdfEntries">eduPerson::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file kolabUser.inc, method <a href="modules/kolabUser.html#methodget_pdfEntries">kolabUser::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file nisMailAlias.inc, method <a href="modules/nisMailAlias.html#methodget_pdfEntries">nisMailAlias::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#methodget_pdfEntries">accountContainer::get_pdfEntries()</a><br> Returns a list of possible PDF entries for this account.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methodget_pdfEntries">quota::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodget_pdfEntries">posixAccount::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodget_pdfEntries">posixGroup::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file nisnetgroup.inc, method <a href="modules/nisnetgroup.html#methodget_pdfEntries">nisnetgroup::get_pdfEntries()</a><br> Returns a list of PDF entries</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file ieee802device.inc, method <a href="modules/ieee802Device.html#methodget_pdfEntries">ieee802Device::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfEntries</b></dt>
<dd>in file inetLocalMailRecipient.inc, method <a href="modules/inetLocalMailRecipient.html#methodget_pdfEntries">inetLocalMailRecipient::get_pdfEntries()</a><br> Returns the PDF entries for this module.</dd>
<dt><b>get_pdfFields</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodget_pdfFields">baseModule::get_pdfFields()</a><br> Returns a hashtable with all entries that may be printed out in the PDF.</dd>
<dt><b>get_profileOptions</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodget_profileOptions">posixAccount::get_profileOptions()</a><br> Returns a list of elements for the account profiles.</dd>
<dt><b>get_profileOptions</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodget_profileOptions">baseModule::get_profileOptions()</a><br> This function defines what attributes will be used in the account profiles and their appearance in the profile editor.</dd>
<dt><b>get_profileOptions</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodget_profileOptions">sambaSamAccount::get_profileOptions()</a><br> Returns a list of elements for the account profiles.</dd>
<dt><b>get_profileOptions</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methodget_profileOptions">quota::get_profileOptions()</a><br> Returns a list of elements for the account profiles.</dd>
<dt><b>get_profileOptions</b></dt>
<dd>in file sambaGroupMapping.inc, method <a href="modules/sambaGroupMapping.html#methodget_profileOptions">sambaGroupMapping::get_profileOptions()</a><br> Returns a list of elements for the account profiles.</dd>
<dt><b>get_RDNAttributes</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodget_RDNAttributes">baseModule::get_RDNAttributes()</a><br> Returns a hash array containing a list of possible LDAP attributes that can be used to form the RDN (Relative Distinguished Name).</dd>
<dt><b>get_scope</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodget_scope">baseModule::get_scope()</a><br> Returns the account type of this module (user, group, host)</dd>
<dt><b>get_type</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#methodget_type">accountContainer::get_type()</a><br> Returns the accout type of this object (e.g. user, group, host).</dd>
<dt><b>get_uploadColumns</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodget_uploadColumns">inetOrgPerson::get_uploadColumns()</a><br> Returns an array containing all input columns for the file upload.</dd>
<dt><b>get_uploadColumns</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodget_uploadColumns">baseModule::get_uploadColumns()</a><br> Returns an array containing all input columns for the file upload.</dd>
<dt><b>get_uploadColumns</b></dt>
<dd>in file account.inc, method <a href="modules/account.html#methodget_uploadColumns">account::get_uploadColumns()</a><br> Returns an array containing all input columns for the file upload.</dd>
<dt><b>get_uploadColumns</b></dt>
<dd>in file sambaGroupMapping.inc, method <a href="modules/sambaGroupMapping.html#methodget_uploadColumns">sambaGroupMapping::get_uploadColumns()</a><br> Returns an array containing all input columns for the file upload.</dd>
<dt><b>get_uploadColumns</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methodget_uploadColumns">quota::get_uploadColumns()</a><br> Returns an array containing all input columns for the file upload.</dd>
<dt><b>get_uploadPreDepends</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodget_uploadPreDepends">baseModule::get_uploadPreDepends()</a><br> Returns a list of module names which must be processed in building the account befor this module.</dd>
<dt><b>generalInformation.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---generalInformation.inc.html">generalInformation.inc</a></dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="h"></a>
<div>
<h2>h</h2>
<dl>
<dt><b>handleAjaxRequest</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodhandleAjaxRequest">baseModule::handleAjaxRequest()</a><br> Manages AJAX requests.</dd>
<dt><b>hexstr</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodhexstr">sambaMungedDial::hexstr()</a><br> hexstr</dd>
<dt><b>hostObject</b></dt>
<dd>in file hostObject.inc, class <a href="modules/hostObject.html">hostObject</a><br> Manages the hosts to which a user may login.</dd>
<dt><b>hostObject.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---hostObject.inc.html">hostObject.inc</a></dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="i"></a>
<div>
<h2>i</h2>
<dl>
<dt><b>$isNewAccount</b></dt>
<dd>in file modules.inc, variable <a href="modules/accountContainer.html#var$isNewAccount">accountContainer::$isNewAccount</a><br> True if this is a newly created account</dd>
<dt><b>ieee802Device</b></dt>
<dd>in file ieee802device.inc, class <a href="modules/ieee802Device.html">ieee802Device</a><br> Provides MAC addresses for hosts.</dd>
<dt><b>imapAccess</b></dt>
<dd>in file imapAccess.inc, class <a href="modules/imapAccess.html">imapAccess</a><br> Manages mailboxes on an IMAP server.</dd>
<dt><b>inetLocalMailRecipient</b></dt>
<dd>in file inetLocalMailRecipient.inc, class <a href="modules/inetLocalMailRecipient.html">inetLocalMailRecipient</a><br> Provides mail routing for users.</dd>
<dt><b>inetOrgPerson</b></dt>
<dd>in file inetOrgPerson.inc, class <a href="modules/inetOrgPerson.html">inetOrgPerson</a><br> This module manages LDAP attributes of the object class inetOrgPerson (e.g. name and address).</dd>
<dt><b>init</b></dt>
<dd>in file ddns.inc, method <a href="modules/ddns.html#methodinit">ddns::init()</a><br> Initializes the module after it became part of an <a href="modules/accountContainer.html">accountContainer</a></dd>
<dt><b>init</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodinit">sambaSamAccount::init()</a><br> Initializes the module after it became part of an accountContainer</dd>
<dt><b>init</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodinit">baseModule::init()</a><br> Initializes the module after it became part of an <a href="modules/accountContainer.html">accountContainer</a></dd>
<dt><b>init</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodinit">posixAccount::init()</a><br> Initializes the module after it became part of an accountContainer</dd>
<dt><b>init</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodinit">posixGroup::init()</a><br> This functin will be called when the module will be loaded *</dd>
<dt><b>initQuotas</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methodinitQuotas">quota::initQuotas()</a><br> Initializes the quota values.</dd>
<dt><b>isBooleanConfigOptionSet</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodisBooleanConfigOptionSet">baseModule::isBooleanConfigOptionSet()</a><br> Returns if the given configuration option is set.</dd>
<dt><b>isExtensionOwnerSet</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodisExtensionOwnerSet">asteriskExtension::isExtensionOwnerSet()</a><br> Returns true if at least one owner is set and false otherwise</dd>
<dt><b>isMoveToNewSuffix</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodisMoveToNewSuffix">asteriskExtension::isMoveToNewSuffix()</a><br> Returns if the extension was moved to another OU.</dd>
<dt><b>isThisExtensionPresented</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodisThisExtensionPresented">asteriskExtension::isThisExtensionPresented()</a><br> Search by extension name and retun true if fields with this extension name is presented and false otherwise.</dd>
<dt><b>isWrongDomain</b></dt>
<dd>in file imapAccess.inc, method <a href="modules/imapAccess.html#methodisWrongDomain">imapAccess::isWrongDomain()</a><br> This function checks if the domain of the mailbox is not in the list of domains listed in the configuration.</dd>
<dt><b>is_base_module</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functionis_base_module">is_base_module()</a><br> Returns true if the module is a base module</dd>
<dt><b>is_base_module</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodis_base_module">baseModule::is_base_module()</a><br> Returns true if your module is a base module and otherwise false.</dd>
<dt><b>is_samba_path</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodis_samba_path">sambaMungedDial::is_samba_path()</a><br> Checks if this is a valid Samba path.</dd>
<dt><b>ieee802device.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---ieee802device.inc.html">ieee802device.inc</a></dd>
<dt><b>imapAccess.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---imapAccess.inc.html">imapAccess.inc</a></dd>
<dt><b>inetLocalMailRecipient.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---inetLocalMailRecipient.inc.html">inetLocalMailRecipient.inc</a></dd>
<dt><b>inetOrgPerson.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---inetOrgPerson.inc.html">inetOrgPerson.inc</a></dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="k"></a>
<div>
<h2>k</h2>
<dl>
<dt><b>kolabUser</b></dt>
<dd>in file kolabUser.inc, class <a href="modules/kolabUser.html">kolabUser</a><br> Manages Kolab user accounts.</dd>
<dt><b>kolabUser.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---kolabUser.inc.html">kolabUser.inc</a></dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="l"></a>
<div>
<h2>l</h2>
<dl>
<dt><b>lamCompareDescriptiveOptions</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functionlamCompareDescriptiveOptions">lamCompareDescriptiveOptions()</a><br> Helper function to sort descriptive options in parseHTML().</dd>
<dt><b>lamdaemon</b></dt>
<dd>in file lamdaemon.inc, function <a href="modules/_lib---lamdaemon.inc.html#functionlamdaemon">lamdaemon()</a><br> Sends commands to lamdaemon script.</dd>
<dt><b>ldapPublicKey</b></dt>
<dd>in file ldapPublicKey.inc, class <a href="modules/ldapPublicKey.html">ldapPublicKey</a><br> Manages SSH public keys.</dd>
<dt><b>lamdaemon.inc</b></dt>
<dd>procedural page <a href="modules/_lib---lamdaemon.inc.html">lamdaemon.inc</a></dd>
<dt><b>ldapPublicKey.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---ldapPublicKey.inc.html">ldapPublicKey.inc</a></dd>
<dt><b>lmhash</b></dt>
<dd>in file createntlm.inc, method <a href="modules/smbHash.html#methodlmhash">smbHash::lmhash()</a><br> Calculates the LM hash of a given password.</dd>
<dt><b>load</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodload">sambaMungedDial::load()</a><br> function takes a base64-encoded sambaMungedDial</dd>
<dt><b>load_account</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#methodload_account">accountContainer::load_account()</a><br> Loads an LDAP account with the given DN.</dd>
<dt><b>load_attributes</b></dt>
<dd>in file fixed_ip.inc, method <a href="modules/fixed_ip.html#methodload_attributes">fixed_ip::load_attributes()</a><br> This function loads all needed LDAP attributes.</dd>
<dt><b>load_attributes</b></dt>
<dd>in file ddns.inc, method <a href="modules/ddns.html#methodload_attributes">ddns::load_attributes()</a><br> This function loads the LDAP attributes when an account should be loaded.</dd>
<dt><b>load_attributes</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodload_attributes">sambaSamAccount::load_attributes()</a><br> This function loads the LDAP attributes for this module.</dd>
<dt><b>load_attributes</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodload_attributes">posixAccount::load_attributes()</a><br> This function loads all needed LDAP attributes.</dd>
<dt><b>load_attributes</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodload_attributes">baseModule::load_attributes()</a><br> This function loads the LDAP attributes when an account should be loaded.</dd>
<dt><b>load_attributes</b></dt>
<dd>in file range.inc, method <a href="modules/range.html#methodload_attributes">range::load_attributes()</a><br> This function loads all needed LDAP attributes.</dd>
<dt><b>load_extension_parts</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodload_extension_parts">asteriskExtension::load_extension_parts()</a><br> Loads all related extension entries.</dd>
<dt><b>load_Messages</b></dt>
<dd>in file kolabUser.inc, method <a href="modules/kolabUser.html#methodload_Messages">kolabUser::load_Messages()</a><br> This function fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file account.inc, method <a href="modules/account.html#methodload_Messages">account::load_Messages()</a><br> This function fills the message array.</dd>
<dt><b>load_Messages</b></dt>
<dd>in file sambaDomain.inc, method <a href="modules/sambaDomain.html#methodload_Messages">sambaDomain::load_Messages()</a><br> This function fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodload_Messages">inetOrgPerson::load_Messages()</a><br> This function fills the message array.</dd>
<dt><b>load_Messages</b></dt>
<dd>in file range.inc, method <a href="modules/range.html#methodload_Messages">range::load_Messages()</a><br> This function fills the error message array with messages.</dd>
<dt><b>load_Messages</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methodload_Messages">quota::load_Messages()</a><br> this functin fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file nisnetgroup.inc, method <a href="modules/nisnetgroup.html#methodload_Messages">nisnetgroup::load_Messages()</a><br> This function fills the $messages variable with output messages from this module.</dd>
<dt><b>load_Messages</b></dt>
<dd>in file nisMailAlias.inc, method <a href="modules/nisMailAlias.html#methodload_Messages">nisMailAlias::load_Messages()</a><br> This function fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodload_Messages">posixAccount::load_Messages()</a><br> This function fills the error message array with messages.</dd>
<dt><b>load_Messages</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodload_Messages">posixGroup::load_Messages()</a><br> This function fills the $messages variable with output messages from this module.</dd>
<dt><b>load_Messages</b></dt>
<dd>in file inetLocalMailRecipient.inc, method <a href="modules/inetLocalMailRecipient.html#methodload_Messages">inetLocalMailRecipient::load_Messages()</a><br> This function fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file ieee802device.inc, method <a href="modules/ieee802Device.html#methodload_Messages">ieee802Device::load_Messages()</a><br> This function fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file ddns.inc, method <a href="modules/ddns.html#methodload_Messages">ddns::load_Messages()</a><br> This function fills the message array.</dd>
<dt><b>load_Messages</b></dt>
<dd>in file dhcp_settings.inc, method <a href="modules/dhcp_settings.html#methodload_Messages">dhcp_settings::load_Messages()</a><br> This function fills the message array.</dd>
<dt><b>load_Messages</b></dt>
<dd>in file imapAccess.inc, method <a href="modules/imapAccess.html#methodload_Messages">imapAccess::load_Messages()</a><br> This function fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file systemQuotas.inc, method <a href="modules/systemQuotas.html#methodload_Messages">systemQuotas::load_Messages()</a><br> This function fills the $messages variable with output messages from this module.</dd>
<dt><b>load_Messages</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodload_Messages">baseModule::load_Messages()</a><br> This function fills the $messages variable with output messages from this module.</dd>
<dt><b>load_Messages</b></dt>
<dd>in file authorizedServiceObject.inc, method <a href="modules/authorizedServiceObject.html#methodload_Messages">authorizedServiceObject::load_Messages()</a><br> This function fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodload_Messages">asteriskExtension::load_Messages()</a><br> This function fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file eduPerson.inc, method <a href="modules/eduPerson.html#methodload_Messages">eduPerson::load_Messages()</a><br> This function fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#methodload_Messages">shadowAccount::load_Messages()</a><br> This function builds up the message array.</dd>
<dt><b>load_Messages</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodload_Messages">sambaSamAccount::load_Messages()</a><br> this functin fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file sambaGroupMapping.inc, method <a href="modules/sambaGroupMapping.html#methodload_Messages">sambaGroupMapping::load_Messages()</a><br> this functin fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file hostObject.inc, method <a href="modules/hostObject.html#methodload_Messages">hostObject::load_Messages()</a><br> This function fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file asteriskAccount.inc, method <a href="modules/asteriskAccount.html#methodload_Messages">asteriskAccount::load_Messages()</a><br> This function fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file fixed_ip.inc, method <a href="modules/fixed_ip.html#methodload_Messages">fixed_ip::load_Messages()</a><br> This function fills the error message array with messages.</dd>
<dt><b>load_Messages</b></dt>
<dd>in file freeRadius.inc, method <a href="modules/freeRadius.html#methodload_Messages">freeRadius::load_Messages()</a><br> This function fills the error message array with messages</dd>
<dt><b>load_Messages</b></dt>
<dd>in file asteriskVoicemail.inc, method <a href="modules/asteriskVoicemail.html#methodload_Messages">asteriskVoicemail::load_Messages()</a><br> This function fills the error message array with messages</dd>
<dt><b>load_profile</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#methodload_profile">shadowAccount::load_profile()</a><br> Loads the values of an account profile into internal variables.</dd>
<dt><b>load_profile</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodload_profile">sambaSamAccount::load_profile()</a><br> Loads the values of an account profile into internal variables.</dd>
<dt><b>load_profile</b></dt>
<dd>in file systemQuotas.inc, method <a href="modules/systemQuotas.html#methodload_profile">systemQuotas::load_profile()</a><br> Loads the values of an account profile into internal variables.</dd>
<dt><b>load_profile</b></dt>
<dd>in file sambaGroupMapping.inc, method <a href="modules/sambaGroupMapping.html#methodload_profile">sambaGroupMapping::load_profile()</a><br> Loads the values of an account profile into internal variables.</dd>
<dt><b>load_profile</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodload_profile">inetOrgPerson::load_profile()</a><br> Loads the values of an account profile into internal variables.</dd>
<dt><b>load_profile</b></dt>
<dd>in file dhcp_settings.inc, method <a href="modules/dhcp_settings.html#methodload_profile">dhcp_settings::load_profile()</a><br> Loads the values of an account profile into internal variables.</dd>
<dt><b>load_profile</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodload_profile">baseModule::load_profile()</a><br> This function loads the values from an account profile to the module's internal data structures.</dd>
<dt><b>load_profile</b></dt>
<dd>in file authorizedServiceObject.inc, method <a href="modules/authorizedServiceObject.html#methodload_profile">authorizedServiceObject::load_profile()</a><br> Loads the values of an account profile into internal variables.</dd>
<dt><b>load_profile</b></dt>
<dd>in file eduPerson.inc, method <a href="modules/eduPerson.html#methodload_profile">eduPerson::load_profile()</a><br> Loads the values of an account profile into internal variables.</dd>
<dt><b>load_profile</b></dt>
<dd>in file freeRadius.inc, method <a href="modules/freeRadius.html#methodload_profile">freeRadius::load_profile()</a><br> Loads the values of an account profile into internal variables.</dd>
<dt><b>load_profile</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodload_profile">posixAccount::load_profile()</a><br> Loads the values of an account profile into internal variables.</dd>
<dt><b>load_profile</b></dt>
<dd>in file imapAccess.inc, method <a href="modules/imapAccess.html#methodload_profile">imapAccess::load_profile()</a><br> Loads the values of an account profile into internal variables.</dd>
<dt><b>load_profile</b></dt>
<dd>in file hostObject.inc, method <a href="modules/hostObject.html#methodload_profile">hostObject::load_profile()</a><br> Loads the values of an account profile into internal variables.</dd>
<dt><b>load_profile</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methodload_profile">quota::load_profile()</a><br> Loads the values of an account profile into internal variables.</dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="m"></a>
<div>
<h2>m</h2>
<dl>
<dt><b>$manageCnAttribute</b></dt>
<dd>in file posixGroup.inc, variable <a href="modules/posixGroup.html#var$manageCnAttribute">posixGroup::$manageCnAttribute</a><br> specifies if the cn attribute should be managed by this module</dd>
<dt><b>$manageDescriptionAttribute</b></dt>
<dd>in file posixGroup.inc, variable <a href="modules/posixGroup.html#var$manageDescriptionAttribute">posixGroup::$manageDescriptionAttribute</a><br> specifies if the description attribute should be managed by this module</dd>
<dt><b>$maxPwdAge</b></dt>
<dd>in file account.inc, variable <a href="modules/samba3domain.html#var$maxPwdAge">samba3domain::$maxPwdAge</a><br> seconds after the password must be changed</dd>
<dt><b>$messages</b></dt>
<dd>in file baseModule.inc, variable <a href="modules/baseModule.html#var$messages">baseModule::$messages</a><br> contains all error messages of a module</dd>
<dt><b>$meta</b></dt>
<dd>in file baseModule.inc, variable <a href="modules/baseModule.html#var$meta">baseModule::$meta</a><br> includes all meta data provided by the sub class</dd>
<dt><b>$minPwdAge</b></dt>
<dd>in file account.inc, variable <a href="modules/samba3domain.html#var$minPwdAge">samba3domain::$minPwdAge</a><br> seconds after the password can be changed</dd>
<dt><b>$moduleSettings</b></dt>
<dd>in file baseModule.inc, variable <a href="modules/baseModule.html#var$moduleSettings">baseModule::$moduleSettings</a><br> configuration settings of all modules</dd>
<dt><b>modules.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules.inc.html">modules.inc</a></dd>
<dt><b>managesPasswordAttributes</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodmanagesPasswordAttributes">inetOrgPerson::managesPasswordAttributes()</a><br> This method specifies if a module manages password attributes.</dd>
<dt><b>managesPasswordAttributes</b></dt>
<dd>in file asteriskAccount.inc, method <a href="modules/asteriskAccount.html#methodmanagesPasswordAttributes">asteriskAccount::managesPasswordAttributes()</a><br> This method specifies if a module manages password attributes.</dd>
<dt><b>managesPasswordAttributes</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#methodmanagesPasswordAttributes">shadowAccount::managesPasswordAttributes()</a><br> This method specifies if a module manages password attributes.</dd>
<dt><b>managesPasswordAttributes</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodmanagesPasswordAttributes">sambaSamAccount::managesPasswordAttributes()</a><br> This method specifies if a module manages password attributes.</dd>
<dt><b>managesPasswordAttributes</b></dt>
<dd>in file modules.inc, method <a href="modules/passwordService.html#methodmanagesPasswordAttributes">passwordService::managesPasswordAttributes()</a><br> This method specifies if a module manages password attributes. The module alias will then appear as option in the GUI.</dd>
<dt><b>managesPasswordAttributes</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodmanagesPasswordAttributes">posixAccount::managesPasswordAttributes()</a><br> This method specifies if a module manages password attributes.</dd>
<dt><b>managesPasswordAttributes</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodmanagesPasswordAttributes">posixGroup::managesPasswordAttributes()</a><br> This method specifies if a module manages password attributes.</dd>
<dt><b>managesPasswordAttributes</b></dt>
<dd>in file asteriskVoicemail.inc, method <a href="modules/asteriskVoicemail.html#methodmanagesPasswordAttributes">asteriskVoicemail::managesPasswordAttributes()</a><br> This method specifies if a module manages password attributes.</dd>
<dt><b>module_complete</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodmodule_complete">posixAccount::module_complete()</a><br> This functions is used to check if all settings for this module have been made.</dd>
<dt><b>module_complete</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodmodule_complete">sambaSamAccount::module_complete()</a><br> This function is used to check if all settings for this module have been made.</dd>
<dt><b>module_complete</b></dt>
<dd>in file sambaGroupMapping.inc, method <a href="modules/sambaGroupMapping.html#methodmodule_complete">sambaGroupMapping::module_complete()</a><br> This function is used to check if all settings for this module have been made.</dd>
<dt><b>module_complete</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodmodule_complete">posixGroup::module_complete()</a><br> This functions is used to check if all settings for this module have been made.</dd>
<dt><b>module_complete</b></dt>
<dd>in file kolabUser.inc, method <a href="modules/kolabUser.html#methodmodule_complete">kolabUser::module_complete()</a><br> This function returns true if all needed settings are done.</dd>
<dt><b>module_complete</b></dt>
<dd>in file asteriskVoicemail.inc, method <a href="modules/asteriskVoicemail.html#methodmodule_complete">asteriskVoicemail::module_complete()</a><br> This functions returns true if all needed settings are done.</dd>
<dt><b>module_complete</b></dt>
<dd>in file account.inc, method <a href="modules/account.html#methodmodule_complete">account::module_complete()</a><br> This functions returns true if all needed settings are done.</dd>
<dt><b>module_complete</b></dt>
<dd>in file nisnetgroup.inc, method <a href="modules/nisnetgroup.html#methodmodule_complete">nisnetgroup::module_complete()</a><br> This functions is used to check if all settings for this module have been made.</dd>
<dt><b>module_complete</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodmodule_complete">baseModule::module_complete()</a><br> This function is used to check if all settings for this module have been made.</dd>
<dt><b>module_complete</b></dt>
<dd>in file ddns.inc, method <a href="modules/ddns.html#methodmodule_complete">ddns::module_complete()</a><br> This functions returns true if all needed settings are done.</dd>
<dt><b>module_complete</b></dt>
<dd>in file eduPerson.inc, method <a href="modules/eduPerson.html#methodmodule_complete">eduPerson::module_complete()</a><br> This functions return true if all needed settings are done.</dd>
<dt><b>module_complete</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodmodule_complete">inetOrgPerson::module_complete()</a><br> This functions return true if all needed settings are done.</dd>
<dt><b>module_ready</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodmodule_ready">sambaSamAccount::module_ready()</a><br> This function is used to check if this module page can be displayed.</dd>
<dt><b>module_ready</b></dt>
<dd>in file sambaGroupMapping.inc, method <a href="modules/sambaGroupMapping.html#methodmodule_ready">sambaGroupMapping::module_ready()</a><br> This function is used to check if this module page can be displayed.</dd>
<dt><b>module_ready</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodmodule_ready">baseModule::module_ready()</a><br> This function is used to check if this module page can be displayed.</dd>
<dt><b>module_ready</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methodmodule_ready">quota::module_ready()</a><br> This function is used to check if this module page can be displayed.</dd>
<dt><b>moveExtentionToNewSuffix</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodmoveExtentionToNewSuffix">asteriskExtension::moveExtentionToNewSuffix()</a><br> Get list of all applications for given extension and move it into new suffix.</dd>
<dt><b>munge</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodmunge">sambaMungedDial::munge()</a><br> Setup parameter given by paramName to MungedDial-Format</dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="n"></a>
<div>
<h2>n</h2>
<dl>
<dt><b>$name</b></dt>
<dd>in file account.inc, variable <a href="modules/samba3domain.html#var$name">samba3domain::$name</a><br> Domain name</dd>
<dt><b>$nextGroupRID</b></dt>
<dd>in file account.inc, variable <a href="modules/samba3domain.html#var$nextGroupRID">samba3domain::$nextGroupRID</a><br> Next group RID</dd>
<dt><b>$nextRID</b></dt>
<dd>in file account.inc, variable <a href="modules/samba3domain.html#var$nextRID">samba3domain::$nextRID</a><br> Next RID</dd>
<dt><b>$nextUserRID</b></dt>
<dd>in file account.inc, variable <a href="modules/samba3domain.html#var$nextUserRID">samba3domain::$nextUserRID</a><br> Next user RID</dd>
<dt><b>nisMailAlias.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---nisMailAlias.inc.html">nisMailAlias.inc</a></dd>
<dt><b>nisnetgroup.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---nisnetgroup.inc.html">nisnetgroup.inc</a></dd>
<dt><b>new_account</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#methodnew_account">accountContainer::new_account()</a><br> This function will prepare the object for a new account.</dd>
<dt><b>nisMailAlias</b></dt>
<dd>in file nisMailAlias.inc, class <a href="modules/nisMailAlias.html">nisMailAlias</a><br> Provides NIS mail alias management.</dd>
<dt><b>nisnetgroup</b></dt>
<dd>in file nisnetgroup.inc, class <a href="modules/nisnetgroup.html">nisnetgroup</a><br> Manages entries based on the object class nisNetgroup.</dd>
<dt><b>nthash</b></dt>
<dd>in file createntlm.inc, method <a href="modules/smbHash.html#methodnthash">smbHash::nthash()</a><br> Calculates the NT hash of a given password.</dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="o"></a>
<div>
<h2>o</h2>
<dl>
<dt><b>$orig</b></dt>
<dd>in file baseModule.inc, variable <a href="modules/baseModule.html#var$orig">baseModule::$orig</a><br> contains all ldap attributes which are loaded from ldap</dd>
<dt><b>$orig_ips</b></dt>
<dd>in file fixed_ip.inc, variable <a href="modules/fixed_ip.html#var$orig_ips">fixed_ip::$orig_ips</a></dd>
<dt><b>$overlapd</b></dt>
<dd>in file fixed_ip.inc, variable <a href="modules/fixed_ip.html#var$overlapd">fixed_ip::$overlapd</a></dd>
<dt><b>$overlaped</b></dt>
<dd>in file range.inc, variable <a href="modules/range.html#var$overlaped">range::$overlaped</a></dd>
<dt><b>overlapd_ip</b></dt>
<dd>in file fixed_ip.inc, method <a href="modules/fixed_ip.html#methodoverlapd_ip">fixed_ip::overlapd_ip()</a><br> Checked, if ips are overlapd.</dd>
<dt><b>overlaped_range</b></dt>
<dd>in file range.inc, method <a href="modules/range.html#methodoverlaped_range">range::overlaped_range()</a><br> Checked, if Ranges are overlaped.</dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="p"></a>
<div>
<h2>p</h2>
<dl>
<dt><b>$processed</b></dt>
<dd>in file range.inc, variable <a href="modules/range.html#var$processed">range::$processed</a></dd>
<dt><b>$processed</b></dt>
<dd>in file fixed_ip.inc, variable <a href="modules/fixed_ip.html#var$processed">fixed_ip::$processed</a></dd>
<dt><b>posixAccount.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---posixAccount.inc.html">posixAccount.inc</a></dd>
<dt><b>posixGroup.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---posixGroup.inc.html">posixGroup.inc</a></dd>
<dt><b>parseHtml</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functionparseHtml">parseHtml()</a><br> Takes a list of meta-HTML elements and prints the equivalent HTML output.</dd>
<dt><b>passwordChangeRequested</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodpasswordChangeRequested">posixGroup::passwordChangeRequested()</a><br> This function is called whenever the password should be changed. Account modules must change their password attributes only if the modules list contains their module name.</dd>
<dt><b>passwordChangeRequested</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#methodpasswordChangeRequested">shadowAccount::passwordChangeRequested()</a><br> This function is called whenever the password should be changed. Account modules must change their password attributes only if the modules list contains their module name.</dd>
<dt><b>passwordChangeRequested</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodpasswordChangeRequested">posixAccount::passwordChangeRequested()</a><br> This function is called whenever the password should be changed. Account modules must change their password attributes only if the modules list contains their module name.</dd>
<dt><b>passwordChangeRequested</b></dt>
<dd>in file asteriskVoicemail.inc, method <a href="modules/asteriskVoicemail.html#methodpasswordChangeRequested">asteriskVoicemail::passwordChangeRequested()</a><br> This function is called whenever the password should be changed. Account modules must change their password attributes only if the modules list contains their module name.</dd>
<dt><b>passwordChangeRequested</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodpasswordChangeRequested">inetOrgPerson::passwordChangeRequested()</a><br> This function is called whenever the password should be changed. Account modules must change their password attributes only if the modules list contains their module name.</dd>
<dt><b>passwordChangeRequested</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodpasswordChangeRequested">sambaSamAccount::passwordChangeRequested()</a><br> This function is called whenever the password should be changed. Account modules must change their password attributes only if the modules list contains their module name.</dd>
<dt><b>passwordChangeRequested</b></dt>
<dd>in file modules.inc, method <a href="modules/passwordService.html#methodpasswordChangeRequested">passwordService::passwordChangeRequested()</a><br> This function is called whenever the password should be changed. Account modules must change their password attributes only if the modules list contains their module name.</dd>
<dt><b>passwordChangeRequested</b></dt>
<dd>in file asteriskAccount.inc, method <a href="modules/asteriskAccount.html#methodpasswordChangeRequested">asteriskAccount::passwordChangeRequested()</a><br> This function is called whenever the password should be changed. Account modules must change their password attributes only if the modules list contains their module name.</dd>
<dt><b>passwordService</b></dt>
<dd>in file modules.inc, class <a href="modules/passwordService.html">passwordService</a><br> This interface needs to be implemented by all account modules which manage passwords.</dd>
<dt><b>posixAccount</b></dt>
<dd>in file posixAccount.inc, class <a href="modules/posixAccount.html">posixAccount</a><br> Manages the object class "posixAccount" for users and hosts.</dd>
<dt><b>posixGroup</b></dt>
<dd>in file posixGroup.inc, class <a href="modules/posixGroup.html">posixGroup</a><br> Manages the object class "posixGroup" for groups.</dd>
<dt><b>postDeleteActions</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodpostDeleteActions">asteriskExtension::postDeleteActions()</a><br> Runs ufter main deltete procedure was done and do postmorten for other parts of extension wtith priority > 1.</dd>
<dt><b>postDeleteActions</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodpostDeleteActions">baseModule::postDeleteActions()</a><br> Allows the module to run commands after the LDAP entry is deleted.</dd>
<dt><b>postModifyActions</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodpostModifyActions">posixAccount::postModifyActions()</a></dd>
<dt><b>postModifyActions</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methodpostModifyActions">quota::postModifyActions()</a></dd>
<dt><b>postModifyActions</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodpostModifyActions">baseModule::postModifyActions()</a><br> Allows the module to run commands after the LDAP entry is changed or created.</dd>
<dt><b>postModifyActions</b></dt>
<dd>in file fixed_ip.inc, method <a href="modules/fixed_ip.html#methodpostModifyActions">fixed_ip::postModifyActions()</a><br> This function is overwritten because the fixed IPs are set after the ldap_add command.</dd>
<dt><b>postModifySelfService</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodpostModifySelfService">baseModule::postModifySelfService()</a><br> Allows the module to run commands after the LDAP entry is changed or created.</dd>
<dt><b>preDeleteActions</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methodpreDeleteActions">quota::preDeleteActions()</a><br> Allows the module to run commands before the LDAP entry is deleted.</dd>
<dt><b>preDeleteActions</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodpreDeleteActions">baseModule::preDeleteActions()</a><br> Allows the module to run commands before the LDAP entry is deleted.</dd>
<dt><b>preDeleteActions</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodpreDeleteActions">posixAccount::preDeleteActions()</a><br> Allows the module to run commands before the LDAP entry is deleted.</dd>
<dt><b>preModifyActions</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodpreModifyActions">baseModule::preModifyActions()</a><br> Allows the module to run commands before the LDAP entry is changed or created.</dd>
<dt><b>preModifySelfService</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodpreModifySelfService">baseModule::preModifySelfService()</a><br> Allows the module to run commands before the LDAP entry is changed or created.</dd>
<dt><b>printHelpLink</b></dt>
<dd>in file modules.inc, function <a href="modules/_lib---modules.inc.html#functionprintHelpLink">printHelpLink()</a><br> Prints a LAM help link.</dd>
<dt><b>processExtensionRows</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodprocessExtensionRows">asteriskExtension::processExtensionRows()</a><br> Processes the rule data.</dd>
<dt><b>processPriorityChange</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodprocessPriorityChange">asteriskExtension::processPriorityChange()</a><br> Reorders the rules if the user clicked on a move button.</dd>
<dt><b>processSingleExtension</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodprocessSingleExtension">asteriskExtension::processSingleExtension()</a><br> Fills the fileds of a single extension row.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file nisMailAlias.inc, method <a href="modules/nisMailAlias.html#methodprocess_attributes">nisMailAlias::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file sambaDomain.inc, method <a href="modules/sambaDomain.html#methodprocess_attributes">sambaDomain::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file ldapPublicKey.inc, method <a href="modules/ldapPublicKey.html#methodprocess_attributes">ldapPublicKey::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodprocess_attributes">posixGroup::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file range.inc, method <a href="modules/range.html#methodprocess_attributes">range::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodprocess_attributes">posixAccount::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file sambaGroupMapping.inc, method <a href="modules/sambaGroupMapping.html#methodprocess_attributes">sambaGroupMapping::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file nisnetgroup.inc, method <a href="modules/nisnetgroup.html#methodprocess_attributes">nisnetgroup::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file ieee802device.inc, method <a href="modules/ieee802Device.html#methodprocess_attributes">ieee802Device::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodprocess_attributes">baseModule::process_attributes()</a><br> This function processes user input.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file ddns.inc, method <a href="modules/ddns.html#methodprocess_attributes">ddns::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file dhcp_settings.inc, method <a href="modules/dhcp_settings.html#methodprocess_attributes">dhcp_settings::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file eduPerson.inc, method <a href="modules/eduPerson.html#methodprocess_attributes">eduPerson::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file authorizedServiceObject.inc, method <a href="modules/authorizedServiceObject.html#methodprocess_attributes">authorizedServiceObject::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file asteriskVoicemail.inc, method <a href="modules/asteriskVoicemail.html#methodprocess_attributes">asteriskVoicemail::process_attributes()</a><br> Write variables into object and do some regex checks</dd>
<dt><b>process_attributes</b></dt>
<dd>in file asteriskAccount.inc, method <a href="modules/asteriskAccount.html#methodprocess_attributes">asteriskAccount::process_attributes()</a><br> Write variables into object and do some regex checks</dd>
<dt><b>process_attributes</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodprocess_attributes">asteriskExtension::process_attributes()</a><br> Writes variables into object and does some regex checks.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file systemQuotas.inc, method <a href="modules/systemQuotas.html#methodprocess_attributes">systemQuotas::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file account.inc, method <a href="modules/account.html#methodprocess_attributes">account::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file fixed_ip.inc, method <a href="modules/fixed_ip.html#methodprocess_attributes">fixed_ip::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file inetLocalMailRecipient.inc, method <a href="modules/inetLocalMailRecipient.html#methodprocess_attributes">inetLocalMailRecipient::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file imapAccess.inc, method <a href="modules/imapAccess.html#methodprocess_attributes">imapAccess::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodprocess_attributes">inetOrgPerson::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodprocess_attributes">sambaSamAccount::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file kolabUser.inc, method <a href="modules/kolabUser.html#methodprocess_attributes">kolabUser::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methodprocess_attributes">quota::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file hostObject.inc, method <a href="modules/hostObject.html#methodprocess_attributes">hostObject::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file freeRadius.inc, method <a href="modules/freeRadius.html#methodprocess_attributes">freeRadius::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#methodprocess_attributes">shadowAccount::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes</b></dt>
<dd>in file generalInformation.inc, method <a href="modules/generalInformation.html#methodprocess_attributes">generalInformation::process_attributes()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_attributes_account</b></dt>
<dd>in file ddns.inc, method <a href="modules/ddns.html#methodprocess_attributes_account">ddns::process_attributes_account()</a><br> Process for account</dd>
<dt><b>process_attributes_mainSettings</b></dt>
<dd>in file ddns.inc, method <a href="modules/ddns.html#methodprocess_attributes_mainSettings">ddns::process_attributes_mainSettings()</a><br> Process for mainsettings</dd>
<dt><b>process_deleteUser</b></dt>
<dd>in file kolabUser.inc, method <a href="modules/kolabUser.html#methodprocess_deleteUser">kolabUser::process_deleteUser()</a><br> Write variables into object and do some regex checks</dd>
<dt><b>process_expiration</b></dt>
<dd>in file freeRadius.inc, method <a href="modules/freeRadius.html#methodprocess_expiration">freeRadius::process_expiration()</a><br> Processes user input of the time selection page.</dd>
<dt><b>process_expire</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#methodprocess_expire">shadowAccount::process_expire()</a><br> Processes user input of the expiration page.</dd>
<dt><b>process_group</b></dt>
<dd>in file nisnetgroup.inc, method <a href="modules/nisnetgroup.html#methodprocess_group">nisnetgroup::process_group()</a><br> Processes user input of the group selection page.</dd>
<dt><b>process_group</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodprocess_group">posixAccount::process_group()</a><br> Processes user input of the group selection page.</dd>
<dt><b>process_homedir</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodprocess_homedir">posixAccount::process_homedir()</a><br> Processes user input of the homedir check page.</dd>
<dt><b>process_logonHours</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodprocess_logonHours">sambaSamAccount::process_logonHours()</a><br> Processes user input of the logon hours page.</dd>
<dt><b>process_manager</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodprocess_manager">inetOrgPerson::process_manager()</a><br> Processes user input of the manager page.</dd>
<dt><b>process_photo</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodprocess_photo">inetOrgPerson::process_photo()</a><br> Sets a new photo.</dd>
<dt><b>process_sambaUserWorkstations</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodprocess_sambaUserWorkstations">sambaSamAccount::process_sambaUserWorkstations()</a><br> Processes user input of the primary module page.</dd>
<dt><b>process_select</b></dt>
<dd>in file nisnetgroup.inc, method <a href="modules/nisnetgroup.html#methodprocess_select">nisnetgroup::process_select()</a><br> Processes user input of the host/user selection page.</dd>
<dt><b>process_terminalServer</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodprocess_terminalServer">sambaSamAccount::process_terminalServer()</a><br> Processes user input of the terminal server page.</dd>
<dt><b>process_time</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodprocess_time">sambaSamAccount::process_time()</a><br> Processes user input of the time selection page.</dd>
<dt><b>process_user</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodprocess_user">asteriskExtension::process_user()</a><br> Processes user input of the user selection page.</dd>
<dt><b>process_user</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodprocess_user">posixGroup::process_user()</a><br> Processes user input of the user selection page.</dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="q"></a>
<div>
<h2>q</h2>
<dl>
<dt><b>quota.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---quota.inc.html">quota.inc</a></dd>
<dt><b>quota</b></dt>
<dd>in file quota.inc, class <a href="modules/quota.html">quota</a><br> Manages quotas for users and groups.</dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="r"></a>
<div>
<h2>r</h2>
<dl>
<dt><b>$ranges</b></dt>
<dd>in file range.inc, variable <a href="modules/range.html#var$ranges">range::$ranges</a></dd>
<dt><b>$rdn</b></dt>
<dd>in file modules.inc, variable <a href="modules/accountContainer.html#var$rdn">accountContainer::$rdn</a><br> RDN attribute of this account</dd>
<dt><b>$RIDbase</b></dt>
<dd>in file account.inc, variable <a href="modules/samba3domain.html#var$RIDbase">samba3domain::$RIDbase</a><br> RID base to calculate RIDs, default 1000</dd>
<dt><b>range.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---range.inc.html">range.inc</a></dd>
<dt><b>range</b></dt>
<dd>in file range.inc, class <a href="modules/range.html">range</a><br> Manages DHCP ranges for DHCP server.</dd>
<dt><b>readTime</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodreadTime">sambaMungedDial::readTime()</a><br> readTime</dd>
<dt><b>reload_ips</b></dt>
<dd>in file fixed_ip.inc, method <a href="modules/fixed_ip.html#methodreload_ips">fixed_ip::reload_ips()</a><br> Adapt the fixed ip with the subnet.</dd>
<dt><b>reload_ranges</b></dt>
<dd>in file range.inc, method <a href="modules/range.html#methodreload_ranges">range::reload_ranges()</a><br> Adapt the Ranges with the subnet.</dd>
<dt><b>renderQuotasForMailbox</b></dt>
<dd>in file imapAccess.inc, method <a href="modules/imapAccess.html#methodrenderQuotasForMailbox">imapAccess::renderQuotasForMailbox()</a><br> Display the mailbox quota.</dd>
<dt><b>render_extension</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodrender_extension">asteriskExtension::render_extension()</a><br> Generates the meta HTML for a single rule.</dd>
<dt><b>render_extensions_by_priority</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodrender_extensions_by_priority">asteriskExtension::render_extensions_by_priority()</a><br> Generates the meta HTML for the rules.</dd>
<dt><b>render_exten_owners_set_controls</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodrender_exten_owners_set_controls">asteriskExtension::render_exten_owners_set_controls()</a><br> This function prints management elements to manipulate owners of an extension.</dd>
<dt><b>replaceSpecialChars</b></dt>
<dd>in file quota.inc, method <a href="modules/quota.html#methodreplaceSpecialChars">quota::replaceSpecialChars()</a><br> Replaces special characters in HTML name values.</dd>
<dt><b>reset_overlapd_ip</b></dt>
<dd>in file fixed_ip.inc, method <a href="modules/fixed_ip.html#methodreset_overlapd_ip">fixed_ip::reset_overlapd_ip()</a><br> Reset the overlapd_range() function</dd>
<dt><b>reset_overlaped_range</b></dt>
<dd>in file range.inc, method <a href="modules/range.html#methodreset_overlaped_range">range::reset_overlaped_range()</a><br> Reset the overlaped_range() function</dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="s"></a>
<div>
<h2>s</h2>
<dl>
<dt><b>$selfServiceSettings</b></dt>
<dd>in file baseModule.inc, variable <a href="modules/baseModule.html#var$selfServiceSettings">baseModule::$selfServiceSettings</a><br> self service settings of all modules</dd>
<dt><b>$SID</b></dt>
<dd>in file account.inc, variable <a href="modules/samba3domain.html#var$SID">samba3domain::$SID</a><br> Domain SID</dd>
<dt><b>$subnet</b></dt>
<dd>in file range.inc, variable <a href="modules/range.html#var$subnet">range::$subnet</a></dd>
<dt><b>sambaDomain.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---sambaDomain.inc.html">sambaDomain.inc</a></dd>
<dt><b>sambaGroupMapping.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---sambaGroupMapping.inc.html">sambaGroupMapping.inc</a></dd>
<dt><b>sambaMungedDial.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---sambaSamAccount---sambaMungedDial.inc.html">sambaMungedDial.inc</a></dd>
<dt><b>sambaSamAccount.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---sambaSamAccount.inc.html">sambaSamAccount.inc</a></dd>
<dt><b>shadowAccount.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---shadowAccount.inc.html">shadowAccount.inc</a></dd>
<dt><b>systemQuotas.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---systemQuotas.inc.html">systemQuotas.inc</a></dd>
<dt><b>samba3domain</b></dt>
<dd>in file account.inc, class <a href="modules/samba3domain.html">samba3domain</a><br> Represents a Samba 3 domain entry</dd>
<dt><b>sambaDomain</b></dt>
<dd>in file sambaDomain.inc, class <a href="modules/sambaDomain.html">sambaDomain</a><br> Manages Samba 3 domain entries.</dd>
<dt><b>sambaGroupMapping</b></dt>
<dd>in file sambaGroupMapping.inc, class <a href="modules/sambaGroupMapping.html">sambaGroupMapping</a><br> Manages the object class "sambaGroupMapping" for groups.</dd>
<dt><b>sambaMungedDial</b></dt>
<dd>in file sambaMungedDial.inc, class <a href="modules/sambaMungedDial.html">sambaMungedDial</a><br> Manages terminal server settings for Samba 3.</dd>
<dt><b>sambaSamAccount</b></dt>
<dd>in file sambaSamAccount.inc, class <a href="modules/sambaSamAccount.html">sambaSamAccount</a><br> Manages the object class "sambaSamAccount" for users and hosts.</dd>
<dt><b>SAMBA_MUNGEDDIAL_FILEHEADER</b></dt>
<dd>in file sambaMungedDial.inc, constant <a href="modules/_lib---modules---sambaSamAccount---sambaMungedDial.inc.html#defineSAMBA_MUNGEDDIAL_FILEHEADER">SAMBA_MUNGEDDIAL_FILEHEADER</a><br> File header</dd>
<dt><b>SAMBA_MUNGEDDIAL_FILEHEADER_OLD</b></dt>
<dd>in file sambaMungedDial.inc, constant <a href="modules/_lib---modules---sambaSamAccount---sambaMungedDial.inc.html#defineSAMBA_MUNGEDDIAL_FILEHEADER_OLD">SAMBA_MUNGEDDIAL_FILEHEADER_OLD</a><br> File header for old format.</dd>
<dt><b>save_account</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#methodsave_account">accountContainer::save_account()</a><br> This function will save an account to the LDAP database.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodsave_attributes">posixAccount::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#methodsave_attributes">shadowAccount::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodsave_attributes">posixGroup::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file sambaGroupMapping.inc, method <a href="modules/sambaGroupMapping.html#methodsave_attributes">sambaGroupMapping::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodsave_attributes">sambaSamAccount::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file nisnetgroup.inc, method <a href="modules/nisnetgroup.html#methodsave_attributes">nisnetgroup::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodsave_attributes">asteriskExtension::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file range.inc, method <a href="modules/range.html#methodsave_attributes">range::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file account.inc, method <a href="modules/account.html#methodsave_attributes">account::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file kolabUser.inc, method <a href="modules/kolabUser.html#methodsave_attributes">kolabUser::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file baseModule.inc, method <a href="modules/baseModule.html#methodsave_attributes">baseModule::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodsave_attributes">inetOrgPerson::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file hostObject.inc, method <a href="modules/hostObject.html#methodsave_attributes">hostObject::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file dhcp_settings.inc, method <a href="modules/dhcp_settings.html#methodsave_attributes">dhcp_settings::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file asteriskAccount.inc, method <a href="modules/asteriskAccount.html#methodsave_attributes">asteriskAccount::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file asteriskVoicemail.inc, method <a href="modules/asteriskVoicemail.html#methodsave_attributes">asteriskVoicemail::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file authorizedServiceObject.inc, method <a href="modules/authorizedServiceObject.html#methodsave_attributes">authorizedServiceObject::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file nisMailAlias.inc, method <a href="modules/nisMailAlias.html#methodsave_attributes">nisMailAlias::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_attributes</b></dt>
<dd>in file fixed_ip.inc, method <a href="modules/fixed_ip.html#methodsave_attributes">fixed_ip::save_attributes()</a><br> Returns a list of modifications which have to be made to the LDAP account.</dd>
<dt><b>save_module_attributes</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#methodsave_module_attributes">accountContainer::save_module_attributes()</a><br> This function checks which LDAP attributes have changed while the account was edited.</dd>
<dt><b>setBrokenConn</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodsetBrokenConn">sambaMungedDial::setBrokenConn()</a><br> sets Broken-Connection value: disconnect/reset</dd>
<dt><b>setConnectClientDrives</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodsetConnectClientDrives">sambaMungedDial::setConnectClientDrives()</a><br> sets connect-client-drive-at-logon value: enabled/disabled</dd>
<dt><b>setConnectClientPrinters</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodsetConnectClientPrinters">sambaMungedDial::setConnectClientPrinters()</a><br> sets connect-client-printers-at-logon value: enabled/disabled</dd>
<dt><b>setCtxMaxConnectionTimeF</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodsetCtxMaxConnectionTimeF">sambaMungedDial::setCtxMaxConnectionTimeF()</a><br> SMARTY: sets the checkbox "Connection" to unchecked</dd>
<dt><b>setCtxMaxDisconnectionTimeF</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodsetCtxMaxDisconnectionTimeF">sambaMungedDial::setCtxMaxDisconnectionTimeF()</a><br> SMARTY: sets the checkbox "Disconnection" to unchecked</dd>
<dt><b>setCtxMaxIdleTimeF</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodsetCtxMaxIdleTimeF">sambaMungedDial::setCtxMaxIdleTimeF()</a><br> SMARTY: sets the checkbox "Idle" to unchecked</dd>
<dt><b>setDefaultExtensionOwner</b></dt>
<dd>in file asteriskExtension.inc, method <a href="modules/asteriskExtension.html#methodsetDefaultExtensionOwner">asteriskExtension::setDefaultExtensionOwner()</a><br> Set extension owner as current logged in user.</dd>
<dt><b>setDefaultPrinter</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodsetDefaultPrinter">sambaMungedDial::setDefaultPrinter()</a><br> sets set-client-printer-to-default value: enabled/disabled</dd>
<dt><b>setExpirationDate</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#methodsetExpirationDate">shadowAccount::setExpirationDate()</a><br> Sets the expiration date of this account.</dd>
<dt><b>setExpirationDate</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodsetExpirationDate">sambaSamAccount::setExpirationDate()</a><br> Sets the expiration date of this account.</dd>
<dt><b>setInheritMode</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodsetInheritMode">sambaMungedDial::setInheritMode()</a><br> sets Inherit-config-from-client value: enabled/disabled</dd>
<dt><b>setNewPassword</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#methodsetNewPassword">accountContainer::setNewPassword()</a><br> Sets the new password in all selected account modules.</dd>
<dt><b>setReConn</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodsetReConn">sambaMungedDial::setReConn()</a><br> sets Reconnection value: from any client/from previous client only</dd>
<dt><b>setShadow</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodsetShadow">sambaMungedDial::setShadow()</a><br> sets shadow value</dd>
<dt><b>setTsLogin</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodsetTsLogin">sambaMungedDial::setTsLogin()</a><br> Sets Terminal-Server-Login value: enabled/disabled</dd>
<dt><b>shadowAccount</b></dt>
<dd>in file shadowAccount.inc, class <a href="modules/shadowAccount.html">shadowAccount</a><br> Manages the object class "shadowAccount" for users.</dd>
<dt><b>smbHash</b></dt>
<dd>in file createntlm.inc, class <a href="modules/smbHash.html">smbHash</a><br> Calculates NT and LM hashes.</dd>
<dt><b>sortModules</b></dt>
<dd>in file modules.inc, method <a href="modules/accountContainer.html#methodsortModules">accountContainer::sortModules()</a><br> Sorts the module buttons for the account page.</dd>
<dt><b>strhex</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodstrhex">sambaMungedDial::strhex()</a><br> strhex</dd>
<dt><b>supportsForcePasswordChange</b></dt>
<dd>in file shadowAccount.inc, method <a href="modules/shadowAccount.html#methodsupportsForcePasswordChange">shadowAccount::supportsForcePasswordChange()</a><br> Specifies if this module supports to force that a user must change his password on next login.</dd>
<dt><b>supportsForcePasswordChange</b></dt>
<dd>in file asteriskAccount.inc, method <a href="modules/asteriskAccount.html#methodsupportsForcePasswordChange">asteriskAccount::supportsForcePasswordChange()</a><br> Specifies if this module supports to force that a user must change his password on next login.</dd>
<dt><b>supportsForcePasswordChange</b></dt>
<dd>in file inetOrgPerson.inc, method <a href="modules/inetOrgPerson.html#methodsupportsForcePasswordChange">inetOrgPerson::supportsForcePasswordChange()</a><br> Specifies if this module supports to force that a user must change his password on next login.</dd>
<dt><b>supportsForcePasswordChange</b></dt>
<dd>in file asteriskVoicemail.inc, method <a href="modules/asteriskVoicemail.html#methodsupportsForcePasswordChange">asteriskVoicemail::supportsForcePasswordChange()</a><br> Specifies if this module supports to force that a user must change his password on next login.</dd>
<dt><b>supportsForcePasswordChange</b></dt>
<dd>in file sambaSamAccount.inc, method <a href="modules/sambaSamAccount.html#methodsupportsForcePasswordChange">sambaSamAccount::supportsForcePasswordChange()</a><br> Specifies if this module supports to force that a user must change his password on next login.</dd>
<dt><b>supportsForcePasswordChange</b></dt>
<dd>in file modules.inc, method <a href="modules/passwordService.html#methodsupportsForcePasswordChange">passwordService::supportsForcePasswordChange()</a><br> Specifies if this module supports to force that a user must change his password on next login.</dd>
<dt><b>supportsForcePasswordChange</b></dt>
<dd>in file posixAccount.inc, method <a href="modules/posixAccount.html#methodsupportsForcePasswordChange">posixAccount::supportsForcePasswordChange()</a><br> Specifies if this module supports to force that a user must change his password on next login.</dd>
<dt><b>supportsForcePasswordChange</b></dt>
<dd>in file posixGroup.inc, method <a href="modules/posixGroup.html#methodsupportsForcePasswordChange">posixGroup::supportsForcePasswordChange()</a><br> Specifies if this module supports to force that a user must change his password on next login.</dd>
<dt><b>systemQuotas</b></dt>
<dd>in file systemQuotas.inc, class <a href="modules/systemQuotas.html">systemQuotas</a><br> Manages user quotas with the object class systemQuotas.</dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<hr />
<a name="t"></a>
<div>
<h2>t</h2>
<dl>
<dt><b>to8bit</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodto8bit">sambaMungedDial::to8bit()</a><br> to8bit</dd>
</dl>
</div>
<a href="elementindex_modules.html#top">top</a><br>
<div class="credit">
<hr />
Documentation generated on Sun, 25 Mar 2012 19:35:18 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.1</a>
</div>
</td></tr></table>
</td>
</tr>
</table>
</body>
</html>
|