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 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843
|
<html>
<head>
<title>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"></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="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 />
</td>
<td>
<table cellpadding="10" cellspacing="0" width="100%" border="0"><tr><td valign="top">
<a name="top"></a>
<h1>Index of all elements</h1>
[ <a href="elementindex.html#1">1</a> ]
[ <a href="elementindex.html#a">a</a> ]
[ <a href="elementindex.html#b">b</a> ]
[ <a href="elementindex.html#c">c</a> ]
[ <a href="elementindex.html#d">d</a> ]
[ <a href="elementindex.html#e">e</a> ]
[ <a href="elementindex.html#f">f</a> ]
[ <a href="elementindex.html#g">g</a> ]
[ <a href="elementindex.html#h">h</a> ]
[ <a href="elementindex.html#i">i</a> ]
[ <a href="elementindex.html#j">j</a> ]
[ <a href="elementindex.html#k">k</a> ]
[ <a href="elementindex.html#l">l</a> ]
[ <a href="elementindex.html#m">m</a> ]
[ <a href="elementindex.html#n">n</a> ]
[ <a href="elementindex.html#o">o</a> ]
[ <a href="elementindex.html#p">p</a> ]
[ <a href="elementindex.html#q">q</a> ]
[ <a href="elementindex.html#r">r</a> ]
[ <a href="elementindex.html#s">s</a> ]
[ <a href="elementindex.html#t">t</a> ]
[ <a href="elementindex.html#u">u</a> ]
[ <a href="elementindex.html#v">v</a> ]
[ <a href="elementindex.html#w">w</a> ]
[ <a href="elementindex.html#x">x</a> ]
[ <a href="elementindex.html#y">y</a> ]
[ <a href="elementindex.html#z">z</a> ]
[ <a href="elementindex.html#_">_</a> ]
<hr />
<a name="1"></a>
<div>
<h2>1</h2>
<dl>
<dt><b>141_jquery-validationEngine-lang.php</b></dt>
<dd>procedural page <a href="main/_templates---lib---141_jquery-validationEngine-lang.php.html">141_jquery-validationEngine-lang.php</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="a"></a>
<div>
<h2>a</h2>
<dl>
<dt><b>$additionalCSS</b></dt>
<dd>in file selfService.inc, variable <a href="selfService/selfServiceProfile.html#var$additionalCSS">selfServiceProfile::$additionalCSS</a><br> list of additional CSS links (separated by \n)</dd>
<dt><b>$aliases</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$aliases">Attribute::$aliases</a></dd>
<dt><b>$aliases</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$aliases">AttributeType::$aliases</a><br> An array of alias attribute names, strings</dd>
<dt><b>$AliasNbPages</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$AliasNbPages">FPDF::$AliasNbPages</a></dd>
<dt><b>$alignment</b></dt>
<dd>in file html.inc, variable <a href="metaHTML/htmlElement.html#var$alignment">htmlElement::$alignment</a><br> alignment when inside a table</dd>
<dt><b>$allowedHosts</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$allowedHosts">LAMCfgMain::$allowedHosts</a><br> list of hosts which may access LAM</dd>
<dt><b>$arrOutput</b></dt>
<dd>in file xml2array.php, variable <a href="phpLDAPadmin/XML/xml2array.html#var$arrOutput">xml2array::$arrOutput</a></dd>
<dt><b>$attrArray</b></dt>
<dd>in file lists.inc, variable <a href="lists/lamList.html#var$attrArray">lamList::$attrArray</a><br> list of LDAP attributes</dd>
<dt><b>$attributes</b></dt>
<dd>in file xmlTemplates.php, variable <a href="phpLDAPadmin/Templates/xmlTemplate.html#var$attributes">xmlTemplate::$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</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 fixed_ip.inc, variable <a href="modules/fixed_ip.html#var$attributes">fixed_ip::$attributes</a></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>$author</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$author">FPDF::$author</a></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>$AutoPageBreak</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$AutoPageBreak">FPDF::$AutoPageBreak</a></dd>
<dt><b>$autovalue</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$autovalue">Attribute::$autovalue</a></dd>
<dt><b>abs</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodabs">Math_BigInteger::abs()</a><br> Absolute value.</dd>
<dt><b>accept</b></dt>
<dd>in file QueryRender.php, method <a href="phpLDAPadmin/Templates/QueryRender.html#methodaccept">QueryRender::accept()</a><br> Intialise and Render the QueryRender</dd>
<dt><b>accept</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/Export.html#methodaccept">Export::accept()</a></dd>
<dt><b>accept</b></dt>
<dd>in file Query.php, method <a href="phpLDAPadmin/Queries/Query.html#methodaccept">Query::accept()</a><br> Accept will run the query and store the results in results()</dd>
<dt><b>accept</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodaccept">TemplateRender::accept()</a><br> Initialise and Render the TemplateRender</dd>
<dt><b>accept</b></dt>
<dd>in file import_functions.php, method <a href="phpLDAPadmin/Import/Import.html#methodaccept">Import::accept()</a></dd>
<dt><b>accept</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodaccept">PageRender::accept()</a><br> Initialise the PageRender</dd>
<dt><b>accept</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodaccept">Template::accept()</a><br> This function will perform the following intialisation steps:</dd>
<dt><b>AcceptPageBreak</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#methodAcceptPageBreak">UFPDF::AcceptPageBreak()</a></dd>
<dt><b>AcceptPageBreak</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodAcceptPageBreak">FPDF::AcceptPageBreak()</a></dd>
<dt><b>ACCESS_ALL</b></dt>
<dd>in file config.inc, class constant <a href="configuration/LAMConfig.html#constACCESS_ALL">LAMConfig::ACCESS_ALL</a></dd>
<dt><b>ACCESS_PASSWORD_CHANGE</b></dt>
<dd>in file config.inc, class constant <a href="configuration/LAMConfig.html#constACCESS_PASSWORD_CHANGE">LAMConfig::ACCESS_PASSWORD_CHANGE</a></dd>
<dt><b>ACCESS_READ_ONLY</b></dt>
<dd>in file config.inc, class constant <a href="configuration/LAMConfig.html#constACCESS_READ_ONLY">LAMConfig::ACCESS_READ_ONLY</a></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>add</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#methodadd">ldap_pla::add()</a><br> Add objects</dd>
<dt><b>add</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodadd">Math_BigInteger::add()</a><br> Adds two BigIntegers.</dd>
<dt><b>addAlias</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodaddAlias">AttributeType::addAlias()</a><br> Adds an attribute name to the alias array.</dd>
<dt><b>addAlias</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodaddAlias">AttributeType::addAlias()</a><br> Adds an attribute name to the alias array.</dd>
<dt><b>addAttribute</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#methodaddAttribute">xmlTemplate::addAttribute()</a><br> Add another attribute to this template</dd>
<dt><b>addChild</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodaddChild">TreeItem::addChild()</a><br> Add a child to this DN entry.</dd>
<dt><b>addChildObjectClass</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClass.html#methodaddChildObjectClass">ObjectClass::addChildObjectClass()</a><br> Adds an objectClass to the list of objectClasses that inherit from this objectClass.</dd>
<dt><b>addChildObjectClass</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass.html#methodaddChildObjectClass">ObjectClass::addChildObjectClass()</a><br> Adds an objectClass to the list of objectClasses that inherit from this objectClass.</dd>
<dt><b>addElement</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTable.html#methodaddElement">htmlTable::addElement()</a><br> Adds an element to the table. The element may be a htmlElement object or a simple String.</dd>
<dt><b>addElement</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlGroup.html#methodaddElement">htmlGroup::addElement()</a><br> Adds a subelement.</dd>
<dt><b>addEntry</b></dt>
<dd>in file Tree.php, method <a href="phpLDAPadmin/Tree/Tree.html#methodaddEntry">Tree::addEntry()</a><br> Add an entry in the tree view ; the entry is added in the children array of its parent</dd>
<dt><b>addFileName</b></dt>
<dd>in file BinaryAttribute.php, method <a href="phpLDAPadmin/Templates/BinaryAttribute.html#methodaddFileName">BinaryAttribute::addFileName()</a></dd>
<dt><b>addFilePath</b></dt>
<dd>in file BinaryAttribute.php, method <a href="phpLDAPadmin/Templates/BinaryAttribute.html#methodaddFilePath">BinaryAttribute::addFilePath()</a></dd>
<dt><b>AddFont</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodAddFont">FPDF::AddFont()</a></dd>
<dt><b>AddFont</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#methodAddFont">UFPDF::AddFont()</a></dd>
<dt><b>AddLink</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodAddLink">FPDF::AddLink()</a></dd>
<dt><b>addMayAttrs</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClass.html#methodaddMayAttrs">ObjectClass::addMayAttrs()</a><br> Behaves identically to addMustAttrs, but it operates on the MAY attributes of this objectClass.</dd>
<dt><b>addMustAttrs</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClass.html#methodaddMustAttrs">ObjectClass::addMustAttrs()</a><br> Adds the specified array of attributes to this objectClass' list of MUST attributes. The resulting array of must attributes will contain unique members.</dd>
<dt><b>addNewLine</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTable.html#methodaddNewLine">htmlTable::addNewLine()</a><br> Adds another line to the table.</dd>
<dt><b>addOption</b></dt>
<dd>in file SelectionAttribute.php, method <a href="phpLDAPadmin/Templates/SelectionAttribute.html#methodaddOption">SelectionAttribute::addOption()</a></dd>
<dt><b>AddPage</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodAddPage">FPDF::AddPage()</a></dd>
<dt><b>addRequiredByObjectClass</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodaddRequiredByObjectClass">AttributeType::addRequiredByObjectClass()</a><br> Adds an objectClass name to this attribute's list of "required by" objectClasses, that is the list of objectClasses which must have this attribute.</dd>
<dt><b>addRequiredByObjectClass</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodaddRequiredByObjectClass">AttributeType::addRequiredByObjectClass()</a><br> Adds an objectClass name to this attribute's list of "required by" objectClasses, that is the list of objectClasses which must have this attribute.</dd>
<dt><b>addUsedByAttr</b></dt>
<dd>in file schema.inc, method <a href="lib/MatchingRule.html#methodaddUsedByAttr">MatchingRule::addUsedByAttr()</a><br> Adds an attribute name to the list of attributes who use this MatchingRule</dd>
<dt><b>addUsedByAttr</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/MatchingRule.html#methodaddUsedByAttr">MatchingRule::addUsedByAttr()</a><br> Adds an attribute name to the list of attributes who use this MatchingRule</dd>
<dt><b>addUsedInObjectClass</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodaddUsedInObjectClass">AttributeType::addUsedInObjectClass()</a><br> Adds an objectClass name to this attribute's list of "used in" objectClasses, that is the list of objectClasses which provide this attribute.</dd>
<dt><b>addUsedInObjectClass</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodaddUsedInObjectClass">AttributeType::addUsedInObjectClass()</a><br> Adds an objectClass name to this attribute's list of "used in" objectClasses, that is the list of objectClasses which provide this attribute.</dd>
<dt><b>addValue</b></dt>
<dd>in file SelectionAttribute.php, method <a href="phpLDAPadmin/Templates/SelectionAttribute.html#methodaddValue">SelectionAttribute::addValue()</a></dd>
<dt><b>addValue</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodaddValue">Attribute::addValue()</a></dd>
<dt><b>add_aliases_to_attrs</b></dt>
<dd>in file schema.inc, function <a href="lib/_lib---schema.inc.html#functionadd_aliases_to_attrs">add_aliases_to_attrs()</a><br> For each attribute that has multiple names, this function adds unique entries to the attrs array for those names. Ie, attributeType has name 'gn' and 'givenName'.</dd>
<dt><b>add_hook</b></dt>
<dd>in file hooks.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---hooks.php.html#functionadd_hook">add_hook()</a><br> Adds a procedure to a hook for later execution.</dd>
<dt><b>add_sup_to_attrs</b></dt>
<dd>in file schema.inc, function <a href="lib/_lib---schema.inc.html#functionadd_sup_to_attrs">add_sup_to_attrs()</a><br> Adds inherited values to each attributeType specified by the SUP directive.</dd>
<dt><b>AJAXTree</b></dt>
<dd>in file AJAXTree.php, class <a href="phpLDAPadmin/Tree/AJAXTree.html">AJAXTree</a><br> This class implements an AJAX based tree.</dd>
<dt><b>AliasNbPages</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodAliasNbPages">FPDF::AliasNbPages()</a></dd>
<dt><b>AliasNbPages</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#methodAliasNbPages">UFPDF::AliasNbPages()</a></dd>
<dt><b>ALIGN_BOTTOM</b></dt>
<dd>in file html.inc, class constant <a href="metaHTML/htmlElement.html#constALIGN_BOTTOM">htmlElement::ALIGN_BOTTOM</a><br> align to bottom</dd>
<dt><b>ALIGN_CENTER</b></dt>
<dd>in file html.inc, class constant <a href="metaHTML/htmlElement.html#constALIGN_CENTER">htmlElement::ALIGN_CENTER</a><br> align to center</dd>
<dt><b>ALIGN_LEFT</b></dt>
<dd>in file html.inc, class constant <a href="metaHTML/htmlElement.html#constALIGN_LEFT">htmlElement::ALIGN_LEFT</a><br> align to left</dd>
<dt><b>ALIGN_RIGHT</b></dt>
<dd>in file html.inc, class constant <a href="metaHTML/htmlElement.html#constALIGN_RIGHT">htmlElement::ALIGN_RIGHT</a><br> align to right</dd>
<dt><b>ALIGN_TOP</b></dt>
<dd>in file html.inc, class constant <a href="metaHTML/htmlElement.html#constALIGN_TOP">htmlElement::ALIGN_TOP</a><br> align to top</dd>
<dt><b>APPCONFIG</b></dt>
<dd>in file common.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---common.php.html#defineAPPCONFIG">APPCONFIG</a><br> The index we will store our config in $_SESSION</dd>
<dt><b>app_error_handler</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionapp_error_handler">app_error_handler()</a><br> Custom error handling function.</dd>
<dt><b>app_name</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionapp_name">app_name()</a><br> Returns the application name.</dd>
<dt><b>app_session_start</b></dt>
<dd>in file session_functions.php, function <a href="phpLDAPadmin/Session/_templates---3rdParty---pla---lib---session_functions.php.html#functionapp_session_start">app_session_start()</a><br> The only function which should be called by a user</dd>
<dt><b>app_version</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionapp_version">app_version()</a><br> Returns the application version currently running. The version is read from the file named VERSION.</dd>
<dt><b>arrayLower</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionarrayLower">arrayLower()</a><br> Reads an array and returns the array values back in lower case</dd>
<dt><b>array_delete</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionarray_delete">array_delete()</a><br> This function will return all values from $array without values of $values.</dd>
<dt><b>array_fill</b></dt>
<dd>in file array_fill.php, function <a href="PHP_Compat/_lib---3rdParty---phpseclib---PHP---Compat---Function---array_fill.php.html#functionarray_fill">array_fill()</a></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>array_stripslashes</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionarray_stripslashes">array_stripslashes()</a><br> Strips all slashes from the specified array in place (pass by ref).</dd>
<dt><b>array_to_query_string</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionarray_to_query_string">array_to_query_string()</a><br> Converts an array to a query-string with the option to exclude certain variables from the returned query string. This is convenient if callers want to convert the current GET query string or POST array into a string and replace certain variables with their own.</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>asteriskExt</b></dt>
<dd>in file asteriskExt.inc, class <a href="types/asteriskExt.html">asteriskExt</a><br> The account type for Asterisk extensions.</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>Attribute</b></dt>
<dd>in file Attribute.php, class <a href="phpLDAPadmin/Templates/Attribute.html">Attribute</a><br> Represents an attribute of a template.</dd>
<dt><b>AttributeFactory</b></dt>
<dd>in file AttributeFactory.php, class <a href="phpLDAPadmin/Templates/AttributeFactory.html">AttributeFactory</a><br> AttributeFactory Class</dd>
<dt><b>AttributeType</b></dt>
<dd>in file schema.inc, class <a href="lib/AttributeType.html">AttributeType</a><br> Represents an LDAP AttributeType</dd>
<dt><b>AttributeType</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodAttributeType">AttributeType::AttributeType()</a><br> Creates a new AttributeType objcet from a raw LDAP AttributeType string.</dd>
<dt><b>AttributeType</b></dt>
<dd>in file schema_functions.php, class <a href="phpLDAPadmin/Schema/AttributeType.html">AttributeType</a><br> Represents an LDAP AttributeType</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>autoValue</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodautoValue">Attribute::autoValue()</a><br> Autovalue is called after the attribute is initialised, and thus the values from the ldap server will be set.</dd>
<dt><b>autoValue</b></dt>
<dd>in file SelectionAttribute.php, method <a href="phpLDAPadmin/Templates/SelectionAttribute.html#methodautoValue">SelectionAttribute::autoValue()</a></dd>
<dt><b>auto_lang</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionauto_lang">auto_lang()</a><br> This function will convert the browser two character language into the default 5 character language, where the country portion should NOT be assumed to be upper case characters of the first two characters.</dd>
<dt><b>a_array_rand</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functiona_array_rand">a_array_rand()</a><br> This function returns an array of $num_req values randomly picked from the $input array</dd>
<dt><b>AES.php</b></dt>
<dd>procedural page <a href="Crypt_AES/_lib---3rdParty---phpseclib---Crypt---AES.php.html">AES.php</a></dd>
<dt><b>array_fill.php</b></dt>
<dd>procedural page <a href="PHP_Compat/_lib---3rdParty---phpseclib---PHP---Compat---Function---array_fill.php.html">array_fill.php</a></dd>
<dt><b>account.inc</b></dt>
<dd>procedural page <a href="lib/_lib---account.inc.html">account.inc</a></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>
<dt><b>asteriskExt.inc</b></dt>
<dd>procedural page <a href="types/_lib---types---asteriskExt.inc.html">asteriskExt.inc</a></dd>
<dt><b>add_attr_form.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---add_attr_form.php.html">add_attr_form.php</a></dd>
<dt><b>add_oclass_form.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---add_oclass_form.php.html">add_oclass_form.php</a></dd>
<dt><b>add_value_form.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---add_value_form.php.html">add_value_form.php</a></dd>
<dt><b>AJAXTree.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---AJAXTree.php.html">AJAXTree.php</a></dd>
<dt><b>Attribute.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---Attribute.php.html">Attribute.php</a></dd>
<dt><b>AttributeFactory.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---AttributeFactory.php.html">AttributeFactory.php</a></dd>
<dt><b>ajax.php</b></dt>
<dd>procedural page <a href="tools/_templates---misc---ajax.php.html">ajax.php</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="b"></a>
<div>
<h2>b</h2>
<dl>
<dt><b>$bMargin</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$bMargin">FPDF::$bMargin</a></dd>
<dt><b>$br</b></dt>
<dd>in file export_functions.php, variable <a href="phpLDAPadmin/Export/Export.html#var$br">Export::$br</a></dd>
<dt><b>$buffer</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$buffer">FPDF::$buffer</a></dd>
<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>baseType</b></dt>
<dd>in file baseType.inc, class <a href="types/baseType.html">baseType</a><br> This is the parent class of all account types.</dd>
<dt><b>bcpowmod</b></dt>
<dd>in file bcpowmod.php, function <a href="PHP_Compat/_lib---3rdParty---phpseclib---PHP---Compat---Function---bcpowmod.php.html#functionbcpowmod">bcpowmod()</a></dd>
<dt><b>BinaryAttribute</b></dt>
<dd>in file BinaryAttribute.php, class <a href="phpLDAPadmin/Templates/BinaryAttribute.html">BinaryAttribute</a><br> Represents an attribute whose values are binary</dd>
<dt><b>binSIDtoText</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionbinSIDtoText">binSIDtoText()</a></dd>
<dt><b>bitwise_and</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodbitwise_and">Math_BigInteger::bitwise_and()</a><br> Logical And</dd>
<dt><b>bitwise_leftRotate</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodbitwise_leftRotate">Math_BigInteger::bitwise_leftRotate()</a><br> Logical Left Rotate</dd>
<dt><b>bitwise_leftShift</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodbitwise_leftShift">Math_BigInteger::bitwise_leftShift()</a><br> Logical Left Shift</dd>
<dt><b>bitwise_not</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodbitwise_not">Math_BigInteger::bitwise_not()</a><br> Logical Not</dd>
<dt><b>bitwise_or</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodbitwise_or">Math_BigInteger::bitwise_or()</a><br> Logical Or</dd>
<dt><b>bitwise_rightRotate</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodbitwise_rightRotate">Math_BigInteger::bitwise_rightRotate()</a><br> Logical Right Rotate</dd>
<dt><b>bitwise_rightShift</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodbitwise_rightShift">Math_BigInteger::bitwise_rightShift()</a><br> Logical Right Shift</dd>
<dt><b>bitwise_xor</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodbitwise_xor">Math_BigInteger::bitwise_xor()</a><br> Logical Exclusive-Or</dd>
<dt><b>block</b></dt>
<dd>in file page.php, class <a href="phpLDAPadmin/Page/block.html">block</a><br> This class draws a block.</dd>
<dt><b>block_add</b></dt>
<dd>in file page.php, method <a href="phpLDAPadmin/Page/page.html#methodblock_add">page::block_add()</a></dd>
<dt><b>blowfish_decrypt</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionblowfish_decrypt">blowfish_decrypt()</a><br> Decryption using blowfish algorithm</dd>
<dt><b>blowfish_encrypt</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionblowfish_encrypt">blowfish_encrypt()</a><br> Encryption using blowfish algorithm</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_tree</b></dt>
<dd>in file copy.php, function <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---copy.php.html#functionbuild_tree">build_tree()</a></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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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>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>BigInteger.php</b></dt>
<dd>procedural page <a href="Math_BigInteger/_lib---3rdParty---phpseclib---Math---BigInteger.php.html">BigInteger.php</a></dd>
<dt><b>bcpowmod.php</b></dt>
<dd>procedural page <a href="PHP_Compat/_lib---3rdParty---phpseclib---PHP---Compat---Function---bcpowmod.php.html">bcpowmod.php</a></dd>
<dt><b>baseModule.inc</b></dt>
<dd>procedural page <a href="modules/_lib---baseModule.inc.html">baseModule.inc</a></dd>
<dt><b>baseType.inc</b></dt>
<dd>procedural page <a href="types/_lib---baseType.inc.html">baseType.inc</a></dd>
<dt><b>BinaryAttribute.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---BinaryAttribute.php.html">BinaryAttribute.php</a></dd>
<dt><b>blowfish.php</b></dt>
<dd>procedural page <a href="horde-cipher/_templates---3rdParty---pla---lib---blowfish.php.html">blowfish.php</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="c"></a>
<div>
<h2>c</h2>
<dl>
<dt><b>$checked</b></dt>
<dd>in file html.inc, variable <a href="metaHTML/htmlInputCheckbox.html#var$checked">htmlInputCheckbox::$checked</a><br> value</dd>
<dt><b>$children_objectclasses</b></dt>
<dd>in file schema.inc, variable <a href="lib/ObjectClass.html#var$children_objectclasses">ObjectClass::$children_objectclasses</a><br> array of objectClasses which inherit from this one (must be set at runtime explicitly by the caller)</dd>
<dt><b>$cMargin</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$cMargin">FPDF::$cMargin</a></dd>
<dt><b>$ColorFlag</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$ColorFlag">FPDF::$ColorFlag</a></dd>
<dt><b>$cols</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$cols">Attribute::$cols</a></dd>
<dt><b>$cols</b></dt>
<dd>in file MultiLineAttribute.php, variable <a href="phpLDAPadmin/Templates/MultiLineAttribute.html#var$cols">MultiLineAttribute::$cols</a></dd>
<dt><b>$colspan</b></dt>
<dd>in file html.inc, variable <a href="metaHTML/htmlElement.html#var$colspan">htmlElement::$colspan</a><br> colspan if inside a table</dd>
<dt><b>$compress</b></dt>
<dd>in file export_functions.php, variable <a href="phpLDAPadmin/Export/Export.html#var$compress">Export::$compress</a></dd>
<dt><b>$compress</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$compress">FPDF::$compress</a></dd>
<dt><b>$container</b></dt>
<dd>in file Template.php, variable <a href="phpLDAPadmin/Templates/Template.html#var$container">Template::$container</a></dd>
<dt><b>$container</b></dt>
<dd>in file PageRender.php, variable <a href="phpLDAPadmin/Templates/PageRender.html#var$container">PageRender::$container</a></dd>
<dt><b>$CoreFonts</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$CoreFonts">FPDF::$CoreFonts</a></dd>
<dt><b>$creator</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$creator">FPDF::$creator</a></dd>
<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>$CurOrientation</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$CurOrientation">FPDF::$CurOrientation</a></dd>
<dt><b>$CurPageSize</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$CurPageSize">FPDF::$CurPageSize</a></dd>
<dt><b>$CurrentFont</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$CurrentFont">FPDF::$CurrentFont</a></dd>
<dt><b>$custom</b></dt>
<dd>in file ds.php, variable <a href="phpLDAPadmin/DataStore/DS.html#var$custom">DS::$custom</a></dd>
<dt><b>$custom</b></dt>
<dd>in file config_default.php, variable <a href="phpLDAPadmin/Tree/Config.html#var$custom">Config::$custom</a></dd>
<dt><b>cached_schema_available</b></dt>
<dd>in file schema.inc, function <a href="lib/_lib---schema.inc.html#functioncached_schema_available">cached_schema_available()</a><br> Returns true if the schema for $schema_type has been cached and</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>Cell</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#methodCell">UFPDF::Cell()</a></dd>
<dt><b>Cell</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodCell">FPDF::Cell()</a></dd>
<dt><b>chdir</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodchdir">Net_SFTP::chdir()</a><br> Changes the current directory</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>checkChmod</b></dt>
<dd>in file config.inc, function <a href="configuration/_lib---config.inc.html#functioncheckChmod">checkChmod()</a><br> Checks whether a specific flag in the rights string is set.</dd>
<dt><b>checkClientIP</b></dt>
<dd>in file security.inc, function <a href="lib/_lib---security.inc.html#functioncheckClientIP">checkClientIP()</a><br> Checks if the client's IP address is on the list of allowed IPs.</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>CheckCustom</b></dt>
<dd>in file config_default.php, method <a href="phpLDAPadmin/Tree/Config.html#methodCheckCustom">Config::CheckCustom()</a><br> Function to check and warn about any unusual defined variables.</dd>
<dt><b>checkIfPasswordChangeIsAllowed</b></dt>
<dd>in file security.inc, function <a href="lib/_lib---security.inc.html#functioncheckIfPasswordChangeIsAllowed">checkIfPasswordChangeIsAllowed()</a><br> Checks if passwords may be changed.</dd>
<dt><b>checkIfWriteAccessIsAllowed</b></dt>
<dd>in file security.inc, function <a href="lib/_lib---security.inc.html#functioncheckIfWriteAccessIsAllowed">checkIfWriteAccessIsAllowed()</a><br> Checks if write access to LDAP is allowed.</dd>
<dt><b>checkInput</b></dt>
<dd>in file confmodules.php, function <a href="configuration/_templates---config---confmodules.php.html#functioncheckInput">checkInput()</a><br> Checks user input and saves the entered settings.</dd>
<dt><b>checkPassword</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMCfgMain.html#methodcheckPassword">LAMCfgMain::checkPassword()</a><br> Checks if the given password matches.</dd>
<dt><b>checkPasswordStrength</b></dt>
<dd>in file security.inc, function <a href="lib/_lib---security.inc.html#functioncheckPasswordStrength">checkPasswordStrength()</a><br> Checks if the password fulfills the password policies.</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>checkSchemaForModule</b></dt>
<dd>in file schemaTest.php, function <a href="tools/_templates---tests---schemaTest.php.html#functioncheckSchemaForModule">checkSchemaForModule()</a><br> Checks if the object classes and attributes for this module are available.</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 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 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 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>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 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 selfService.inc, function <a href="selfService/_lib---selfService.inc.html#functioncheckSelfServiceOptions">checkSelfServiceOptions()</a><br> Checks if all input values are correct and returns the LDAP commands which should be executed.</dd>
<dt><b>checkSelfServiceSettings</b></dt>
<dd>in file selfService.inc, function <a href="selfService/_lib---selfService.inc.html#functioncheckSelfServiceSettings">checkSelfServiceSettings()</a><br> Checks if the self service settings are valid</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>checkUniqueAttrs</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#methodcheckUniqueAttrs">ldap_pla::checkUniqueAttrs()</a><br> This function will check whether the value for an attribute being changed is already assigned to another DN.</dd>
<dt><b>check_config</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functioncheck_config">check_config()</a><br> Makes sure that the config file is properly setup.</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_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_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_Passwd</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodcheck_Passwd">LAMConfig::check_Passwd()</a><br> Checks if the given password matches.</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_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 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 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 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_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>childSorted</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodchildSorted">TreeItem::childSorted()</a><br> Mark the children as sorted</dd>
<dt><b>chmod</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodchmod">Net_SFTP::chmod()</a><br> Set permissions on a file.</dd>
<dt><b>Cipher_blowfish</b></dt>
<dd>in file blowfish.php, method <a href="horde-cipher/Horde_Cipher_blowfish.html#methodCipher_blowfish">Horde_Cipher_blowfish::Cipher_blowfish()</a></dd>
<dt><b>cleanLDAPResult</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functioncleanLDAPResult">cleanLDAPResult()</a><br> Cleans the result of an LDAP search.</dd>
<dt><b>clearValue</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodclearValue">Attribute::clearValue()</a></dd>
<dt><b>clear_hooks</b></dt>
<dd>in file hooks.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---hooks.php.html#functionclear_hooks">clear_hooks()</a><br> Removes all procedures from a hook.</dd>
<dt><b>Close</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodClose">FPDF::Close()</a></dd>
<dt><b>close</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#methodclose">Ldap::close()</a><br> Closes connection to server</dd>
<dt><b>close</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodclose">TreeItem::close()</a><br> Mark this node as closed.</dd>
<dt><b>cmd_control_pane</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functioncmd_control_pane">cmd_control_pane()</a><br> Commands available in the control_panel of the page</dd>
<dt><b>cmp_array</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodcmp_array">lamList::cmp_array()</a><br> Compare function used for usort-method</dd>
<dt><b>code2utf</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#methodcode2utf">UFPDF::code2utf()</a></dd>
<dt><b>compare</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodcompare">Math_BigInteger::compare()</a><br> Compares two numbers.</dd>
<dt><b>compareDN</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functioncompareDN">compareDN()</a><br> Helper function to sort DNs.</dd>
<dt><b>CONFDIR</b></dt>
<dd>in file functions.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#defineCONFDIR">CONFDIR</a></dd>
<dt><b>Config</b></dt>
<dd>in file config_default.php, class <a href="phpLDAPadmin/Tree/Config.html">Config</a><br> The config class contains all our configuration settings for a session.</dd>
<dt><b>configDefinition</b></dt>
<dd>in file config_default.php, method <a href="phpLDAPadmin/Tree/Config.html#methodconfigDefinition">Config::configDefinition()</a></dd>
<dt><b>config_showAccountModules</b></dt>
<dd>in file confmodules.php, function <a href="configuration/_templates---config---confmodules.php.html#functionconfig_showAccountModules">config_showAccountModules()</a><br> Displays the module selection boxes and checks if dependencies are fulfilled.</dd>
<dt><b>connect</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#methodconnect">Ldap::connect()</a><br> Connects to the server using the given username and password</dd>
<dt><b>connect</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodconnect">myldap::connect()</a><br> Connect and Bind to the Database</dd>
<dt><b>connect</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodconnect">DS::connect()</a><br> This will make the connection to the datasource</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>convertHex2bin</b></dt>
<dd>in file ldap.inc, function <a href="LDAP/_lib---ldap.inc.html#functionconvertHex2bin">convertHex2bin()</a><br> Converts a HEX string to a binary value</dd>
<dt><b>copy</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodcopy">Template::copy()</a><br> Copy a DN</dd>
<dt><b>copy</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodcopy">Math_BigInteger::copy()</a><br> Copy an object</dd>
<dt><b>copy_dn</b></dt>
<dd>in file copy.php, function <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---copy.php.html#functioncopy_dn">copy_dn()</a></dd>
<dt><b>createKey</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodcreateKey">Crypt_RSA::createKey()</a><br> Create public / private key pair</dd>
<dt><b>createModulePDF</b></dt>
<dd>in file pdf.inc, function <a href="PDF/_lib---pdf.inc.html#functioncreateModulePDF">createModulePDF()</a><br> This function creates the PDF output of one or more accounts.</dd>
<dt><b>Crypt_AES</b></dt>
<dd>in file AES.php, method <a href="Crypt_AES/Crypt_AES.html#methodCrypt_AES">Crypt_AES::Crypt_AES()</a><br> Default Constructor.</dd>
<dt><b>Crypt_AES</b></dt>
<dd>in file AES.php, class <a href="Crypt_AES/Crypt_AES.html">Crypt_AES</a><br> Pure-PHP implementation of AES.</dd>
<dt><b>CRYPT_AES_MODE_CBC</b></dt>
<dd>in file AES.php, constant <a href="Crypt_AES/_lib---3rdParty---phpseclib---Crypt---AES.php.html#defineCRYPT_AES_MODE_CBC">CRYPT_AES_MODE_CBC</a><br> Encrypt / decrypt using the Code Book Chaining mode.</dd>
<dt><b>CRYPT_AES_MODE_CFB</b></dt>
<dd>in file AES.php, constant <a href="Crypt_AES/_lib---3rdParty---phpseclib---Crypt---AES.php.html#defineCRYPT_AES_MODE_CFB">CRYPT_AES_MODE_CFB</a><br> Encrypt / decrypt using the Cipher Feedback mode.</dd>
<dt><b>CRYPT_AES_MODE_CTR</b></dt>
<dd>in file AES.php, constant <a href="Crypt_AES/_lib---3rdParty---phpseclib---Crypt---AES.php.html#defineCRYPT_AES_MODE_CTR">CRYPT_AES_MODE_CTR</a><br> Encrypt / decrypt using the Counter mode.</dd>
<dt><b>CRYPT_AES_MODE_ECB</b></dt>
<dd>in file AES.php, constant <a href="Crypt_AES/_lib---3rdParty---phpseclib---Crypt---AES.php.html#defineCRYPT_AES_MODE_ECB">CRYPT_AES_MODE_ECB</a><br> Encrypt / decrypt using the Electronic Code Book mode.</dd>
<dt><b>CRYPT_AES_MODE_OFB</b></dt>
<dd>in file AES.php, constant <a href="Crypt_AES/_lib---3rdParty---phpseclib---Crypt---AES.php.html#defineCRYPT_AES_MODE_OFB">CRYPT_AES_MODE_OFB</a><br> Encrypt / decrypt using the Cipher Feedback mode.</dd>
<dt><b>Crypt_DES</b></dt>
<dd>in file DES.php, method <a href="Crypt_DES/Crypt_DES.html#methodCrypt_DES">Crypt_DES::Crypt_DES()</a><br> Default Constructor.</dd>
<dt><b>Crypt_DES</b></dt>
<dd>in file DES.php, class <a href="Crypt_DES/Crypt_DES.html">Crypt_DES</a><br> Pure-PHP implementation of DES.</dd>
<dt><b>CRYPT_DES_MODE_3CBC</b></dt>
<dd>in file TripleDES.php, constant <a href="Crypt_TripleDES/_lib---3rdParty---phpseclib---Crypt---TripleDES.php.html#defineCRYPT_DES_MODE_3CBC">CRYPT_DES_MODE_3CBC</a><br> Encrypt / decrypt using inner chaining</dd>
<dt><b>CRYPT_DES_MODE_CBC</b></dt>
<dd>in file DES.php, constant <a href="Crypt_DES/_lib---3rdParty---phpseclib---Crypt---DES.php.html#defineCRYPT_DES_MODE_CBC">CRYPT_DES_MODE_CBC</a><br> Encrypt / decrypt using the Code Book Chaining mode.</dd>
<dt><b>CRYPT_DES_MODE_CBC3</b></dt>
<dd>in file TripleDES.php, constant <a href="Crypt_TripleDES/_lib---3rdParty---phpseclib---Crypt---TripleDES.php.html#defineCRYPT_DES_MODE_CBC3">CRYPT_DES_MODE_CBC3</a><br> Encrypt / decrypt using outer chaining</dd>
<dt><b>CRYPT_DES_MODE_CFB</b></dt>
<dd>in file DES.php, constant <a href="Crypt_DES/_lib---3rdParty---phpseclib---Crypt---DES.php.html#defineCRYPT_DES_MODE_CFB">CRYPT_DES_MODE_CFB</a><br> Encrypt / decrypt using the Cipher Feedback mode.</dd>
<dt><b>CRYPT_DES_MODE_CTR</b></dt>
<dd>in file DES.php, constant <a href="Crypt_DES/_lib---3rdParty---phpseclib---Crypt---DES.php.html#defineCRYPT_DES_MODE_CTR">CRYPT_DES_MODE_CTR</a><br> Encrypt / decrypt using the Counter mode.</dd>
<dt><b>CRYPT_DES_MODE_ECB</b></dt>
<dd>in file DES.php, constant <a href="Crypt_DES/_lib---3rdParty---phpseclib---Crypt---DES.php.html#defineCRYPT_DES_MODE_ECB">CRYPT_DES_MODE_ECB</a><br> Encrypt / decrypt using the Electronic Code Book mode.</dd>
<dt><b>CRYPT_DES_MODE_OFB</b></dt>
<dd>in file DES.php, constant <a href="Crypt_DES/_lib---3rdParty---phpseclib---Crypt---DES.php.html#defineCRYPT_DES_MODE_OFB">CRYPT_DES_MODE_OFB</a><br> Encrypt / decrypt using the Cipher Feedback mode.</dd>
<dt><b>Crypt_Hash</b></dt>
<dd>in file Hash.php, method <a href="Crypt_Hash/Crypt_Hash.html#methodCrypt_Hash">Crypt_Hash::Crypt_Hash()</a><br> Default Constructor.</dd>
<dt><b>Crypt_Hash</b></dt>
<dd>in file Hash.php, class <a href="Crypt_Hash/Crypt_Hash.html">Crypt_Hash</a><br> Pure-PHP implementations of keyed-hash message authentication codes (HMACs) and various cryptographic hashing functions.</dd>
<dt><b>crypt_random</b></dt>
<dd>in file Random.php, function <a href="Crypt_Random/_lib---3rdParty---phpseclib---Crypt---Random.php.html#functioncrypt_random">crypt_random()</a><br> Generate a random value.</dd>
<dt><b>Crypt_RC4</b></dt>
<dd>in file RC4.php, method <a href="Crypt_RC4/Crypt_RC4.html#methodCrypt_RC4">Crypt_RC4::Crypt_RC4()</a><br> Default Constructor.</dd>
<dt><b>Crypt_RC4</b></dt>
<dd>in file RC4.php, class <a href="Crypt_RC4/Crypt_RC4.html">Crypt_RC4</a><br> Pure-PHP implementation of RC4.</dd>
<dt><b>Crypt_Rijndael</b></dt>
<dd>in file Rijndael.php, class <a href="Crypt_Rijndael/Crypt_Rijndael.html">Crypt_Rijndael</a><br> Pure-PHP implementation of Rijndael.</dd>
<dt><b>Crypt_Rijndael</b></dt>
<dd>in file Rijndael.php, method <a href="Crypt_Rijndael/Crypt_Rijndael.html#methodCrypt_Rijndael">Crypt_Rijndael::Crypt_Rijndael()</a><br> Default Constructor.</dd>
<dt><b>CRYPT_RIJNDAEL_MODE_CBC</b></dt>
<dd>in file Rijndael.php, constant <a href="Crypt_Rijndael/_lib---3rdParty---phpseclib---Crypt---Rijndael.php.html#defineCRYPT_RIJNDAEL_MODE_CBC">CRYPT_RIJNDAEL_MODE_CBC</a><br> Encrypt / decrypt using the Code Book Chaining mode.</dd>
<dt><b>CRYPT_RIJNDAEL_MODE_CFB</b></dt>
<dd>in file Rijndael.php, constant <a href="Crypt_Rijndael/_lib---3rdParty---phpseclib---Crypt---Rijndael.php.html#defineCRYPT_RIJNDAEL_MODE_CFB">CRYPT_RIJNDAEL_MODE_CFB</a><br> Encrypt / decrypt using the Cipher Feedback mode.</dd>
<dt><b>CRYPT_RIJNDAEL_MODE_CTR</b></dt>
<dd>in file Rijndael.php, constant <a href="Crypt_Rijndael/_lib---3rdParty---phpseclib---Crypt---Rijndael.php.html#defineCRYPT_RIJNDAEL_MODE_CTR">CRYPT_RIJNDAEL_MODE_CTR</a><br> Encrypt / decrypt using the Counter mode.</dd>
<dt><b>CRYPT_RIJNDAEL_MODE_ECB</b></dt>
<dd>in file Rijndael.php, constant <a href="Crypt_Rijndael/_lib---3rdParty---phpseclib---Crypt---Rijndael.php.html#defineCRYPT_RIJNDAEL_MODE_ECB">CRYPT_RIJNDAEL_MODE_ECB</a><br> Encrypt / decrypt using the Electronic Code Book mode.</dd>
<dt><b>CRYPT_RIJNDAEL_MODE_OFB</b></dt>
<dd>in file Rijndael.php, constant <a href="Crypt_Rijndael/_lib---3rdParty---phpseclib---Crypt---Rijndael.php.html#defineCRYPT_RIJNDAEL_MODE_OFB">CRYPT_RIJNDAEL_MODE_OFB</a><br> Encrypt / decrypt using the Cipher Feedback mode.</dd>
<dt><b>Crypt_RSA</b></dt>
<dd>in file RSA.php, class <a href="Crypt_RSA/Crypt_RSA.html">Crypt_RSA</a><br> Pure-PHP PKCS#1 compliant implementation of RSA.</dd>
<dt><b>Crypt_RSA</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodCrypt_RSA">Crypt_RSA::Crypt_RSA()</a><br> The constructor</dd>
<dt><b>CRYPT_RSA_ENCRYPTION_OAEP</b></dt>
<dd>in file RSA.php, constant <a href="Crypt_RSA/_lib---3rdParty---phpseclib---Crypt---RSA.php.html#defineCRYPT_RSA_ENCRYPTION_OAEP">CRYPT_RSA_ENCRYPTION_OAEP</a><br> Use <a href="http://en.wikipedia.org/wiki/Optimal_Asymmetric_Encryption_Padding">Optimal Asymmetric Encryption Padding</a> (OAEP) for encryption / decryption.</dd>
<dt><b>CRYPT_RSA_ENCRYPTION_PKCS1</b></dt>
<dd>in file RSA.php, constant <a href="Crypt_RSA/_lib---3rdParty---phpseclib---Crypt---RSA.php.html#defineCRYPT_RSA_ENCRYPTION_PKCS1">CRYPT_RSA_ENCRYPTION_PKCS1</a><br> Use PKCS#1 padding.</dd>
<dt><b>CRYPT_RSA_PRIVATE_FORMAT_PKCS1</b></dt>
<dd>in file RSA.php, constant <a href="Crypt_RSA/_lib---3rdParty---phpseclib---Crypt---RSA.php.html#defineCRYPT_RSA_PRIVATE_FORMAT_PKCS1">CRYPT_RSA_PRIVATE_FORMAT_PKCS1</a><br> PKCS#1 formatted private key</dd>
<dt><b>CRYPT_RSA_PRIVATE_FORMAT_PUTTY</b></dt>
<dd>in file RSA.php, constant <a href="Crypt_RSA/_lib---3rdParty---phpseclib---Crypt---RSA.php.html#defineCRYPT_RSA_PRIVATE_FORMAT_PUTTY">CRYPT_RSA_PRIVATE_FORMAT_PUTTY</a><br> PuTTY formatted private key</dd>
<dt><b>CRYPT_RSA_PRIVATE_FORMAT_XML</b></dt>
<dd>in file RSA.php, constant <a href="Crypt_RSA/_lib---3rdParty---phpseclib---Crypt---RSA.php.html#defineCRYPT_RSA_PRIVATE_FORMAT_XML">CRYPT_RSA_PRIVATE_FORMAT_XML</a><br> XML formatted private key</dd>
<dt><b>CRYPT_RSA_PUBLIC_FORMAT_OPENSSH</b></dt>
<dd>in file RSA.php, constant <a href="Crypt_RSA/_lib---3rdParty---phpseclib---Crypt---RSA.php.html#defineCRYPT_RSA_PUBLIC_FORMAT_OPENSSH">CRYPT_RSA_PUBLIC_FORMAT_OPENSSH</a><br> OpenSSH formatted public key</dd>
<dt><b>CRYPT_RSA_PUBLIC_FORMAT_PKCS1</b></dt>
<dd>in file RSA.php, constant <a href="Crypt_RSA/_lib---3rdParty---phpseclib---Crypt---RSA.php.html#defineCRYPT_RSA_PUBLIC_FORMAT_PKCS1">CRYPT_RSA_PUBLIC_FORMAT_PKCS1</a><br> PKCS#1 formatted public key</dd>
<dt><b>CRYPT_RSA_PUBLIC_FORMAT_RAW</b></dt>
<dd>in file RSA.php, constant <a href="Crypt_RSA/_lib---3rdParty---phpseclib---Crypt---RSA.php.html#defineCRYPT_RSA_PUBLIC_FORMAT_RAW">CRYPT_RSA_PUBLIC_FORMAT_RAW</a><br> Raw public key</dd>
<dt><b>CRYPT_RSA_PUBLIC_FORMAT_XML</b></dt>
<dd>in file RSA.php, constant <a href="Crypt_RSA/_lib---3rdParty---phpseclib---Crypt---RSA.php.html#defineCRYPT_RSA_PUBLIC_FORMAT_XML">CRYPT_RSA_PUBLIC_FORMAT_XML</a><br> XML formatted public key</dd>
<dt><b>CRYPT_RSA_SIGNATURE_PKCS1</b></dt>
<dd>in file RSA.php, constant <a href="Crypt_RSA/_lib---3rdParty---phpseclib---Crypt---RSA.php.html#defineCRYPT_RSA_SIGNATURE_PKCS1">CRYPT_RSA_SIGNATURE_PKCS1</a><br> Use the PKCS#1 scheme by default.</dd>
<dt><b>CRYPT_RSA_SIGNATURE_PSS</b></dt>
<dd>in file RSA.php, constant <a href="Crypt_RSA/_lib---3rdParty---phpseclib---Crypt---RSA.php.html#defineCRYPT_RSA_SIGNATURE_PSS">CRYPT_RSA_SIGNATURE_PSS</a><br> Use the Probabilistic Signature Scheme for signing</dd>
<dt><b>Crypt_TripleDES</b></dt>
<dd>in file TripleDES.php, method <a href="Crypt_TerraDES/Crypt_TripleDES.html#methodCrypt_TripleDES">Crypt_TripleDES::Crypt_TripleDES()</a><br> Default Constructor.</dd>
<dt><b>Crypt_TripleDES</b></dt>
<dd>in file TripleDES.php, class <a href="Crypt_TerraDES/Crypt_TripleDES.html">Crypt_TripleDES</a><br> Pure-PHP implementation of Triple DES.</dd>
<dt><b>CSSDIR</b></dt>
<dd>in file common.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---common.php.html#defineCSSDIR">CSSDIR</a></dd>
<dt><b>checkEnvironment.inc</b></dt>
<dd>procedural page <a href="main/_lib---checkEnvironment.inc.html">checkEnvironment.inc</a></dd>
<dt><b>config.inc</b></dt>
<dd>procedural page <a href="configuration/_lib---config.inc.html">config.inc</a></dd>
<dt><b>createntlm.inc</b></dt>
<dd>procedural page <a href="modules/_lib---createntlm.inc.html">createntlm.inc</a></dd>
<dt><b>config.php</b></dt>
<dd>procedural page <a href="main/_templates---3rdParty---pla---config---config.php.html">config.php</a></dd>
<dt><b>cmd.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---cmd.php.html">cmd.php</a></dd>
<dt><b>collapse.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Tree/_templates---3rdParty---pla---htdocs---collapse.php.html">collapse.php</a></dd>
<dt><b>common.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---htdocs---common.php.html">common.php</a></dd>
<dt><b>compare.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---compare.php.html">compare.php</a></dd>
<dt><b>compare_form.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---compare_form.php.html">compare_form.php</a></dd>
<dt><b>copy.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---copy.php.html">copy.php</a></dd>
<dt><b>copy_form.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---copy_form.php.html">copy_form.php</a></dd>
<dt><b>create.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---create.php.html">create.php</a></dd>
<dt><b>create_confirm.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---create_confirm.php.html">create_confirm.php</a></dd>
<dt><b>common.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---common.php.html">common.php</a></dd>
<dt><b>config_default.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---config_default.php.html">config_default.php</a></dd>
<dt><b>createlm.php</b></dt>
<dd>procedural page <a href="lam/_templates---3rdParty---pla---lib---createlm.php.html">createlm.php</a></dd>
<dt><b>conflogin.php</b></dt>
<dd>procedural page <a href="configuration/_templates---config---conflogin.php.html">conflogin.php</a></dd>
<dt><b>confmain.php</b></dt>
<dd>procedural page <a href="configuration/_templates---config---confmain.php.html">confmain.php</a></dd>
<dt><b>confmodules.php</b></dt>
<dd>procedural page <a href="configuration/_templates---config---confmodules.php.html">confmodules.php</a></dd>
<dt><b>confsave.php</b></dt>
<dd>procedural page <a href="configuration/_templates---config---confsave.php.html">confsave.php</a></dd>
<dt><b>conftypes.php</b></dt>
<dd>procedural page <a href="configuration/_templates---config---conftypes.php.html">conftypes.php</a></dd>
</dl>
</div>
<a href="elementindex.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>$default</b></dt>
<dd>in file SelectionAttribute.php, variable <a href="phpLDAPadmin/Templates/SelectionAttribute.html#var$default">SelectionAttribute::$default</a></dd>
<dt><b>$default</b></dt>
<dd>in file config_default.php, variable <a href="phpLDAPadmin/Tree/Config.html#var$default">Config::$default</a></dd>
<dt><b>$default</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$default">LAMCfgMain::$default</a><br> Default profile</dd>
<dt><b>$default</b></dt>
<dd>in file ds.php, variable <a href="phpLDAPadmin/DataStore/DS.html#var$default">DS::$default</a></dd>
<dt><b>$DefOrientation</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$DefOrientation">FPDF::$DefOrientation</a></dd>
<dt><b>$DefPageSize</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$DefPageSize">FPDF::$DefPageSize</a></dd>
<dt><b>$descArray</b></dt>
<dd>in file lists.inc, variable <a href="lists/lamList.html#var$descArray">lamList::$descArray</a><br> list of attribute descriptions</dd>
<dt><b>$description</b></dt>
<dd>in file schema_functions.php, variable <a href="phpLDAPadmin/Schema/SchemaItem.html#var$description">SchemaItem::$description</a></dd>
<dt><b>$description</b></dt>
<dd>in file schema.inc, variable <a href="lib/SchemaItem.html#var$description">SchemaItem::$description</a><br> The description of this schema item.</dd>
<dt><b>$description</b></dt>
<dd>in file Template.php, variable <a href="phpLDAPadmin/Templates/Template.html#var$description">Template::$description</a></dd>
<dt><b>$description</b></dt>
<dd>in file Query.php, variable <a href="phpLDAPadmin/Queries/Query.html#var$description">Query::$description</a></dd>
<dt><b>$description</b></dt>
<dd>in file tools.inc, variable <a href="tools/LAMSubTool.html#var$description">LAMSubTool::$description</a><br> tool description</dd>
<dt><b>$diffs</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$diffs">FPDF::$diffs</a></dd>
<dt><b>$display</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$display">Attribute::$display</a></dd>
<dt><b>$dn</b></dt>
<dd>in file TreeItem.php, variable <a href="phpLDAPadmin/Tree/TreeItem.html#var$dn">TreeItem::$dn</a></dd>
<dt><b>$dn</b></dt>
<dd>in file PageRender.php, variable <a href="phpLDAPadmin/Templates/PageRender.html#var$dn">PageRender::$dn</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>$DrawColor</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$DrawColor">FPDF::$DrawColor</a></dd>
<dt><b>Datastore</b></dt>
<dd>in file ds.php, class <a href="phpLDAPadmin/DataStore/Datastore.html">Datastore</a><br> The list of database sources</dd>
<dt><b>DateAttribute</b></dt>
<dd>in file DateAttribute.php, class <a href="phpLDAPadmin/Templates/DateAttribute.html">DateAttribute</a><br> Represents an attribute whose values are dates</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>DEBUGTMP</b></dt>
<dd>in file Visitor.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---Visitor.php.html#defineDEBUGTMP">DEBUGTMP</a></dd>
<dt><b>DEBUGTMPSUB</b></dt>
<dd>in file Visitor.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---Visitor.php.html#defineDEBUGTMPSUB">DEBUGTMPSUB</a></dd>
<dt><b>debug_dump</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functiondebug_dump">debug_dump()</a><br> This function dumps the $variable for debugging purposes</dd>
<dt><b>debug_dump_backtrace</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functiondebug_dump_backtrace">debug_dump_backtrace()</a><br> This function generates a backtrace</dd>
<dt><b>DEBUG_ENABLED</b></dt>
<dd>in file common.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---common.php.html#defineDEBUG_ENABLED">DEBUG_ENABLED</a></dd>
<dt><b>debug_log</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functiondebug_log">debug_log()</a><br> Debug Logging</dd>
<dt><b>debug_sysmsg</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functiondebug_sysmsg">debug_sysmsg()</a><br> Send a debug as a sys message</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>decrypt</b></dt>
<dd>in file Rijndael.php, method <a href="Crypt_Rijndael/Crypt_Rijndael.html#methoddecrypt">Crypt_Rijndael::decrypt()</a><br> Decrypts a message.</dd>
<dt><b>decrypt</b></dt>
<dd>in file RC4.php, method <a href="Crypt_RC4/Crypt_RC4.html#methoddecrypt">Crypt_RC4::decrypt()</a><br> Decrypts a message.</dd>
<dt><b>decrypt</b></dt>
<dd>in file AES.php, method <a href="Crypt_AES/Crypt_AES.html#methoddecrypt">Crypt_AES::decrypt()</a><br> Decrypts a message.</dd>
<dt><b>decrypt</b></dt>
<dd>in file DES.php, method <a href="Crypt_DES/Crypt_DES.html#methoddecrypt">Crypt_DES::decrypt()</a><br> Decrypts a message.</dd>
<dt><b>decrypt</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methoddecrypt">Crypt_RSA::decrypt()</a><br> Decryption</dd>
<dt><b>decrypt</b></dt>
<dd>in file TripleDES.php, method <a href="Crypt_TerraDES/Crypt_TripleDES.html#methoddecrypt">Crypt_TripleDES::decrypt()</a><br> Decrypts a message.</dd>
<dt><b>decrypt</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#methoddecrypt">Ldap::decrypt()</a><br> Decrypts a string</dd>
<dt><b>decryptBlock</b></dt>
<dd>in file blowfish.php, method <a href="horde-cipher/Horde_Cipher_blowfish.html#methoddecryptBlock">Horde_Cipher_blowfish::decryptBlock()</a><br> Decrypt a block on data.</dd>
<dt><b>decrypt_login</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#methoddecrypt_login">Ldap::decrypt_login()</a><br> Decrypts username and password</dd>
<dt><b>delAccountProfile</b></dt>
<dd>in file profiles.inc, function <a href="profiles/_lib---profiles.inc.html#functiondelAccountProfile">delAccountProfile()</a><br> Deletes an account profile</dd>
<dt><b>delChild</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methoddelChild">TreeItem::delChild()</a><br> Delete a child from this DN entry.</dd>
<dt><b>delEntry</b></dt>
<dd>in file Tree.php, method <a href="phpLDAPadmin/Tree/Tree.html#methoddelEntry">Tree::delEntry()</a><br> Delete an entry from the tree view ; the entry is deleted from the children array of its parent</dd>
<dt><b>delete</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#methoddelete">ldap_pla::delete()</a><br> Delete objects</dd>
<dt><b>delete</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methoddelete">Net_SFTP::delete()</a><br> Deletes a file on the SFTP server.</dd>
<dt><b>deleteDN</b></dt>
<dd>in file delete.php, function <a href="main/_templates---delete.php.html#functiondeleteDN">deleteDN()</a><br> Deletes a DN and all child entries.</dd>
<dt><b>deletePDFStructureDefinition</b></dt>
<dd>in file pdfstruct.inc, function <a href="PDF/_lib---pdfstruct.inc.html#functiondeletePDFStructureDefinition">deletePDFStructureDefinition()</a><br> Deletes XML file with PDF structure definitions.</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>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>delValue</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methoddelValue">Attribute::delValue()</a></dd>
<dt><b>del_cached_item</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functiondel_cached_item">del_cached_item()</a><br> Deletes the cache for a specified $item for the specified $index</dd>
<dt><b>deobfuscateText</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functiondeobfuscateText">deobfuscateText()</a><br> Simple function to deobfuscate strings.</dd>
<dt><b>destroy</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#methoddestroy">Ldap::destroy()</a><br> Closes connection to LDAP server and deletes encrypted username/password</dd>
<dt><b>dhcp</b></dt>
<dd>in file dhcp.inc, class <a href="types/dhcp.html">dhcp</a><br> The account type for DHCP</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>disableContinuousBuffer</b></dt>
<dd>in file RC4.php, method <a href="Crypt_RC4/Crypt_RC4.html#methoddisableContinuousBuffer">Crypt_RC4::disableContinuousBuffer()</a><br> Treat consecutive packets as if they are a discontinuous buffer.</dd>
<dt><b>disableContinuousBuffer</b></dt>
<dd>in file TripleDES.php, method <a href="Crypt_TerraDES/Crypt_TripleDES.html#methoddisableContinuousBuffer">Crypt_TripleDES::disableContinuousBuffer()</a><br> Treat consecutive packets as if they are a discontinuous buffer.</dd>
<dt><b>disableContinuousBuffer</b></dt>
<dd>in file Rijndael.php, method <a href="Crypt_Rijndael/Crypt_Rijndael.html#methoddisableContinuousBuffer">Crypt_Rijndael::disableContinuousBuffer()</a><br> Treat consecutive packets as if they are a discontinuous buffer.</dd>
<dt><b>disableContinuousBuffer</b></dt>
<dd>in file DES.php, method <a href="Crypt_DES/Crypt_DES.html#methoddisableContinuousBuffer">Crypt_DES::disableContinuousBuffer()</a><br> Treat consecutive packets as if they are a discontinuous buffer.</dd>
<dt><b>disablePadding</b></dt>
<dd>in file RC4.php, method <a href="Crypt_RC4/Crypt_RC4.html#methoddisablePadding">Crypt_RC4::disablePadding()</a><br> Dummy function.</dd>
<dt><b>disablePadding</b></dt>
<dd>in file DES.php, method <a href="Crypt_DES/Crypt_DES.html#methoddisablePadding">Crypt_DES::disablePadding()</a><br> Do not pad packets.</dd>
<dt><b>disablePadding</b></dt>
<dd>in file Rijndael.php, method <a href="Crypt_Rijndael/Crypt_Rijndael.html#methoddisablePadding">Crypt_Rijndael::disablePadding()</a><br> Do not pad packets.</dd>
<dt><b>disablePadding</b></dt>
<dd>in file TripleDES.php, method <a href="Crypt_TerraDES/Crypt_TripleDES.html#methoddisablePadding">Crypt_TripleDES::disablePadding()</a><br> Do not pad packets.</dd>
<dt><b>disconnect</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methoddisconnect">Net_SSH1::disconnect()</a><br> Disconnect</dd>
<dt><b>disconnect</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methoddisconnect">Net_SSH2::disconnect()</a><br> Disconnect</dd>
<dt><b>display</b></dt>
<dd>in file page.php, method <a href="phpLDAPadmin/Page/page.html#methoddisplay">page::display()</a></dd>
<dt><b>displayHelp</b></dt>
<dd>in file help.php, function <a href="Help/_templates---help.php.html#functiondisplayHelp">displayHelp()</a><br> Print help site for a specific help number.</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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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_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 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 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_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_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_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 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_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_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 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>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_LoginPage</b></dt>
<dd>in file login.php, function <a href="main/_templates---login.php.html#functiondisplay_LoginPage">display_LoginPage()</a><br> Displays the login window.</dd>
<dt><b>display_main</b></dt>
<dd>in file ou_edit.php, function <a href="tools/_templates---ou_edit.php.html#functiondisplay_main">display_main()</a><br> Displays the main page of the OU editor</dd>
<dt><b>display_pla_parse_error</b></dt>
<dd>in file import.php, function <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---import.php.html#functiondisplay_pla_parse_error">display_pla_parse_error()</a></dd>
<dt><b>divide</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methoddivide">Math_BigInteger::divide()</a><br> Divides two BigIntegers.</dd>
<dt><b>DnAttribute</b></dt>
<dd>in file DnAttribute.php, class <a href="phpLDAPadmin/Templates/DnAttribute.html">DnAttribute</a><br> Represents an attribute whose values are DNs</dd>
<dt><b>dnExists</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methoddnExists">myldap::dnExists()</a><br> Gets whether an entry exists based on its DN. If the entry exists, returns true. Otherwise returns false.</dd>
<dt><b>dn_escape</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functiondn_escape">dn_escape()</a><br> Parse a DN and escape any special characters</dd>
<dt><b>dn_unescape</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functiondn_unescape">dn_unescape()</a><br> Parse a DN and unescape any special characters</dd>
<dt><b>DOCDIR</b></dt>
<dd>in file functions.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#defineDOCDIR">DOCDIR</a></dd>
<dt><b>doHash</b></dt>
<dd>in file createntlm.inc, method <a href="modules/smbHash.html#methoddoHash">smbHash::doHash()</a></dd>
<dt><b>doHash</b></dt>
<dd>in file createlm.php, method <a href="lam/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 modules.inc, function <a href="modules/_lib---modules.inc.html#functiondoUploadPostActions">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 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>draw</b></dt>
<dd>in file Tree.php, method <a href="phpLDAPadmin/Tree/Tree.html#methoddraw">Tree::draw()</a><br> Displays the LDAP tree</dd>
<dt><b>draw</b></dt>
<dd>in file page.php, method <a href="phpLDAPadmin/Page/block.html#methoddraw">block::draw()</a></dd>
<dt><b>draw</b></dt>
<dd>in file HTMLTree.php, method <a href="phpLDAPadmin/Tree/HTMLTree.html#methoddraw">HTMLTree::draw()</a><br> Displays the tree in HTML</dd>
<dt><b>drawBlurJavascriptAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawBlurJavascriptAttribute">TemplateRender::drawBlurJavascriptAttribute()</a></dd>
<dt><b>drawCheckLinkPasswordAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawCheckLinkPasswordAttribute">TemplateRender::drawCheckLinkPasswordAttribute()</a></dd>
<dt><b>drawContainerChooser</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawContainerChooser">TemplateRender::drawContainerChooser()</a><br> Container Chooser</dd>
<dt><b>drawCurrentValueAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawCurrentValueAttribute">PageRender::drawCurrentValueAttribute()</a><br> Draw the current specific value of an attribute</dd>
<dt><b>drawCurrentValueBinaryAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawCurrentValueBinaryAttribute">PageRender::drawCurrentValueBinaryAttribute()</a></dd>
<dt><b>drawCurrentValueJpegAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawCurrentValueJpegAttribute">PageRender::drawCurrentValueJpegAttribute()</a><br> Draw a Jpeg Attribute</dd>
<dt><b>drawCurrentValuePasswordAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawCurrentValuePasswordAttribute">PageRender::drawCurrentValuePasswordAttribute()</a></dd>
<dt><b>drawCurrentValuesAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawCurrentValuesAttribute">PageRender::drawCurrentValuesAttribute()</a><br> DRAW DISPLAYED CURRENT VALUES *</dd>
<dt><b>drawDefaultHelperPasswordAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawDefaultHelperPasswordAttribute">TemplateRender::drawDefaultHelperPasswordAttribute()</a></dd>
<dt><b>drawDefaultHelperSambaPasswordAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawDefaultHelperSambaPasswordAttribute">TemplateRender::drawDefaultHelperSambaPasswordAttribute()</a></dd>
<dt><b>drawDnValueIconAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawDnValueIconAttribute">TemplateRender::drawDnValueIconAttribute()</a></dd>
<dt><b>drawEndValueLineAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawEndValueLineAttribute">TemplateRender::drawEndValueLineAttribute()</a></dd>
<dt><b>drawFillJavascriptAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawFillJavascriptAttribute">TemplateRender::drawFillJavascriptAttribute()</a></dd>
<dt><b>drawFocusJavascriptAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawFocusJavascriptAttribute">TemplateRender::drawFocusJavascriptAttribute()</a></dd>
<dt><b>drawForm</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawForm">TemplateRender::drawForm()</a></dd>
<dt><b>drawFormEnd</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawFormEnd">TemplateRender::drawFormEnd()</a></dd>
<dt><b>drawFormReadOnlyValueAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadOnlyValueAttribute">PageRender::drawFormReadOnlyValueAttribute()</a></dd>
<dt><b>drawFormReadOnlyValueBinaryAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadOnlyValueBinaryAttribute">PageRender::drawFormReadOnlyValueBinaryAttribute()</a></dd>
<dt><b>drawFormReadOnlyValueJpegAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadOnlyValueJpegAttribute">PageRender::drawFormReadOnlyValueJpegAttribute()</a></dd>
<dt><b>drawFormReadOnlyValueMultiLineAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadOnlyValueMultiLineAttribute">PageRender::drawFormReadOnlyValueMultiLineAttribute()</a></dd>
<dt><b>drawFormReadOnlyValuePasswordAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadOnlyValuePasswordAttribute">PageRender::drawFormReadOnlyValuePasswordAttribute()</a></dd>
<dt><b>drawFormReadOnlyValueShadowAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadOnlyValueShadowAttribute">PageRender::drawFormReadOnlyValueShadowAttribute()</a></dd>
<dt><b>drawFormReadWriteValueAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadWriteValueAttribute">PageRender::drawFormReadWriteValueAttribute()</a></dd>
<dt><b>drawFormReadWriteValueBinaryAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadWriteValueBinaryAttribute">PageRender::drawFormReadWriteValueBinaryAttribute()</a></dd>
<dt><b>drawFormReadWriteValueDateAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadWriteValueDateAttribute">PageRender::drawFormReadWriteValueDateAttribute()</a></dd>
<dt><b>drawFormReadWriteValueDnAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadWriteValueDnAttribute">PageRender::drawFormReadWriteValueDnAttribute()</a></dd>
<dt><b>drawFormReadWriteValueGidAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadWriteValueGidAttribute">PageRender::drawFormReadWriteValueGidAttribute()</a></dd>
<dt><b>drawFormReadWriteValueMultiLineAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadWriteValueMultiLineAttribute">PageRender::drawFormReadWriteValueMultiLineAttribute()</a></dd>
<dt><b>drawFormReadWriteValuePasswordAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadWriteValuePasswordAttribute">PageRender::drawFormReadWriteValuePasswordAttribute()</a></dd>
<dt><b>drawFormReadWriteValueSelectionAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadWriteValueSelectionAttribute">PageRender::drawFormReadWriteValueSelectionAttribute()</a></dd>
<dt><b>drawFormReadWriteValueShadowAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormReadWriteValueShadowAttribute">PageRender::drawFormReadWriteValueShadowAttribute()</a></dd>
<dt><b>drawFormStart</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawFormStart">TemplateRender::drawFormStart()</a><br> FORM METHODS *</dd>
<dt><b>drawFormSubmitButton</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawFormSubmitButton">TemplateRender::drawFormSubmitButton()</a></dd>
<dt><b>drawFormValueAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormValueAttribute">PageRender::drawFormValueAttribute()</a><br> Draw a input value for an attribute - used in a form.</dd>
<dt><b>drawFormValueObjectClassAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawFormValueObjectClassAttribute">PageRender::drawFormValueObjectClassAttribute()</a></dd>
<dt><b>drawHelperAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawHelperAttribute">TemplateRender::drawHelperAttribute()</a></dd>
<dt><b>drawHiddenAttributes</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawHiddenAttributes">PageRender::drawHiddenAttributes()</a><br> Draw all hidden attributes</dd>
<dt><b>drawHiddenValueAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawHiddenValueAttribute">PageRender::drawHiddenValueAttribute()</a><br> Draw specific hidden attribute</dd>
<dt><b>drawHiddenValueBinaryAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawHiddenValueBinaryAttribute">PageRender::drawHiddenValueBinaryAttribute()</a><br> Draw specific hidden binary attribute</dd>
<dt><b>drawIconAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawIconAttribute">TemplateRender::drawIconAttribute()</a><br> DRAW ICONS FOR ATTRIBUTES VALUES *</dd>
<dt><b>drawIconDnAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawIconDnAttribute">TemplateRender::drawIconDnAttribute()</a><br> DN ATTRIBUTES *</dd>
<dt><b>drawIconObjectClassAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawIconObjectClassAttribute">TemplateRender::drawIconObjectClassAttribute()</a><br> OBJECT CLASS ATTRIBUTE *</dd>
<dt><b>drawIconSelectionAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawIconSelectionAttribute">TemplateRender::drawIconSelectionAttribute()</a><br> SELECTION ATTRIBUTE RENDERING *</dd>
<dt><b>drawInternalAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawInternalAttribute">TemplateRender::drawInternalAttribute()</a></dd>
<dt><b>drawInternalAttributes</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawInternalAttributes">TemplateRender::drawInternalAttributes()</a><br> INTERNAL ATTRIBUTES *</dd>
<dt><b>drawJavascript</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawJavascript">TemplateRender::drawJavascript()</a><br> DRAW PAGE JAVACRIPT</dd>
<dt><b>drawJavascriptAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawJavascriptAttribute">TemplateRender::drawJavascriptAttribute()</a><br> javacript</dd>
<dt><b>drawJavascriptBinaryAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawJavascriptBinaryAttribute">TemplateRender::drawJavascriptBinaryAttribute()</a><br> BINARY ATTRIBUTE RENDERING *</dd>
<dt><b>drawJavaScriptDateAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawJavaScriptDateAttribute">TemplateRender::drawJavaScriptDateAttribute()</a><br> DATE ATTRIBUTE RENDERING *</dd>
<dt><b>drawJavascriptPasswordAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawJavascriptPasswordAttribute">TemplateRender::drawJavascriptPasswordAttribute()</a><br> PASSWORD ATTRIBUTES *</dd>
<dt><b>drawJavascriptRandomPasswordAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawJavascriptRandomPasswordAttribute">TemplateRender::drawJavascriptRandomPasswordAttribute()</a><br> This will draw the javascript that displays to the user the random password generated</dd>
<dt><b>drawMailValueIconAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawMailValueIconAttribute">TemplateRender::drawMailValueIconAttribute()</a></dd>
<dt><b>drawMassFormReadWriteValueAttribute</b></dt>
<dd>in file MassRender.php, method <a href="phpLDAPadmin/Templates/MassRender.html#methoddrawMassFormReadWriteValueAttribute">MassRender::drawMassFormReadWriteValueAttribute()</a></dd>
<dt><b>drawMassFormReadWriteValueBinaryAttribute</b></dt>
<dd>in file MassRender.php, method <a href="phpLDAPadmin/Templates/MassRender.html#methoddrawMassFormReadWriteValueBinaryAttribute">MassRender::drawMassFormReadWriteValueBinaryAttribute()</a></dd>
<dt><b>drawMassFormReadWriteValueJpegAttribute</b></dt>
<dd>in file MassRender.php, method <a href="phpLDAPadmin/Templates/MassRender.html#methoddrawMassFormReadWriteValueJpegAttribute">MassRender::drawMassFormReadWriteValueJpegAttribute()</a></dd>
<dt><b>drawMenuAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawMenuAttribute">TemplateRender::drawMenuAttribute()</a><br> ATTRIBUTE MENU *</dd>
<dt><b>drawNameAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawNameAttribute">PageRender::drawNameAttribute()</a><br> DRAW ATTRIBUTE NAME *</dd>
<dt><b>drawNotesAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawNotesAttribute">PageRender::drawNotesAttribute()</a><br> ATTRIBUTE NOTES</dd>
<dt><b>drawObjectClassChooser</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawObjectClassChooser">TemplateRender::drawObjectClassChooser()</a><br> Object Class Chooser</dd>
<dt><b>drawOldValueAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawOldValueAttribute">PageRender::drawOldValueAttribute()</a></dd>
<dt><b>drawOldValueBinaryAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawOldValueBinaryAttribute">PageRender::drawOldValueBinaryAttribute()</a></dd>
<dt><b>drawOldValueJpegAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawOldValueJpegAttribute">PageRender::drawOldValueJpegAttribute()</a><br> Draw a Jpeg Attribute</dd>
<dt><b>drawOldValuePasswordAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawOldValuePasswordAttribute">PageRender::drawOldValuePasswordAttribute()</a></dd>
<dt><b>drawOldValuesAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawOldValuesAttribute">PageRender::drawOldValuesAttribute()</a><br> DRAW DISPLAYED OLD VALUES *</dd>
<dt><b>drawRDNChooser</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawRDNChooser">TemplateRender::drawRDNChooser()</a><br> RDN Chooser</dd>
<dt><b>drawRequiredSymbolAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawRequiredSymbolAttribute">TemplateRender::drawRequiredSymbolAttribute()</a></dd>
<dt><b>drawSelectorPopupDateAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawSelectorPopupDateAttribute">TemplateRender::drawSelectorPopupDateAttribute()</a><br> Draws an HTML date selector button which, when clicked, pops up a date selector dialog.</dd>
<dt><b>drawShadowDateShadowAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawShadowDateShadowAttribute">PageRender::drawShadowDateShadowAttribute()</a></dd>
<dt><b>drawStartValueLineAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawStartValueLineAttribute">TemplateRender::drawStartValueLineAttribute()</a><br> ATTRIBUTE LINE *</dd>
<dt><b>drawStepForm</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawStepForm">TemplateRender::drawStepForm()</a></dd>
<dt><b>drawSubTitle</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawSubTitle">TemplateRender::drawSubTitle()</a></dd>
<dt><b>drawSubTitle</b></dt>
<dd>in file QueryRender.php, method <a href="phpLDAPadmin/Templates/QueryRender.html#methoddrawSubTitle">QueryRender::drawSubTitle()</a></dd>
<dt><b>drawSubTitle</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawSubTitle">PageRender::drawSubTitle()</a></dd>
<dt><b>drawTemplateAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawTemplateAttribute">TemplateRender::drawTemplateAttribute()</a></dd>
<dt><b>drawTemplateChoice</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawTemplateChoice">TemplateRender::drawTemplateChoice()</a><br> Present a list of available templates for creating and editing LDAP entries</dd>
<dt><b>drawTemplateChoice</b></dt>
<dd>in file QueryRender.php, method <a href="phpLDAPadmin/Templates/QueryRender.html#methoddrawTemplateChoice">QueryRender::drawTemplateChoice()</a></dd>
<dt><b>drawTemplateValuesAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawTemplateValuesAttribute">TemplateRender::drawTemplateValuesAttribute()</a></dd>
<dt><b>drawTitle</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawTitle">TemplateRender::drawTitle()</a></dd>
<dt><b>drawTitle</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methoddrawTitle">PageRender::drawTitle()</a></dd>
<dt><b>drawTitleAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawTitleAttribute">TemplateRender::drawTitleAttribute()</a><br> ATTRIBUTE TITLE *</dd>
<dt><b>drawUrlValueIconAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawUrlValueIconAttribute">TemplateRender::drawUrlValueIconAttribute()</a></dd>
<dt><b>drawValidateJavascriptAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawValidateJavascriptAttribute">TemplateRender::drawValidateJavascriptAttribute()</a></dd>
<dt><b>drawValueAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methoddrawValueAttribute">TemplateRender::drawValueAttribute()</a><br> values *</dd>
<dt><b>draw_children</b></dt>
<dd>in file AJAXTree.php, method <a href="phpLDAPadmin/Tree/AJAXTree.html#methoddraw_children">AJAXTree::draw_children()</a><br> Expand and draw a child entry, when it is clicked on. This is using AJAX just to render this section of the tree.</dd>
<dt><b>draw_chooser_link</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functiondraw_chooser_link">draw_chooser_link()</a><br> Draws an HTML browse button which, when clicked, pops up a DN chooser dialog.</dd>
<dt><b>draw_create_link</b></dt>
<dd>in file HTMLTree.php, method <a href="phpLDAPadmin/Tree/HTMLTree.html#methoddraw_create_link">HTMLTree::draw_create_link()</a><br> Print the HTML to show the "create new entry here".</dd>
<dt><b>draw_formatted_dn</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functiondraw_formatted_dn">draw_formatted_dn()</a><br> Gets a DN string using the user-configured tree_display_format string to format it.</dd>
<dt><b>draw_item</b></dt>
<dd>in file AJAXTree.php, method <a href="phpLDAPadmin/Tree/AJAXTree.html#methoddraw_item">AJAXTree::draw_item()</a><br> Draw a node of the tree</dd>
<dt><b>draw_item</b></dt>
<dd>in file HTMLTree.php, method <a href="phpLDAPadmin/Tree/HTMLTree.html#methoddraw_item">HTMLTree::draw_item()</a><br> Recursively descend on the given dn and draw the tree in html</dd>
<dt><b>draw_javascript</b></dt>
<dd>in file HTMLTree.php, method <a href="phpLDAPadmin/Tree/HTMLTree.html#methoddraw_javascript">HTMLTree::draw_javascript()</a><br> If there is javascript, draw it</dd>
<dt><b>draw_javascript</b></dt>
<dd>in file AJAXTree.php, method <a href="phpLDAPadmin/Tree/AJAXTree.html#methoddraw_javascript">AJAXTree::draw_javascript()</a><br> Draw the javascript to support the tree.</dd>
<dt><b>draw_jpeg_photo</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functiondraw_jpeg_photo">draw_jpeg_photo()</a><br> Draw the jpegPhoto image(s) for an entry wrapped in HTML. Many options are available to specify how the images are to be displayed.</dd>
<dt><b>draw_logged_in_user</b></dt>
<dd>in file HTMLTree.php, method <a href="phpLDAPadmin/Tree/HTMLTree.html#methoddraw_logged_in_user">HTMLTree::draw_logged_in_user()</a><br> Draw the Logged in User</dd>
<dt><b>draw_login_link</b></dt>
<dd>in file HTMLTree.php, method <a href="phpLDAPadmin/Tree/HTMLTree.html#methoddraw_login_link">HTMLTree::draw_login_link()</a><br> Draw login link</dd>
<dt><b>draw_menu</b></dt>
<dd>in file HTMLTree.php, method <a href="phpLDAPadmin/Tree/HTMLTree.html#methoddraw_menu">HTMLTree::draw_menu()</a><br> Draw the tree menu options</dd>
<dt><b>draw_server_name</b></dt>
<dd>in file HTMLTree.php, method <a href="phpLDAPadmin/Tree/HTMLTree.html#methoddraw_server_name">HTMLTree::draw_server_name()</a><br> Draw the server name</dd>
<dt><b>DS</b></dt>
<dd>in file ds.php, class <a href="phpLDAPadmin/DataStore/DS.html">DS</a><br> This abstract class provides the basic variables and methods.</dd>
<dt><b>DES.php</b></dt>
<dd>procedural page <a href="Crypt_DES/_lib---3rdParty---phpseclib---Crypt---DES.php.html">DES.php</a></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>
<dt><b>dhcp.inc</b></dt>
<dd>procedural page <a href="types/_lib---types---dhcp.inc.html">dhcp.inc</a></dd>
<dt><b>delete.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---delete.php.html">delete.php</a></dd>
<dt><b>delete_attr.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---delete_attr.php.html">delete_attr.php</a></dd>
<dt><b>delete_form.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---delete_form.php.html">delete_form.php</a></dd>
<dt><b>download_binary_attr.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---download_binary_attr.php.html">download_binary_attr.php</a></dd>
<dt><b>draw_tree_node.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Tree/_templates---3rdParty---pla---htdocs---draw_tree_node.php.html">draw_tree_node.php</a></dd>
<dt><b>DateAttribute.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---DateAttribute.php.html">DateAttribute.php</a></dd>
<dt><b>DnAttribute.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---DnAttribute.php.html">DnAttribute.php</a></dd>
<dt><b>ds.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---ds.php.html">ds.php</a></dd>
<dt><b>ds_ldap_pla.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---ds_ldap_pla.php.html">ds_ldap_pla.php</a></dd>
<dt><b>ds_myldap.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---ds_myldap.php.html">ds_myldap.php</a></dd>
<dt><b>delete.php</b></dt>
<dd>procedural page <a href="main/_templates---delete.php.html">delete.php</a></dd>
<dt><b>deletelink.php</b></dt>
<dd>procedural page <a href="lists/_templates---lists---deletelink.php.html">deletelink.php</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="e"></a>
<div>
<h2>e</h2>
<dl>
<dt><b>$entries</b></dt>
<dd>in file lists.inc, variable <a href="lists/lamList.html#var$entries">lamList::$entries</a><br> LDAP entries</dd>
<dt><b>$entries</b></dt>
<dd>in file Tree.php, variable <a href="phpLDAPadmin/Tree/Tree.html#var$entries">Tree::$entries</a></dd>
<dt><b>$equality</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$equality">AttributeType::$equality</a><br> The equality rule used</dd>
<dt><b>$error</b></dt>
<dd>in file import_functions.php, variable <a href="phpLDAPadmin/Import/ImportLDIF.html#var$error">ImportLDIF::$error</a></dd>
<dt><b>echoHTMLFoot</b></dt>
<dd>in file help.php, function <a href="Help/_templates---help.php.html#functionechoHTMLFoot">echoHTMLFoot()</a><br> Print HTML footer of the help page.</dd>
<dt><b>echoHTMLHead</b></dt>
<dd>in file help.php, function <a href="Help/_templates---help.php.html#functionechoHTMLHead">echoHTMLHead()</a><br> Print HTML header of the help page.</dd>
<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>enableContinuousBuffer</b></dt>
<dd>in file Rijndael.php, method <a href="Crypt_Rijndael/Crypt_Rijndael.html#methodenableContinuousBuffer">Crypt_Rijndael::enableContinuousBuffer()</a><br> Treat consecutive "packets" as if they are a continuous buffer.</dd>
<dt><b>enableContinuousBuffer</b></dt>
<dd>in file DES.php, method <a href="Crypt_DES/Crypt_DES.html#methodenableContinuousBuffer">Crypt_DES::enableContinuousBuffer()</a><br> Treat consecutive "packets" as if they are a continuous buffer.</dd>
<dt><b>enableContinuousBuffer</b></dt>
<dd>in file RC4.php, method <a href="Crypt_RC4/Crypt_RC4.html#methodenableContinuousBuffer">Crypt_RC4::enableContinuousBuffer()</a><br> Treat consecutive "packets" as if they are a continuous buffer.</dd>
<dt><b>enableContinuousBuffer</b></dt>
<dd>in file TripleDES.php, method <a href="Crypt_TerraDES/Crypt_TripleDES.html#methodenableContinuousBuffer">Crypt_TripleDES::enableContinuousBuffer()</a><br> Treat consecutive "packets" as if they are a continuous buffer.</dd>
<dt><b>enablePadding</b></dt>
<dd>in file Rijndael.php, method <a href="Crypt_Rijndael/Crypt_Rijndael.html#methodenablePadding">Crypt_Rijndael::enablePadding()</a><br> Pad "packets".</dd>
<dt><b>enablePadding</b></dt>
<dd>in file TripleDES.php, method <a href="Crypt_TerraDES/Crypt_TripleDES.html#methodenablePadding">Crypt_TripleDES::enablePadding()</a><br> Pad "packets".</dd>
<dt><b>enablePadding</b></dt>
<dd>in file RC4.php, method <a href="Crypt_RC4/Crypt_RC4.html#methodenablePadding">Crypt_RC4::enablePadding()</a><br> Dummy function.</dd>
<dt><b>enablePadding</b></dt>
<dd>in file DES.php, method <a href="Crypt_DES/Crypt_DES.html#methodenablePadding">Crypt_DES::enablePadding()</a><br> Pad "packets".</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>encrypt</b></dt>
<dd>in file RC4.php, method <a href="Crypt_RC4/Crypt_RC4.html#methodencrypt">Crypt_RC4::encrypt()</a><br> Encrypts a message.</dd>
<dt><b>encrypt</b></dt>
<dd>in file DES.php, method <a href="Crypt_DES/Crypt_DES.html#methodencrypt">Crypt_DES::encrypt()</a><br> Encrypts a message.</dd>
<dt><b>encrypt</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#methodencrypt">Ldap::encrypt()</a><br> Encrypts a string</dd>
<dt><b>encrypt</b></dt>
<dd>in file AES.php, method <a href="Crypt_AES/Crypt_AES.html#methodencrypt">Crypt_AES::encrypt()</a><br> Encrypts a message.</dd>
<dt><b>encrypt</b></dt>
<dd>in file TripleDES.php, method <a href="Crypt_TerraDES/Crypt_TripleDES.html#methodencrypt">Crypt_TripleDES::encrypt()</a><br> Encrypts a message.</dd>
<dt><b>encrypt</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodencrypt">Crypt_RSA::encrypt()</a><br> Encryption</dd>
<dt><b>encrypt</b></dt>
<dd>in file Rijndael.php, method <a href="Crypt_Rijndael/Crypt_Rijndael.html#methodencrypt">Crypt_Rijndael::encrypt()</a><br> Encrypts a message.</dd>
<dt><b>encryptBlock</b></dt>
<dd>in file blowfish.php, method <a href="horde-cipher/Horde_Cipher_blowfish.html#methodencryptBlock">Horde_Cipher_blowfish::encryptBlock()</a><br> Encrypt a block on data.</dd>
<dt><b>encrypt_login</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#methodencrypt_login">Ldap::encrypt_login()</a><br> Encrypts username and password</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>eof</b></dt>
<dd>in file import_functions.php, method <a href="phpLDAPadmin/Import/ImportLDIF.html#methodeof">ImportLDIF::eof()</a><br> Returns true if we reached the end of the input.</dd>
<dt><b>equals</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodequals">Math_BigInteger::equals()</a><br> Tests the equality of two numbers.</dd>
<dt><b>error</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionerror">error()</a><br> Display an error message in the system message panel of the page.</dd>
<dt><b>Error</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodError">FPDF::Error()</a></dd>
<dt><b>escapeDN</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionescapeDN">escapeDN()</a><br> Escapes any special characters in an LDAP DN.</dd>
<dt><b>escapeDN</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodescapeDN">myldap::escapeDN()</a><br> Parse a DN and escape any special characters</dd>
<dt><b>exec</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodexec">Net_SSH2::exec()</a><br> Execute Command</dd>
<dt><b>exec</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodexec">Net_SSH1::exec()</a><br> Executes a command on a non-interactive shell, returns the output, and quits.</dd>
<dt><b>expand_dn_with_base</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionexpand_dn_with_base">expand_dn_with_base()</a><br> Appends a servers base to a "sub" dn or returns the base.</dd>
<dt><b>export</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/ExportLDIF.html#methodexport">ExportLDIF::export()</a><br> Export entries to LDIF format</dd>
<dt><b>export</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/ExportCSV.html#methodexport">ExportCSV::export()</a></dd>
<dt><b>export</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/ExportVCARD.html#methodexport">ExportVCARD::export()</a><br> Export entries to VCARD format</dd>
<dt><b>export</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/ExportDSML.html#methodexport">ExportDSML::export()</a><br> Export entries to DSML format</dd>
<dt><b>Export</b></dt>
<dd>in file export_functions.php, class <a href="phpLDAPadmin/Export/Export.html">Export</a><br> Export Class</dd>
<dt><b>ExportCSV</b></dt>
<dd>in file export_functions.php, class <a href="phpLDAPadmin/Export/ExportCSV.html">ExportCSV</a><br> Export entries to CSV</dd>
<dt><b>ExportDSML</b></dt>
<dd>in file export_functions.php, class <a href="phpLDAPadmin/Export/ExportDSML.html">ExportDSML</a><br> Export entries to DSML v.1</dd>
<dt><b>Exporter</b></dt>
<dd>in file export_functions.php, class <a href="phpLDAPadmin/Export/Exporter.html">Exporter</a><br> Exporter Class</dd>
<dt><b>ExportLDIF</b></dt>
<dd>in file export_functions.php, class <a href="phpLDAPadmin/Export/ExportLDIF.html">ExportLDIF</a><br> Export from LDAP using an LDIF format</dd>
<dt><b>ExportVCARD</b></dt>
<dd>in file export_functions.php, class <a href="phpLDAPadmin/Export/ExportVCARD.html">ExportVCARD</a><br> Export entries to VCARD v2.1</dd>
<dt><b>extendedGCD</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodextendedGCD">Math_BigInteger::extendedGCD()</a><br> Calculates the greatest common divisor and Bzout's identity.</dd>
<dt><b>extractDNSuffix</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionextractDNSuffix">extractDNSuffix()</a><br> Extracts the DN suffix from a given DN.</dd>
<dt><b>extractRDNAttribute</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionextractRDNAttribute">extractRDNAttribute()</a><br> Extracts the RDN attribute name from a given DN.</dd>
<dt><b>E_STRICT</b></dt>
<dd>in file common.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---common.php.html#defineE_STRICT">E_STRICT</a></dd>
<dt><b>eduPerson.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---eduPerson.inc.html">eduPerson.inc</a></dd>
<dt><b>entry_chooser.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---entry_chooser.php.html">entry_chooser.php</a></dd>
<dt><b>expand.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Tree/_templates---3rdParty---pla---htdocs---expand.php.html">expand.php</a></dd>
<dt><b>export.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---export.php.html">export.php</a></dd>
<dt><b>export_form.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---export_form.php.html">export_form.php</a></dd>
<dt><b>emuhash_functions.php</b></dt>
<dd>procedural page <a href="default/_templates---3rdParty---pla---lib---emuhash_functions.php.html">emuhash_functions.php</a></dd>
<dt><b>export_functions.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---export_functions.php.html">export_functions.php</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.html#top">top</a><br>
<hr />
<a name="f"></a>
<div>
<h2>f</h2>
<dl>
<dt><b>$filename</b></dt>
<dd>in file xmlTemplates.php, variable <a href="phpLDAPadmin/Templates/xmlTemplate.html#var$filename">xmlTemplate::$filename</a></dd>
<dt><b>$filenames</b></dt>
<dd>in file BinaryAttribute.php, variable <a href="phpLDAPadmin/Templates/BinaryAttribute.html#var$filenames">BinaryAttribute::$filenames</a></dd>
<dt><b>$filepaths</b></dt>
<dd>in file BinaryAttribute.php, variable <a href="phpLDAPadmin/Templates/BinaryAttribute.html#var$filepaths">BinaryAttribute::$filepaths</a></dd>
<dt><b>$FillColor</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$FillColor">FPDF::$FillColor</a></dd>
<dt><b>$filterPart</b></dt>
<dd>in file lists.inc, variable <a href="lists/lamList.html#var$filterPart">lamList::$filterPart</a><br> LDAP filter part which was entered by user via filter boxes</dd>
<dt><b>$filterText</b></dt>
<dd>in file lists.inc, variable <a href="lists/lamList.html#var$filterText">lamList::$filterText</a><br> filter string to include in URL</dd>
<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>$FontFamily</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$FontFamily">FPDF::$FontFamily</a></dd>
<dt><b>$FontFiles</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$FontFiles">FPDF::$FontFiles</a></dd>
<dt><b>$fontpath</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$fontpath">FPDF::$fontpath</a></dd>
<dt><b>$fonts</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$fonts">FPDF::$fonts</a></dd>
<dt><b>$FontSize</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$FontSize">FPDF::$FontSize</a></dd>
<dt><b>$FontSizePt</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$FontSizePt">FPDF::$FontSizePt</a></dd>
<dt><b>$FontStyle</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$FontStyle">FPDF::$FontStyle</a></dd>
<dt><b>$forcedelete</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$forcedelete">Attribute::$forcedelete</a></dd>
<dt><b>$forcehide</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$forcehide">Attribute::$forcehide</a></dd>
<dt><b>fillFromPostData</b></dt>
<dd>in file lists.inc, method <a href="lists/lamSelectListOption.html#methodfillFromPostData">lamSelectListOption::fillFromPostData()</a><br> Fills the config option from POST data.</dd>
<dt><b>fillFromPostData</b></dt>
<dd>in file lists.inc, method <a href="lists/lamListOption.html#methodfillFromPostData">lamListOption::fillFromPostData()</a><br> Fills the config option from POST data.</dd>
<dt><b>fillFromPostData</b></dt>
<dd>in file lists.inc, method <a href="lists/lamBooleanListOption.html#methodfillFromPostData">lamBooleanListOption::fillFromPostData()</a><br> Fills the config option from POST data.</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>footer</b></dt>
<dd>in file lamPDF.inc, method <a href="PDF/lamPDF.html#methodfooter">lamPDF::footer()</a></dd>
<dt><b>footer</b></dt>
<dd>in file html.inc, class constant <a href="metaHTML/htmlTable.html#constfooter">htmlTable::footer</a><br> table footer</dd>
<dt><b>Footer</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodFooter">FPDF::Footer()</a></dd>
<dt><b>formatLDAPTimestamp</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionformatLDAPTimestamp">formatLDAPTimestamp()</a><br> Formats an LDAP time string (e.g. from createTimestamp).</dd>
<dt><b>FPDF</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodFPDF">FPDF::FPDF()</a><br> *****************************************************************************</dd>
<dt><b>FPDF</b></dt>
<dd>in file fpdf.php, class <a href="main/FPDF.html">FPDF</a></dd>
<dt><b>FPDF_VERSION</b></dt>
<dd>in file fpdf.php, constant <a href="main/_lib---fpdf.php.html#defineFPDF_VERSION">FPDF_VERSION</a><br> *****************************************************************************</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>full_str_pad</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionfull_str_pad">full_str_pad()</a><br> String padding</dd>
<dt><b>fpdf.php</b></dt>
<dd>procedural page <a href="main/_lib---fpdf.php.html">fpdf.php</a></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>
<dt><b>fileUpload.inc</b></dt>
<dd>procedural page <a href="tools/_lib---tools---fileUpload.inc.html">fileUpload.inc</a></dd>
<dt><b>functions.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html">functions.php</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="g"></a>
<div>
<h2>g</h2>
<dl>
<dt><b>gcd</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodgcd">Math_BigInteger::gcd()</a><br> Calculates the greatest common divisor</dd>
<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>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlLink.html#methodgenerateHTML">htmlLink::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlOutputText.html#methodgenerateHTML">htmlOutputText::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlRadio.html#methodgenerateHTML">htmlRadio::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSelect.html#methodgenerateHTML">htmlSelect::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputTextarea.html#methodgenerateHTML">htmlInputTextarea::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputFileUpload.html#methodgenerateHTML">htmlInputFileUpload::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlHorizontalLine.html#methodgenerateHTML">htmlHorizontalLine::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlImage.html#methodgenerateHTML">htmlImage::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputCheckbox.html#methodgenerateHTML">htmlInputCheckbox::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputField.html#methodgenerateHTML">htmlInputField::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSpacer.html#methodgenerateHTML">htmlSpacer::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSubTitle.html#methodgenerateHTML">htmlSubTitle::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTableExtendedSelect.html#methodgenerateHTML">htmlTableExtendedSelect::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTableRow.html#methodgenerateHTML">htmlTableRow::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTitle.html#methodgenerateHTML">htmlTitle::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlGroup.html#methodgenerateHTML">htmlGroup::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTableExtendedRadio.html#methodgenerateHTML">htmlTableExtendedRadio::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTableExtendedInputTextarea.html#methodgenerateHTML">htmlTableExtendedInputTextarea::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlHiddenInput.html#methodgenerateHTML">htmlHiddenInput::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTable.html#methodgenerateHTML">htmlTable::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTableExtendedInputCheckbox.html#methodgenerateHTML">htmlTableExtendedInputCheckbox::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTableExtendedInputFileUpload.html#methodgenerateHTML">htmlTableExtendedInputFileUpload::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlStatusMessage.html#methodgenerateHTML">htmlStatusMessage::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTableExtendedInputField.html#methodgenerateHTML">htmlTableExtendedInputField::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlElement.html#methodgenerateHTML">htmlElement::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlHelpLink.html#methodgenerateHTML">htmlHelpLink::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlFieldset.html#methodgenerateHTML">htmlFieldset::generateHTML()</a><br> Prints the HTML code for this element.</dd>
<dt><b>generateHTML</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlButton.html#methodgenerateHTML">htmlButton::generateHTML()</a><br> Prints the HTML code for this element.</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>generateRandomPassword</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functiongenerateRandomPassword">generateRandomPassword()</a><br> Generates a random password with 12 digits.</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>get</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodget">Net_SFTP::get()</a><br> Downloads a file from the SFTP server.</dd>
<dt><b>getAbstractDN</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functiongetAbstractDN">getAbstractDN()</a><br> Transforms a DN into a more user friendly format.</dd>
<dt><b>getAccessLevel</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetAccessLevel">LAMConfig::getAccessLevel()</a><br> Returns the access level for this profile.</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>getAccountProfiles</b></dt>
<dd>in file profiles.inc, function <a href="profiles/_lib---profiles.inc.html#functiongetAccountProfiles">getAccountProfiles()</a><br> Returns an array of string with all available profiles for the given account type</dd>
<dt><b>getAddedValues</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetAddedValues">Attribute::getAddedValues()</a><br> Display the values removed in an attribute.</dd>
<dt><b>getAdditionalTools</b></dt>
<dd>in file user.inc, method <a href="lists/lamUserList.html#methodgetAdditionalTools">lamUserList::getAdditionalTools()</a><br> Returns a list of lamListTool objects to display next to the edit/delete buttons.</dd>
<dt><b>getAdditionalTools</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodgetAdditionalTools">lamList::getAdditionalTools()</a><br> Returns a list of lamListTool objects to display next to the edit/delete buttons.</dd>
<dt><b>getAddValueMenuItemAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetAddValueMenuItemAttribute">TemplateRender::getAddValueMenuItemAttribute()</a></dd>
<dt><b>getAddValueMenuItemObjectClassAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetAddValueMenuItemObjectClassAttribute">TemplateRender::getAddValueMenuItemObjectClassAttribute()</a></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>getAlias</b></dt>
<dd>in file baseType.inc, method <a href="types/baseType.html#methodgetAlias">baseType::getAlias()</a><br> Returns the alias name of this account type.</dd>
<dt><b>getAlias</b></dt>
<dd>in file netgroup.inc, method <a href="types/netgroup.html#methodgetAlias">netgroup::getAlias()</a><br> Returns the alias name of this account type.</dd>
<dt><b>getAlias</b></dt>
<dd>in file user.inc, method <a href="types/user.html#methodgetAlias">user::getAlias()</a><br> Returns the alias name of this account type.</dd>
<dt><b>getAlias</b></dt>
<dd>in file asteriskExt.inc, method <a href="types/asteriskExt.html#methodgetAlias">asteriskExt::getAlias()</a><br> Returns the alias name of this account type.</dd>
<dt><b>getAlias</b></dt>
<dd>in file mailAlias.inc, method <a href="types/mailAlias.html#methodgetAlias">mailAlias::getAlias()</a><br> Returns the alias name of this account type.</dd>
<dt><b>getAlias</b></dt>
<dd>in file smbDomain.inc, method <a href="types/smbDomain.html#methodgetAlias">smbDomain::getAlias()</a><br> Returns the alias name of this account type.</dd>
<dt><b>getAlias</b></dt>
<dd>in file dhcp.inc, method <a href="types/dhcp.html#methodgetAlias">dhcp::getAlias()</a><br> Returns the alias name of this account type.</dd>
<dt><b>getAlias</b></dt>
<dd>in file group.inc, method <a href="types/group.html#methodgetAlias">group::getAlias()</a><br> Returns the alias name of this account type.</dd>
<dt><b>getAlias</b></dt>
<dd>in file host.inc, method <a href="types/host.html#methodgetAlias">host::getAlias()</a><br> Returns the alias name of this account type.</dd>
<dt><b>getAliases</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetAliases">Attribute::getAliases()</a><br> Return a list of aliases for this Attribute (as defined by the schema) This list will be lowercase.</dd>
<dt><b>getAliases</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetAliases">AttributeType::getAliases()</a><br> Gets the names of attributes that are an alias for this attribute (if any).</dd>
<dt><b>getAliases</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetAliases">AttributeType::getAliases()</a><br> Gets the names of attributes that are an alias for this attribute (if any).</dd>
<dt><b>getAlignmentString</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlElement.html#methodgetAlignmentString">htmlElement::getAlignmentString()</a><br> Returns the HTML attributes for the alignment.</dd>
<dt><b>getAttrbyLdapType</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetAttrbyLdapType">Template::getAttrbyLdapType()</a><br> Get Attributes by LDAP type This function will return a list of attributes by LDAP type (MUST,MAY).</dd>
<dt><b>getAttrDisplayOrder</b></dt>
<dd>in file Query.php, method <a href="phpLDAPadmin/Queries/Query.html#methodgetAttrDisplayOrder">Query::getAttrDisplayOrder()</a></dd>
<dt><b>getAttribute</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#methodgetAttribute">xmlTemplate::getAttribute()</a><br> Get a specific Attribute</dd>
<dt><b>getAttributeNames</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#methodgetAttributeNames">xmlTemplate::getAttributeNames()</a><br> Get the attribute names</dd>
<dt><b>getAttributes</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetAttributes">Template::getAttributes()</a><br> Get the attribute entries</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>getAttributesInternal</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetAttributesInternal">Template::getAttributesInternal()</a><br> Return a list of the internal attributes</dd>
<dt><b>getAttributesShown</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetAttributesShown">Template::getAttributesShown()</a><br> Return a list of attributes that should be shown</dd>
<dt><b>getAttrID</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#methodgetAttrID">xmlTemplate::getAttrID()</a><br> Get an attribute ID</dd>
<dt><b>getAttrSortOrder</b></dt>
<dd>in file Query.php, method <a href="phpLDAPadmin/Queries/Query.html#methodgetAttrSortOrder">Query::getAttrSortOrder()</a></dd>
<dt><b>getAuthType</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodgetAuthType">DS::getAuthType()</a><br> Return the authentication type for this object</dd>
<dt><b>getAutoPostPasswordAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodgetAutoPostPasswordAttribute">PageRender::getAutoPostPasswordAttribute()</a></dd>
<dt><b>getAutoValue</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetAutoValue">Attribute::getAutoValue()</a></dd>
<dt><b>getAvailableLogos</b></dt>
<dd>in file pdfstruct.inc, function <a href="PDF/_lib---pdfstruct.inc.html#functiongetAvailableLogos">getAvailableLogos()</a><br> This function returns an array with all aviliable logo images.</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>getAvailAttrs</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetAvailAttrs">Template::getAvailAttrs()</a><br> Get available attributes</dd>
<dt><b>getBaseDN</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodgetBaseDN">myldap::getBaseDN()</a><br> Gets the root DN of the specified LDAPServer, or null if it can't find it (ie, the server won't give it to us, or it isnt specified in the configuration file).</dd>
<dt><b>getBaseEntries</b></dt>
<dd>in file Tree.php, method <a href="phpLDAPadmin/Tree/Tree.html#methodgetBaseEntries">Tree::getBaseEntries()</a><br> Get the entries that are BaseDN entries.</dd>
<dt><b>getBlockSize</b></dt>
<dd>in file blowfish.php, method <a href="horde-cipher/Horde_Cipher_blowfish.html#methodgetBlockSize">Horde_Cipher_blowfish::getBlockSize()</a><br> Return the size of the blocks that this cipher needs</dd>
<dt><b>getBlurJavascriptAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetBlurJavascriptAttribute">TemplateRender::getBlurJavascriptAttribute()</a></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 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 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 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 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 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>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 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>getChildCount</b></dt>
<dd>in file delete.php, function <a href="main/_templates---delete.php.html#functiongetChildCount">getChildCount()</a><br> Returns the number of child entries of a DN.</dd>
<dt><b>getChildObjectClasses</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass.html#methodgetChildObjectClasses">ObjectClass::getChildObjectClasses()</a><br> Returns the array of objectClass names which inherit from this objectClass.</dd>
<dt><b>getChildObjectClasses</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClass.html#methodgetChildObjectClasses">ObjectClass::getChildObjectClasses()</a><br> Returns the array of objectClass names which inherit from this objectClass.</dd>
<dt><b>getChildren</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodgetChildren">TreeItem::getChildren()</a><br> Returns null if the children have never be defined</dd>
<dt><b>getCols</b></dt>
<dd>in file MultiLineAttribute.php, method <a href="phpLDAPadmin/Templates/MultiLineAttribute.html#methodgetCols">MultiLineAttribute::getCols()</a></dd>
<dt><b>getColspanString</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlElement.html#methodgetColspanString">htmlElement::getColspanString()</a><br> Returns the HTML attribute for the colspan.</dd>
<dt><b>getCommandList</b></dt>
<dd>in file config_default.php, method <a href="phpLDAPadmin/Tree/Config.html#methodgetCommandList">Config::getCommandList()</a><br> Get a list of available commands.</dd>
<dt><b>getCompressionAlgorithmsClient2Server</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetCompressionAlgorithmsClient2Server">Net_SSH2::getCompressionAlgorithmsClient2Server()</a><br> Return a list of the compression algorithms the server supports, when receiving stuff from the client.</dd>
<dt><b>getCompressionAlgorithmsServer2Client</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetCompressionAlgorithmsServer2Client">Net_SSH2::getCompressionAlgorithmsServer2Client()</a><br> Return a list of the compression algorithms the server supports, when sending stuff to the client.</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>getConfigProfiles</b></dt>
<dd>in file config.inc, function <a href="configuration/_lib---config.inc.html#functiongetConfigProfiles">getConfigProfiles()</a><br> Returns an array of string with all available configuration profiles (without .conf)</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>getContainer</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodgetContainer">myldap::getContainer()</a><br> Given a DN string, this returns the parent container portion of the string.</dd>
<dt><b>getContainer</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetContainer">Template::getContainer()</a><br> Get the DN of the container for this entry</dd>
<dt><b>getContainerContents</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodgetContainerContents">myldap::getContainerContents()</a><br> Gets a list of child entries for an entry. Given a DN, this function fetches the list of DNs of child entries one level beneath the parent. For example, for the following tree:</dd>
<dt><b>getContainerEncode</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetContainerEncode">Template::getContainerEncode()</a></dd>
<dt><b>getContainerPath</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodgetContainerPath">myldap::getContainerPath()</a><br> Given a DN string and a path like syntax, this returns the parent container portion of the string.</dd>
<dt><b>getContainerTop</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodgetContainerTop">myldap::getContainerTop()</a><br> Given a DN string, this returns the top container portion of the string.</dd>
<dt><b>getContext</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetContext">Template::getContext()</a><br> Determine the type of template this is</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>getdays</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functiongetdays">getdays()</a><br> This function will return the days from 1.1.1970 until now.</dd>
<dt><b>getDefault</b></dt>
<dd>in file SelectionAttribute.php, method <a href="phpLDAPadmin/Templates/SelectionAttribute.html#methodgetDefault">SelectionAttribute::getDefault()</a></dd>
<dt><b>getDefaultAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetDefaultAttribute">TemplateRender::getDefaultAttribute()</a></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>getDefaultListAttributes</b></dt>
<dd>in file baseType.inc, method <a href="types/baseType.html#methodgetDefaultListAttributes">baseType::getDefaultListAttributes()</a><br> Returns the default attribute list for this account type.</dd>
<dt><b>getDefaultListAttributes</b></dt>
<dd>in file mailAlias.inc, method <a href="types/mailAlias.html#methodgetDefaultListAttributes">mailAlias::getDefaultListAttributes()</a><br> Returns the default attribute list for this account type.</dd>
<dt><b>getDefaultListAttributes</b></dt>
<dd>in file host.inc, method <a href="types/host.html#methodgetDefaultListAttributes">host::getDefaultListAttributes()</a><br> Returns the default attribute list for this account type.</dd>
<dt><b>getDefaultListAttributes</b></dt>
<dd>in file user.inc, method <a href="types/user.html#methodgetDefaultListAttributes">user::getDefaultListAttributes()</a><br> Returns the default attribute list for this account type.</dd>
<dt><b>getDefaultListAttributes</b></dt>
<dd>in file smbDomain.inc, method <a href="types/smbDomain.html#methodgetDefaultListAttributes">smbDomain::getDefaultListAttributes()</a><br> Returns the default attribute list for this account type.</dd>
<dt><b>getDefaultListAttributes</b></dt>
<dd>in file asteriskExt.inc, method <a href="types/asteriskExt.html#methodgetDefaultListAttributes">asteriskExt::getDefaultListAttributes()</a><br> Returns the default attribute list for this account type.</dd>
<dt><b>getDefaultListAttributes</b></dt>
<dd>in file types.inc, function <a href="types/_lib---types.inc.html#functiongetDefaultListAttributes">getDefaultListAttributes()</a><br> Returns the default attribute list for an account type.</dd>
<dt><b>getDefaultListAttributes</b></dt>
<dd>in file dhcp.inc, method <a href="types/dhcp.html#methodgetDefaultListAttributes">dhcp::getDefaultListAttributes()</a><br> Returns the default attribute list for this account type.</dd>
<dt><b>getDefaultListAttributes</b></dt>
<dd>in file group.inc, method <a href="types/group.html#methodgetDefaultListAttributes">group::getDefaultListAttributes()</a><br> Returns the default attribute list for this account type.</dd>
<dt><b>getDefaultListAttributes</b></dt>
<dd>in file netgroup.inc, method <a href="types/netgroup.html#methodgetDefaultListAttributes">netgroup::getDefaultListAttributes()</a><br> Returns the default attribute list for this account type.</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>getDeleteAttributeMessage</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetDeleteAttributeMessage">TemplateRender::getDeleteAttributeMessage()</a></dd>
<dt><b>getDepth</b></dt>
<dd>in file HTMLTree.php, method <a href="phpLDAPadmin/Tree/HTMLTree.html#methodgetDepth">HTMLTree::getDepth()</a><br> Work out how deep the "opened" tree is.</dd>
<dt><b>getDescription</b></dt>
<dd>in file pdfEdit.inc, method <a href="tools/toolPDFEditor.html#methodgetDescription">toolPDFEditor::getDescription()</a><br> returns a description text for the tool.</dd>
<dt><b>getDescription</b></dt>
<dd>in file tests.inc, method <a href="tools/toolTests.html#methodgetDescription">toolTests::getDescription()</a><br> returns a description text for the tool.</dd>
<dt><b>getDescription</b></dt>
<dd>in file host.inc, method <a href="types/host.html#methodgetDescription">host::getDescription()</a><br> Returns the description of this account type.</dd>
<dt><b>getDescription</b></dt>
<dd>in file tools.inc, method <a href="tools/LAMTool.html#methodgetDescription">LAMTool::getDescription()</a><br> returns a description text for the tool.</dd>
<dt><b>getDescription</b></dt>
<dd>in file mailAlias.inc, method <a href="types/mailAlias.html#methodgetDescription">mailAlias::getDescription()</a><br> Returns the description of this account type.</dd>
<dt><b>getDescription</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetDescription">Attribute::getDescription()</a></dd>
<dt><b>getDescription</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetDescription">Template::getDescription()</a><br> Return the template description</dd>
<dt><b>getDescription</b></dt>
<dd>in file netgroup.inc, method <a href="types/netgroup.html#methodgetDescription">netgroup::getDescription()</a><br> Returns the description of this account type.</dd>
<dt><b>getDescription</b></dt>
<dd>in file fileUpload.inc, method <a href="tools/toolFileUpload.html#methodgetDescription">toolFileUpload::getDescription()</a><br> returns a description text for the tool.</dd>
<dt><b>getDescription</b></dt>
<dd>in file ouEditor.inc, method <a href="tools/toolOUEditor.html#methodgetDescription">toolOUEditor::getDescription()</a><br> returns a description text for the tool.</dd>
<dt><b>getDescription</b></dt>
<dd>in file smbDomain.inc, method <a href="types/smbDomain.html#methodgetDescription">smbDomain::getDescription()</a><br> Returns the description of this account type.</dd>
<dt><b>getDescription</b></dt>
<dd>in file serverInfo.inc, method <a href="tools/toolServerInformation.html#methodgetDescription">toolServerInformation::getDescription()</a><br> returns a description text for the tool.</dd>
<dt><b>getDescription</b></dt>
<dd>in file asteriskExt.inc, method <a href="types/asteriskExt.html#methodgetDescription">asteriskExt::getDescription()</a><br> Returns the description of this account type.</dd>
<dt><b>getDescription</b></dt>
<dd>in file Query.php, method <a href="phpLDAPadmin/Queries/Query.html#methodgetDescription">Query::getDescription()</a></dd>
<dt><b>getDescription</b></dt>
<dd>in file dhcp.inc, method <a href="types/dhcp.html#methodgetDescription">dhcp::getDescription()</a><br> Returns the description of this account type.</dd>
<dt><b>getDescription</b></dt>
<dd>in file schema.inc, method <a href="lib/SchemaItem.html#methodgetDescription">SchemaItem::getDescription()</a></dd>
<dt><b>getDescription</b></dt>
<dd>in file baseType.inc, method <a href="types/baseType.html#methodgetDescription">baseType::getDescription()</a><br> Returns the description of this account type.</dd>
<dt><b>getDescription</b></dt>
<dd>in file user.inc, method <a href="types/user.html#methodgetDescription">user::getDescription()</a><br> Returns the description of this account type.</dd>
<dt><b>getDescription</b></dt>
<dd>in file group.inc, method <a href="types/group.html#methodgetDescription">group::getDescription()</a><br> Returns the description of this account type.</dd>
<dt><b>getDescription</b></dt>
<dd>in file schemaBrowser.inc, method <a href="tools/toolSchemaBrowser.html#methodgetDescription">toolSchemaBrowser::getDescription()</a><br> returns a description text for the tool.</dd>
<dt><b>getDescription</b></dt>
<dd>in file profileEditor.inc, method <a href="tools/toolProfileEditor.html#methodgetDescription">toolProfileEditor::getDescription()</a><br> returns a description text for the tool.</dd>
<dt><b>getDescription</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/SchemaItem.html#methodgetDescription">SchemaItem::getDescription()</a></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>getDN</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodgetDN">TreeItem::getDN()</a><br> Get the DN of this tree item.</dd>
<dt><b>getDN</b></dt>
<dd>in file Query.php, method <a href="phpLDAPadmin/Queries/Query.html#methodgetDN">Query::getDN()</a><br> This is temporary to get around objects that use a DN for rendering, for example jpegPhoto</dd>
<dt><b>getDN</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetDN">Template::getDN()</a><br> Display the DN for this template entry. If the DN is not set (creating a new entry), then a generated DN will be produced, taken from the RDN and the CONTAINER details.</dd>
<dt><b>getDNAttrValue</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodgetDNAttrValue">myldap::getDNAttrValue()</a><br> Much like getDNAttrValues(), but only returns the values for one attribute of an object. Example calls:</dd>
<dt><b>getDNAttrValues</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodgetDNAttrValues">myldap::getDNAttrValues()</a><br> Gets the attributes/values of an entry. Returns an associative array whose keys are attribute value names and whose values are arrays of values for said attribute.</dd>
<dt><b>getDNEncode</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetDNEncode">Template::getDNEncode()</a></dd>
<dt><b>getDNEncode</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodgetDNEncode">TreeItem::getDNEncode()</a></dd>
<dt><b>getDNEncode</b></dt>
<dd>in file Query.php, method <a href="phpLDAPadmin/Queries/Query.html#methodgetDNEncode">Query::getDNEncode()</a></dd>
<dt><b>getEncryptionAlgorithmsClient2Server</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetEncryptionAlgorithmsClient2Server">Net_SSH2::getEncryptionAlgorithmsClient2Server()</a><br> Return a list of the (symmetric key) encryption algorithms the server supports, when receiving stuff from the client.</dd>
<dt><b>getEncryptionAlgorithmsServer2Client</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetEncryptionAlgorithmsServer2Client">Net_SSH2::getEncryptionAlgorithmsServer2Client()</a><br> Return a list of the (symmetric key) encryption algorithms the server supports, when sending stuff to the client.</dd>
<dt><b>getEntry</b></dt>
<dd>in file Tree.php, method <a href="phpLDAPadmin/Tree/Tree.html#methodgetEntry">Tree::getEntry()</a><br> Get a tree entry</dd>
<dt><b>getEquality</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetEquality">AttributeType::getEquality()</a><br> Gets this attribute's equality string</dd>
<dt><b>getEquality</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetEquality">AttributeType::getEquality()</a><br> Gets this attribute's equality string</dd>
<dt><b>getErrorMessage</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodgetErrorMessage">DS::getErrorMessage()</a><br> Return error details from previous operation</dd>
<dt><b>getErrorMessage</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodgetErrorMessage">myldap::getErrorMessage()</a><br> Get the last error string</dd>
<dt><b>getErrorNum</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodgetErrorNum">DS::getErrorNum()</a></dd>
<dt><b>getErrorNum</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodgetErrorNum">myldap::getErrorNum()</a><br> Get the last error number</dd>
<dt><b>getErrors</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetErrors">Net_SSH2::getErrors()</a><br> Returns all errors</dd>
<dt><b>getFileName</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#methodgetFileName">xmlTemplate::getFileName()</a><br> Get the Template filename.</dd>
<dt><b>getFileName</b></dt>
<dd>in file BinaryAttribute.php, method <a href="phpLDAPadmin/Templates/BinaryAttribute.html#methodgetFileName">BinaryAttribute::getFileName()</a></dd>
<dt><b>getFileNames</b></dt>
<dd>in file BinaryAttribute.php, method <a href="phpLDAPadmin/Templates/BinaryAttribute.html#methodgetFileNames">BinaryAttribute::getFileNames()</a></dd>
<dt><b>getFilePath</b></dt>
<dd>in file BinaryAttribute.php, method <a href="phpLDAPadmin/Templates/BinaryAttribute.html#methodgetFilePath">BinaryAttribute::getFilePath()</a></dd>
<dt><b>getFilePaths</b></dt>
<dd>in file BinaryAttribute.php, method <a href="phpLDAPadmin/Templates/BinaryAttribute.html#methodgetFilePaths">BinaryAttribute::getFilePaths()</a></dd>
<dt><b>getFocusJavascriptAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetFocusJavascriptAttribute">TemplateRender::getFocusJavascriptAttribute()</a></dd>
<dt><b>getForceDeleteAttrs</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetForceDeleteAttrs">Template::getForceDeleteAttrs()</a><br> Get the attributes that are marked as force delete We'll cache this result in the event of multiple calls.</dd>
<dt><b>getForceMayAttrs</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass.html#methodgetForceMayAttrs">ObjectClass::getForceMayAttrs()</a></dd>
<dt><b>getFriendlyHTML</b></dt>
<dd>in file config_default.php, method <a href="phpLDAPadmin/Tree/Config.html#methodgetFriendlyHTML">Config::getFriendlyHTML()</a><br> This function will return the <ancronym> html for a friendly name attribute.</dd>
<dt><b>getFriendlyName</b></dt>
<dd>in file config_default.php, method <a href="phpLDAPadmin/Tree/Config.html#methodgetFriendlyName">Config::getFriendlyName()</a><br> This function will return the friendly name of an attribute, if it exists.</dd>
<dt><b>getFriendlyName</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetFriendlyName">Attribute::getFriendlyName()</a></dd>
<dt><b>getHeader</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/Export.html#methodgetHeader">Export::getHeader()</a></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>getHelper</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetHelper">Attribute::getHelper()</a></dd>
<dt><b>getHelperValue</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetHelperValue">Attribute::getHelperValue()</a></dd>
<dt><b>getHint</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetHint">Attribute::getHint()</a></dd>
<dt><b>getHostKeyPublicExponent</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodgetHostKeyPublicExponent">Net_SSH1::getHostKeyPublicExponent()</a><br> Return the host key public exponent</dd>
<dt><b>getHostKeyPublicModulus</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodgetHostKeyPublicModulus">Net_SSH1::getHostKeyPublicModulus()</a><br> Return the host key public modulus</dd>
<dt><b>getHttpAuthentication</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetHttpAuthentication">LAMConfig::getHttpAuthentication()</a><br> Returns if HTTP authentication should be used.</dd>
<dt><b>getIcon</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetIcon">Attribute::getIcon()</a></dd>
<dt><b>getIcon</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetIcon">Template::getIcon()</a><br> Get template icon</dd>
<dt><b>getIcon</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodgetIcon">TreeItem::getIcon()</a><br> Returns the path of the icon file used to represent this node ;</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>getID</b></dt>
<dd>in file lists.inc, method <a href="lists/lamListOption.html#methodgetID">lamListOption::getID()</a><br> Returns the option ID.</dd>
<dt><b>getID</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#methodgetID">xmlTemplate::getID()</a><br> Return the template by ID</dd>
<dt><b>getImage</b></dt>
<dd>in file lists.inc, method <a href="lists/lamListTool.html#methodgetImage">lamListTool::getImage()</a><br> Returns the name of the tool image.</dd>
<dt><b>getImageLink</b></dt>
<dd>in file schemaBrowser.inc, method <a href="tools/toolSchemaBrowser.html#methodgetImageLink">toolSchemaBrowser::getImageLink()</a><br> Returns the link to the tool image (relative to graphics/)</dd>
<dt><b>getImageLink</b></dt>
<dd>in file ouEditor.inc, method <a href="tools/toolOUEditor.html#methodgetImageLink">toolOUEditor::getImageLink()</a><br> Returns the link to the tool image (relative to graphics/)</dd>
<dt><b>getImageLink</b></dt>
<dd>in file serverInfo.inc, method <a href="tools/toolServerInformation.html#methodgetImageLink">toolServerInformation::getImageLink()</a><br> Returns the link to the tool image (relative to graphics/)</dd>
<dt><b>getImageLink</b></dt>
<dd>in file pdfEdit.inc, method <a href="tools/toolPDFEditor.html#methodgetImageLink">toolPDFEditor::getImageLink()</a><br> Returns the link to the tool image (relative to graphics/)</dd>
<dt><b>getImageLink</b></dt>
<dd>in file tools.inc, method <a href="tools/LAMTool.html#methodgetImageLink">LAMTool::getImageLink()</a><br> Returns the link to the tool image (relative to graphics/)</dd>
<dt><b>getImageLink</b></dt>
<dd>in file tests.inc, method <a href="tools/toolTests.html#methodgetImageLink">toolTests::getImageLink()</a><br> Returns the link to the tool image (relative to graphics/)</dd>
<dt><b>getImageLink</b></dt>
<dd>in file fileUpload.inc, method <a href="tools/toolFileUpload.html#methodgetImageLink">toolFileUpload::getImageLink()</a><br> Returns the link to the tool image (relative to graphics/)</dd>
<dt><b>getImageLink</b></dt>
<dd>in file profileEditor.inc, method <a href="tools/toolProfileEditor.html#methodgetImageLink">toolProfileEditor::getImageLink()</a><br> Returns the link to the tool image (relative to graphics/)</dd>
<dt><b>getIndex</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodgetIndex">DS::getIndex()</a></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>getInstance</b></dt>
<dd>in file Tree.php, method <a href="phpLDAPadmin/Tree/Tree.html#methodgetInstance">Tree::getInstance()</a><br> Create an instance of the tree - this is used when we call this class directly Tree::getInstance($index)</dd>
<dt><b>getIsCollective</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetIsCollective">AttributeType::getIsCollective()</a><br> Gets whether this attribute is collective.</dd>
<dt><b>getIsCollective</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetIsCollective">AttributeType::getIsCollective()</a><br> Gets whether this attribute is collective.</dd>
<dt><b>getIsNoUserModification</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetIsNoUserModification">AttributeType::getIsNoUserModification()</a><br> Gets whether this attribute is not modifiable by users.</dd>
<dt><b>getIsNoUserModification</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetIsNoUserModification">AttributeType::getIsNoUserModification()</a><br> Gets whether this attribute is not modifiable by users.</dd>
<dt><b>getIsObsolete</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/SchemaItem.html#methodgetIsObsolete">SchemaItem::getIsObsolete()</a><br> Gets whether this objectClass is flagged as obsolete by the LDAP server.</dd>
<dt><b>getIsObsolete</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetIsObsolete">AttributeType::getIsObsolete()</a><br> Gets whether this attribute has been flagged as obsolete by the LDAP server</dd>
<dt><b>getIsObsolete</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClass.html#methodgetIsObsolete">ObjectClass::getIsObsolete()</a><br> Gets whether this objectClass is flagged as obsolete by the LDAP server.</dd>
<dt><b>getIsObsolete</b></dt>
<dd>in file schema.inc, method <a href="lib/MatchingRule.html#methodgetIsObsolete">MatchingRule::getIsObsolete()</a><br> Gets whether this MatchingRule is flagged as obsolete by the LDAP server.</dd>
<dt><b>getIsSingleValue</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetIsSingleValue">AttributeType::getIsSingleValue()</a><br> Gets whether this attribute is single-valued. If this attribute only supports single values, true is returned. If this attribute supports multiple values, false is returned.</dd>
<dt><b>getIsSingleValue</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetIsSingleValue">AttributeType::getIsSingleValue()</a><br> Gets whether this attribute is single-valued. If this attribute only supports single values, true is returned. If this attribute supports multiple values, false is returned.</dd>
<dt><b>getKexAlgorithms</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetKexAlgorithms">Net_SSH2::getKexAlgorithms()</a><br> Return a list of the key exchange algorithms the server supports.</dd>
<dt><b>getLamProMailFrom</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetLamProMailFrom">LAMConfig::getLamProMailFrom()</a><br> Returns the sender address for password reset mails.</dd>
<dt><b>getLamProMailIsHTML</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetLamProMailIsHTML">LAMConfig::getLamProMailIsHTML()</a><br> Returns if the password reset mail content should be treated as HTML.</dd>
<dt><b>getLamProMailReplyTo</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetLamProMailReplyTo">LAMConfig::getLamProMailReplyTo()</a><br> Returns the reply-to address for password reset mails.</dd>
<dt><b>getLamProMailSubject</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetLamProMailSubject">LAMConfig::getLamProMailSubject()</a><br> Returns the subject for password reset mails.</dd>
<dt><b>getLamProMailText</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetLamProMailText">LAMConfig::getLamProMailText()</a><br> Returns the mail body for password reset mails.</dd>
<dt><b>getLanguagesClient2Server</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetLanguagesClient2Server">Net_SSH2::getLanguagesClient2Server()</a><br> Return a list of the languages the server supports, when receiving stuff from the client.</dd>
<dt><b>getLanguagesServer2Client</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetLanguagesServer2Client">Net_SSH2::getLanguagesServer2Client()</a><br> Return a list of the languages the server supports, when sending stuff to the client.</dd>
<dt><b>getLastError</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetLastError">Net_SSH2::getLastError()</a><br> Returns the last error</dd>
<dt><b>getLastLDAPError</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functiongetLastLDAPError">getLastLDAPError()</a><br> Returns the parameters for a StatusMessage of the last LDAP search.</dd>
<dt><b>getLastSFTPError</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodgetLastSFTPError">Net_SFTP::getLastSFTPError()</a><br> Returns the last error</dd>
<dt><b>getLDAPadd</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetLDAPadd">Template::getLDAPadd()</a><br> Return an array, that can be passed to ldap_add().</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>getLDAPmodify</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetLDAPmodify">Template::getLDAPmodify()</a><br> Return an array, that can be passed to ldap_mod_replace().</dd>
<dt><b>getLDAPtype</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetLDAPtype">Attribute::getLDAPtype()</a></dd>
<dt><b>getLength</b></dt>
<dd>in file Hash.php, method <a href="Crypt_Hash/Crypt_Hash.html#methodgetLength">Crypt_Hash::getLength()</a><br> Returns the hash length (in bytes)</dd>
<dt><b>getLink</b></dt>
<dd>in file serverInfo.inc, method <a href="tools/toolServerInformation.html#methodgetLink">toolServerInformation::getLink()</a><br> Returns a link to the tool page (relative to templates/).</dd>
<dt><b>getLink</b></dt>
<dd>in file schemaBrowser.inc, method <a href="tools/toolSchemaBrowser.html#methodgetLink">toolSchemaBrowser::getLink()</a><br> Returns a link to the tool page (relative to templates/).</dd>
<dt><b>getLink</b></dt>
<dd>in file profileEditor.inc, method <a href="tools/toolProfileEditor.html#methodgetLink">toolProfileEditor::getLink()</a><br> Returns a link to the tool page (relative to templates/).</dd>
<dt><b>getLink</b></dt>
<dd>in file pdfEdit.inc, method <a href="tools/toolPDFEditor.html#methodgetLink">toolPDFEditor::getLink()</a><br> Returns a link to the tool page (relative to templates/).</dd>
<dt><b>getLink</b></dt>
<dd>in file ouEditor.inc, method <a href="tools/toolOUEditor.html#methodgetLink">toolOUEditor::getLink()</a><br> Returns a link to the tool page (relative to templates/).</dd>
<dt><b>getLink</b></dt>
<dd>in file tests.inc, method <a href="tools/toolTests.html#methodgetLink">toolTests::getLink()</a><br> Returns a link to the tool page (relative to templates/).</dd>
<dt><b>getLink</b></dt>
<dd>in file tools.inc, method <a href="tools/LAMTool.html#methodgetLink">LAMTool::getLink()</a><br> Returns a link to the tool page (relative to templates/).</dd>
<dt><b>getLink</b></dt>
<dd>in file fileUpload.inc, method <a href="tools/toolFileUpload.html#methodgetLink">toolFileUpload::getLink()</a><br> Returns a link to the tool page (relative to templates/).</dd>
<dt><b>getLinkTarget</b></dt>
<dd>in file lists.inc, method <a href="lists/lamListTool.html#methodgetLinkTarget">lamListTool::getLinkTarget()</a><br> Returns the PHP file (relative to 'templates/lists') which will be the target for this tool.</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>getListAttributeDescriptions</b></dt>
<dd>in file user.inc, method <a href="types/user.html#methodgetListAttributeDescriptions">user::getListAttributeDescriptions()</a><br> Returns a list of attributes which have a translated description.</dd>
<dt><b>getListAttributeDescriptions</b></dt>
<dd>in file types.inc, function <a href="types/_lib---types.inc.html#functiongetListAttributeDescriptions">getListAttributeDescriptions()</a><br> Returns a list of attributes which have a translated description.</dd>
<dt><b>getListAttributeDescriptions</b></dt>
<dd>in file baseType.inc, method <a href="types/baseType.html#methodgetListAttributeDescriptions">baseType::getListAttributeDescriptions()</a><br> Returns a list of attributes which have a translated description.</dd>
<dt><b>getListAttributeDescriptions</b></dt>
<dd>in file smbDomain.inc, method <a href="types/smbDomain.html#methodgetListAttributeDescriptions">smbDomain::getListAttributeDescriptions()</a><br> Returns a list of attributes which have a translated description.</dd>
<dt><b>getListAttributeDescriptions</b></dt>
<dd>in file asteriskExt.inc, method <a href="types/asteriskExt.html#methodgetListAttributeDescriptions">asteriskExt::getListAttributeDescriptions()</a><br> Returns a list of attributes which have a translated description.</dd>
<dt><b>getListAttributeDescriptions</b></dt>
<dd>in file dhcp.inc, method <a href="types/dhcp.html#methodgetListAttributeDescriptions">dhcp::getListAttributeDescriptions()</a><br> Returns a list of attributes which have a translated description.</dd>
<dt><b>getListAttributeDescriptions</b></dt>
<dd>in file mailAlias.inc, method <a href="types/mailAlias.html#methodgetListAttributeDescriptions">mailAlias::getListAttributeDescriptions()</a><br> Returns a list of attributes which have a translated description.</dd>
<dt><b>getListAttributeDescriptions</b></dt>
<dd>in file netgroup.inc, method <a href="types/netgroup.html#methodgetListAttributeDescriptions">netgroup::getListAttributeDescriptions()</a><br> Returns a list of attributes which have a translated description.</dd>
<dt><b>getListAttributeDescriptions</b></dt>
<dd>in file host.inc, method <a href="types/host.html#methodgetListAttributeDescriptions">host::getListAttributeDescriptions()</a><br> Returns a list of attributes which have a translated description.</dd>
<dt><b>getListAttributeDescriptions</b></dt>
<dd>in file group.inc, method <a href="types/group.html#methodgetListAttributeDescriptions">group::getListAttributeDescriptions()</a><br> Returns a list of attributes which have a translated description.</dd>
<dt><b>getListClassName</b></dt>
<dd>in file asteriskExt.inc, method <a href="types/asteriskExt.html#methodgetListClassName">asteriskExt::getListClassName()</a><br> Returns the class name for the list object.</dd>
<dt><b>getListClassName</b></dt>
<dd>in file baseType.inc, method <a href="types/baseType.html#methodgetListClassName">baseType::getListClassName()</a><br> Returns the class name for the list object.</dd>
<dt><b>getListClassName</b></dt>
<dd>in file smbDomain.inc, method <a href="types/smbDomain.html#methodgetListClassName">smbDomain::getListClassName()</a><br> Returns the class name for the list object.</dd>
<dt><b>getListClassName</b></dt>
<dd>in file dhcp.inc, method <a href="types/dhcp.html#methodgetListClassName">dhcp::getListClassName()</a><br> Returns the class name for the list object.</dd>
<dt><b>getListClassName</b></dt>
<dd>in file netgroup.inc, method <a href="types/netgroup.html#methodgetListClassName">netgroup::getListClassName()</a><br> Returns the class name for the list object.</dd>
<dt><b>getListClassName</b></dt>
<dd>in file types.inc, function <a href="types/_lib---types.inc.html#functiongetListClassName">getListClassName()</a><br> Returns the class name for the list object.</dd>
<dt><b>getListClassName</b></dt>
<dd>in file mailAlias.inc, method <a href="types/mailAlias.html#methodgetListClassName">mailAlias::getListClassName()</a><br> Returns the class name for the list object.</dd>
<dt><b>getListClassName</b></dt>
<dd>in file user.inc, method <a href="types/user.html#methodgetListClassName">user::getListClassName()</a><br> Returns the class name for the list object.</dd>
<dt><b>getListClassName</b></dt>
<dd>in file group.inc, method <a href="types/group.html#methodgetListClassName">group::getListClassName()</a><br> Returns the class name for the list object.</dd>
<dt><b>getListClassName</b></dt>
<dd>in file host.inc, method <a href="types/host.html#methodgetListClassName">host::getListClassName()</a><br> Returns the class name for the list object.</dd>
<dt><b>getLog</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetLog">Net_SSH2::getLog()</a><br> Returns a log of the packets that have been sent and received.</dd>
<dt><b>getLog</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodgetLog">Net_SSH1::getLog()</a><br> Returns a log of the packets that have been sent and received.</dd>
<dt><b>getLogin</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodgetLogin">DS::getLogin()</a><br> Get the login name of the user logged into this datastore's connection method If this returns null, we are not logged in.</dd>
<dt><b>getLoginID</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodgetLoginID">myldap::getLoginID()</a><br> Get a user ID</dd>
<dt><b>getLoginMethod</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetLoginMethod">LAMConfig::getLoginMethod()</a><br> Returns the login method.</dd>
<dt><b>getLoginSearchDN</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetLoginSearchDN">LAMConfig::getLoginSearchDN()</a><br> Returns the DN for the login search bind user.</dd>
<dt><b>getLoginSearchFilter</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetLoginSearchFilter">LAMConfig::getLoginSearchFilter()</a><br> Returns the login search filter.</dd>
<dt><b>getLoginSearchPassword</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetLoginSearchPassword">LAMConfig::getLoginSearchPassword()</a><br> Returns the password for the login search bind user.</dd>
<dt><b>getLoginSearchSuffix</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetLoginSearchSuffix">LAMConfig::getLoginSearchSuffix()</a><br> Returns the login search suffix.</dd>
<dt><b>getMACAlgorithmsClient2Server</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetMACAlgorithmsClient2Server">Net_SSH2::getMACAlgorithmsClient2Server()</a><br> Return a list of the MAC algorithms the server supports, when receiving stuff from the client.</dd>
<dt><b>getMACAlgorithmsServer2Client</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetMACAlgorithmsServer2Client">Net_SSH2::getMACAlgorithmsServer2Client()</a><br> Return a list of the MAC algorithms the server supports, when sending stuff to the client.</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>getMaxLength</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetMaxLength">Attribute::getMaxLength()</a></dd>
<dt><b>getMaxLength</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetMaxLength">AttributeType::getMaxLength()</a><br> Gets this attribute's the maximum length. If no maximum is defined by the LDAP server, null is returned.</dd>
<dt><b>getMaxLength</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetMaxLength">AttributeType::getMaxLength()</a><br> Gets this attribute's the maximum length. If no maximum is defined by the LDAP server, null is returned.</dd>
<dt><b>getMaxValueCount</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetMaxValueCount">Attribute::getMaxValueCount()</a></dd>
<dt><b>getMayAttrNames</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClass.html#methodgetMayAttrNames">ObjectClass::getMayAttrNames()</a><br> Gets an array of attribute names (strings) that entries of this ObjectClass must define.</dd>
<dt><b>getMayAttrNames</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass.html#methodgetMayAttrNames">ObjectClass::getMayAttrNames()</a><br> Gets an array of attribute names (strings) that entries of this ObjectClass must define.</dd>
<dt><b>getMayAttrs</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClass.html#methodgetMayAttrs">ObjectClass::getMayAttrs()</a><br> Gets an array of AttributeType objects that entries of this ObjectClass may define.</dd>
<dt><b>getMayAttrs</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass.html#methodgetMayAttrs">ObjectClass::getMayAttrs()</a><br> Gets an array of AttributeType objects that entries of this ObjectClass may define.</dd>
<dt><b>getMenuItemAddAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetMenuItemAddAttribute">TemplateRender::getMenuItemAddAttribute()</a></dd>
<dt><b>getMenuItemAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetMenuItemAttribute">TemplateRender::getMenuItemAttribute()</a></dd>
<dt><b>getMenuItemCompare</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetMenuItemCompare">TemplateRender::getMenuItemCompare()</a></dd>
<dt><b>getMenuItemCreate</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetMenuItemCreate">TemplateRender::getMenuItemCreate()</a></dd>
<dt><b>getMenuItemExportBase</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetMenuItemExportBase">TemplateRender::getMenuItemExportBase()</a></dd>
<dt><b>getMenuItemExportSub</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetMenuItemExportSub">TemplateRender::getMenuItemExportSub()</a></dd>
<dt><b>getMenuItemInternalAttributes</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetMenuItemInternalAttributes">TemplateRender::getMenuItemInternalAttributes()</a></dd>
<dt><b>getMenuItemRename</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetMenuItemRename">TemplateRender::getMenuItemRename()</a></dd>
<dt><b>getMenuItemSelectionAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetMenuItemSelectionAttribute">TemplateRender::getMenuItemSelectionAttribute()</a></dd>
<dt><b>getMenuItemShowChildren</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetMenuItemShowChildren">TemplateRender::getMenuItemShowChildren()</a></dd>
<dt><b>getMenuItemSwitchTemplate</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetMenuItemSwitchTemplate">TemplateRender::getMenuItemSwitchTemplate()</a></dd>
<dt><b>getMetaHTML</b></dt>
<dd>in file lists.inc, method <a href="lists/lamSelectListOption.html#methodgetMetaHTML">lamSelectListOption::getMetaHTML()</a><br> Returns the meta HTML data to display this option.</dd>
<dt><b>getMetaHTML</b></dt>
<dd>in file lists.inc, method <a href="lists/lamListOption.html#methodgetMetaHTML">lamListOption::getMetaHTML()</a><br> Returns the meta HTML data to display this option.</dd>
<dt><b>getMetaHTML</b></dt>
<dd>in file lists.inc, method <a href="lists/lamBooleanListOption.html#methodgetMetaHTML">lamBooleanListOption::getMetaHTML()</a><br> Returns the meta HTML data to display this option.</dd>
<dt><b>getMethod</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodgetMethod">DS::getMethod()</a><br> Work out which connection method to use.</dd>
<dt><b>getMinValueCount</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetMinValueCount">Attribute::getMinValueCount()</a></dd>
<dt><b>getMode</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodgetMode">PageRender::getMode()</a><br> May be overloaded in other classes</dd>
<dt><b>getMode</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetMode">TemplateRender::getMode()</a><br> Set the mode of the TemplateRender</dd>
<dt><b>getModeContainer</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetModeContainer">TemplateRender::getModeContainer()</a><br> Return the container for this mode</dd>
<dt><b>getModeContainer</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodgetModeContainer">PageRender::getModeContainer()</a></dd>
<dt><b>getModifiedAttributesMessage</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetModifiedAttributesMessage">TemplateRender::getModifiedAttributesMessage()</a></dd>
<dt><b>getModifyMemberMenuItemAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetModifyMemberMenuItemAttribute">TemplateRender::getModifyMemberMenuItemAttribute()</a></dd>
<dt><b>getModRDNAttributes</b></dt>
<dd>in file import_functions.php, method <a href="phpLDAPadmin/Import/ImportLDIF.html#methodgetModRDNAttributes">ImportLDIF::getModRDNAttributes()</a><br> Build the attributes for the entry when the change type is modrdn</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>getMustAttrNames</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClass.html#methodgetMustAttrNames">ObjectClass::getMustAttrNames()</a><br> Gets an array of attribute names (strings) that entries of this ObjectClass must define.</dd>
<dt><b>getMustAttrNames</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass.html#methodgetMustAttrNames">ObjectClass::getMustAttrNames()</a><br> Gets an array of attribute names (strings) that entries of this ObjectClass must define.</dd>
<dt><b>getMustAttrs</b></dt>
<dd>in file update_confirm.php, function <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---update_confirm.php.html#functiongetMustAttrs">getMustAttrs()</a></dd>
<dt><b>getMustAttrs</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass.html#methodgetMustAttrs">ObjectClass::getMustAttrs()</a><br> Gets an array of AttributeType objects that entries of this ObjectClass must define.</dd>
<dt><b>getMustAttrs</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClass.html#methodgetMustAttrs">ObjectClass::getMustAttrs()</a><br> Gets an array of AttributeType objects that entries of this ObjectClass must define.</dd>
<dt><b>getName</b></dt>
<dd>in file schema.inc, method <a href="lib/MatchingRuleUse.html#methodgetName">MatchingRuleUse::getName()</a><br> Gets this MatchingRuleUse's name</dd>
<dt><b>getName</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodgetName">DS::getName()</a><br> Get the name of this datastore</dd>
<dt><b>getName</b></dt>
<dd>in file schema.inc, method <a href="lib/MatchingRule.html#methodgetName">MatchingRule::getName()</a><br> Gets this MatchingRule's name.</dd>
<dt><b>getName</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetName">AttributeType::getName()</a><br> Gets this attribute's name</dd>
<dt><b>getName</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetName">LAMConfig::getName()</a><br> Returns the name of the config file</dd>
<dt><b>getName</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/SchemaItem.html#methodgetName">SchemaItem::getName()</a><br> Return the objects name.</dd>
<dt><b>getName</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass_ObjectClassAttribute.html#methodgetName">ObjectClass_ObjectClassAttribute::getName()</a></dd>
<dt><b>getName</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClass.html#methodgetName">ObjectClass::getName()</a><br> Gets the name of this objectClass (ie, "inetOrgPerson")</dd>
<dt><b>getName</b></dt>
<dd>in file schemaBrowser.inc, method <a href="tools/toolSchemaBrowser.html#methodgetName">toolSchemaBrowser::getName()</a><br> Returns the name of the tool.</dd>
<dt><b>getName</b></dt>
<dd>in file profileEditor.inc, method <a href="tools/toolProfileEditor.html#methodgetName">toolProfileEditor::getName()</a><br> Returns the name of the tool.</dd>
<dt><b>getName</b></dt>
<dd>in file ouEditor.inc, method <a href="tools/toolOUEditor.html#methodgetName">toolOUEditor::getName()</a><br> Returns the name of the tool.</dd>
<dt><b>getName</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClassAttribute.html#methodgetName">ObjectClassAttribute::getName()</a><br> Gets this attribute's name</dd>
<dt><b>getName</b></dt>
<dd>in file serverInfo.inc, method <a href="tools/toolServerInformation.html#methodgetName">toolServerInformation::getName()</a><br> Returns the name of the tool.</dd>
<dt><b>getName</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#methodgetName">xmlTemplate::getName()</a><br> Return the template name</dd>
<dt><b>getName</b></dt>
<dd>in file pdfEdit.inc, method <a href="tools/toolPDFEditor.html#methodgetName">toolPDFEditor::getName()</a><br> Returns the name of the tool.</dd>
<dt><b>getName</b></dt>
<dd>in file fileUpload.inc, method <a href="tools/toolFileUpload.html#methodgetName">toolFileUpload::getName()</a><br> Returns the name of the tool.</dd>
<dt><b>getName</b></dt>
<dd>in file tools.inc, method <a href="tools/LAMTool.html#methodgetName">LAMTool::getName()</a><br> Returns the name of the tool.</dd>
<dt><b>getName</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetName">Attribute::getName()</a><br> Return the name of the attribute.</dd>
<dt><b>getName</b></dt>
<dd>in file lists.inc, method <a href="lists/lamListTool.html#methodgetName">lamListTool::getName()</a><br> Returns the tool name.</dd>
<dt><b>getName</b></dt>
<dd>in file tests.inc, method <a href="tools/toolTests.html#methodgetName">toolTests::getName()</a><br> Returns the name of the tool.</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>getNoteAliasAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodgetNoteAliasAttribute">PageRender::getNoteAliasAttribute()</a></dd>
<dt><b>getNoteHintAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodgetNoteHintAttribute">PageRender::getNoteHintAttribute()</a></dd>
<dt><b>getNoteRDNAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodgetNoteRDNAttribute">PageRender::getNoteRDNAttribute()</a></dd>
<dt><b>getNoteRequiredAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodgetNoteRequiredAttribute">PageRender::getNoteRequiredAttribute()</a></dd>
<dt><b>getNoteROAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodgetNoteROAttribute">PageRender::getNoteROAttribute()</a></dd>
<dt><b>getObjectClasses</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetObjectClasses">Template::getObjectClasses()</a><br> Return the objectclasses defined in this template</dd>
<dt><b>getObjectClasses</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodgetObjectClasses">TreeItem::getObjectClasses()</a></dd>
<dt><b>getOID</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/SchemaItem.html#methodgetOID">SchemaItem::getOID()</a></dd>
<dt><b>getOID</b></dt>
<dd>in file schema.inc, method <a href="lib/SchemaItem.html#methodgetOID">SchemaItem::getOID()</a></dd>
<dt><b>getOldValue</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetOldValue">Attribute::getOldValue()</a></dd>
<dt><b>getOldValues</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetOldValues">Attribute::getOldValues()</a></dd>
<dt><b>getOnChange</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetOnChange">Attribute::getOnChange()</a></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>getOptionCount</b></dt>
<dd>in file SelectionAttribute.php, method <a href="phpLDAPadmin/Templates/SelectionAttribute.html#methodgetOptionCount">SelectionAttribute::getOptionCount()</a></dd>
<dt><b>getOrdering</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetOrdering">AttributeType::getOrdering()</a><br> Gets this attribute's ordering specification.</dd>
<dt><b>getOrdering</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetOrdering">AttributeType::getOrdering()</a><br> Gets this attribute's ordering specification.</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>getPage</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetPage">Attribute::getPage()</a></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>getParents</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass.html#methodgetParents">ObjectClass::getParents()</a><br> This will return all our parent ObjectClass Objects</dd>
<dt><b>getPassword</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodgetPassword">DS::getPassword()</a><br> Get the login password of the user logged into this datastore's connection method</dd>
<dt><b>getPath</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetPath">LAMConfig::getPath()</a><br> Returns the path to the config file.</dd>
<dt><b>getPDFStructureDefinitions</b></dt>
<dd>in file pdfstruct.inc, function <a href="PDF/_lib---pdfstruct.inc.html#functiongetPDFStructureDefinitions">getPDFStructureDefinitions()</a><br> This function will return all available PDF structure definitions for the submitted account scope.</dd>
<dt><b>getPosition</b></dt>
<dd>in file profileEditor.inc, method <a href="tools/toolProfileEditor.html#methodgetPosition">toolProfileEditor::getPosition()</a><br> Returns the prefered position of this tool on the tools page.</dd>
<dt><b>getPosition</b></dt>
<dd>in file ouEditor.inc, method <a href="tools/toolOUEditor.html#methodgetPosition">toolOUEditor::getPosition()</a><br> Returns the prefered position of this tool on the tools page.</dd>
<dt><b>getPosition</b></dt>
<dd>in file tests.inc, method <a href="tools/toolTests.html#methodgetPosition">toolTests::getPosition()</a><br> Returns the prefered position of this tool on the tools page.</dd>
<dt><b>getPosition</b></dt>
<dd>in file pdfEdit.inc, method <a href="tools/toolPDFEditor.html#methodgetPosition">toolPDFEditor::getPosition()</a><br> Returns the prefered position of this tool on the tools page.</dd>
<dt><b>getPosition</b></dt>
<dd>in file serverInfo.inc, method <a href="tools/toolServerInformation.html#methodgetPosition">toolServerInformation::getPosition()</a><br> Returns the prefered position of this tool on the tools page.</dd>
<dt><b>getPosition</b></dt>
<dd>in file schemaBrowser.inc, method <a href="tools/toolSchemaBrowser.html#methodgetPosition">toolSchemaBrowser::getPosition()</a><br> Returns the prefered position of this tool on the tools page.</dd>
<dt><b>getPosition</b></dt>
<dd>in file tools.inc, method <a href="tools/LAMTool.html#methodgetPosition">LAMTool::getPosition()</a><br> Returns the prefered position of this tool on the tools page.</dd>
<dt><b>getPosition</b></dt>
<dd>in file fileUpload.inc, method <a href="tools/toolFileUpload.html#methodgetPosition">toolFileUpload::getPosition()</a><br> Returns the prefered position of this tool on the tools page.</dd>
<dt><b>getPostAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodgetPostAttribute">PageRender::getPostAttribute()</a><br> Process our <post> arguments from the templates</dd>
<dt><b>getPostValue</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetPostValue">Attribute::getPostValue()</a></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>getPublicKey</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodgetPublicKey">Crypt_RSA::getPublicKey()</a><br> Returns the public key</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>getRDN</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodgetRDN">TreeItem::getRDN()</a><br> Get the RDN of this tree items DN.</dd>
<dt><b>getRDN</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetRDN">Template::getRDN()</a><br> Return the RDN for this template. If the DN is already defined, then the RDN will be calculated from it.</dd>
<dt><b>getRDNAttributeName</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetRDNAttributeName">Template::getRDNAttributeName()</a><br> Return the attribute name part of the RDN</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>getRDNAttrs</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetRDNAttrs">Template::getRDNAttrs()</a><br> Get all the RDNs for this template, in RDN order.</dd>
<dt><b>getReadOnlyMessage</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetReadOnlyMessage">TemplateRender::getReadOnlyMessage()</a></dd>
<dt><b>getReadTime</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#methodgetReadTime">xmlTemplate::getReadTime()</a><br> Get the Template read time.</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>getRecursiveAttributesFromObjectClass</b></dt>
<dd>in file schemaTest.php, function <a href="tools/_templates---tests---schemaTest.php.html#functiongetRecursiveAttributesFromObjectClass">getRecursiveAttributesFromObjectClass()</a><br> Returns the names of all attributes which are managed by the given object class and its parents.</dd>
<dt><b>getRegExp</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodgetRegExp">Template::getRegExp()</a></dd>
<dt><b>getRemovedValues</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetRemovedValues">Attribute::getRemovedValues()</a><br> Display the values removed in an attribute.</dd>
<dt><b>getRenameMenuItemAttribute</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetRenameMenuItemAttribute">TemplateRender::getRenameMenuItemAttribute()</a></dd>
<dt><b>getRequiredByObjectClasses</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetRequiredByObjectClasses">AttributeType::getRequiredByObjectClasses()</a><br> Gets the list of "required by" objectClasses, that is the list of objectClasses which provide must have attribute.</dd>
<dt><b>getRequiredByObjectClasses</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetRequiredByObjectClasses">AttributeType::getRequiredByObjectClasses()</a><br> Gets the list of "required by" objectClasses, that is the list of objectClasses which provide must have attribute.</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>getRequiresPasswordChangeRights</b></dt>
<dd>in file ouEditor.inc, method <a href="tools/toolOUEditor.html#methodgetRequiresPasswordChangeRights">toolOUEditor::getRequiresPasswordChangeRights()</a><br> Returns if the tool requires password change rights.</dd>
<dt><b>getRequiresPasswordChangeRights</b></dt>
<dd>in file tests.inc, method <a href="tools/toolTests.html#methodgetRequiresPasswordChangeRights">toolTests::getRequiresPasswordChangeRights()</a><br> Returns if the tool requires password change rights.</dd>
<dt><b>getRequiresPasswordChangeRights</b></dt>
<dd>in file profileEditor.inc, method <a href="tools/toolProfileEditor.html#methodgetRequiresPasswordChangeRights">toolProfileEditor::getRequiresPasswordChangeRights()</a><br> Returns if the tool requires password change rights.</dd>
<dt><b>getRequiresPasswordChangeRights</b></dt>
<dd>in file fileUpload.inc, method <a href="tools/toolFileUpload.html#methodgetRequiresPasswordChangeRights">toolFileUpload::getRequiresPasswordChangeRights()</a><br> Returns if the tool requires password change rights.</dd>
<dt><b>getRequiresPasswordChangeRights</b></dt>
<dd>in file tools.inc, method <a href="tools/LAMTool.html#methodgetRequiresPasswordChangeRights">LAMTool::getRequiresPasswordChangeRights()</a><br> Returns if the tool requires password change rights.</dd>
<dt><b>getRequiresPasswordChangeRights</b></dt>
<dd>in file schemaBrowser.inc, method <a href="tools/toolSchemaBrowser.html#methodgetRequiresPasswordChangeRights">toolSchemaBrowser::getRequiresPasswordChangeRights()</a><br> Returns if the tool requires password change rights.</dd>
<dt><b>getRequiresPasswordChangeRights</b></dt>
<dd>in file serverInfo.inc, method <a href="tools/toolServerInformation.html#methodgetRequiresPasswordChangeRights">toolServerInformation::getRequiresPasswordChangeRights()</a><br> Returns if the tool requires password change rights.</dd>
<dt><b>getRequiresPasswordChangeRights</b></dt>
<dd>in file pdfEdit.inc, method <a href="tools/toolPDFEditor.html#methodgetRequiresPasswordChangeRights">toolPDFEditor::getRequiresPasswordChangeRights()</a><br> Returns if the tool requires password change rights.</dd>
<dt><b>getRequiresWriteAccess</b></dt>
<dd>in file fileUpload.inc, method <a href="tools/toolFileUpload.html#methodgetRequiresWriteAccess">toolFileUpload::getRequiresWriteAccess()</a><br> Returns if the tool requires write access to LDAP.</dd>
<dt><b>getRequiresWriteAccess</b></dt>
<dd>in file serverInfo.inc, method <a href="tools/toolServerInformation.html#methodgetRequiresWriteAccess">toolServerInformation::getRequiresWriteAccess()</a><br> Returns if the tool requires write access to LDAP.</dd>
<dt><b>getRequiresWriteAccess</b></dt>
<dd>in file tools.inc, method <a href="tools/LAMTool.html#methodgetRequiresWriteAccess">LAMTool::getRequiresWriteAccess()</a><br> Returns if the tool requires write access to LDAP.</dd>
<dt><b>getRequiresWriteAccess</b></dt>
<dd>in file ouEditor.inc, method <a href="tools/toolOUEditor.html#methodgetRequiresWriteAccess">toolOUEditor::getRequiresWriteAccess()</a><br> Returns if the tool requires write access to LDAP.</dd>
<dt><b>getRequiresWriteAccess</b></dt>
<dd>in file schemaBrowser.inc, method <a href="tools/toolSchemaBrowser.html#methodgetRequiresWriteAccess">toolSchemaBrowser::getRequiresWriteAccess()</a><br> Returns if the tool requires write access to LDAP.</dd>
<dt><b>getRequiresWriteAccess</b></dt>
<dd>in file tests.inc, method <a href="tools/toolTests.html#methodgetRequiresWriteAccess">toolTests::getRequiresWriteAccess()</a><br> Returns if the tool requires write access to LDAP.</dd>
<dt><b>getRequiresWriteAccess</b></dt>
<dd>in file pdfEdit.inc, method <a href="tools/toolPDFEditor.html#methodgetRequiresWriteAccess">toolPDFEditor::getRequiresWriteAccess()</a><br> Returns if the tool requires write access to LDAP.</dd>
<dt><b>getRequiresWriteAccess</b></dt>
<dd>in file profileEditor.inc, method <a href="tools/toolProfileEditor.html#methodgetRequiresWriteAccess">toolProfileEditor::getRequiresWriteAccess()</a><br> Returns if the tool requires write access to LDAP.</dd>
<dt><b>getRootDSE</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodgetRootDSE">myldap::getRootDSE()</a></dd>
<dt><b>getRows</b></dt>
<dd>in file MultiLineAttribute.php, method <a href="phpLDAPadmin/Templates/MultiLineAttribute.html#methodgetRows">MultiLineAttribute::getRows()</a></dd>
<dt><b>getRowspanString</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlElement.html#methodgetRowspanString">htmlElement::getRowspanString()</a><br> Returns the HTML attribute for the rowspan.</dd>
<dt><b>getSchemaAttribute</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodgetSchemaAttribute">myldap::getSchemaAttribute()</a><br> Gets a single AttributeType object specified by name.</dd>
<dt><b>getSchemaObjectClass</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodgetSchemaObjectClass">myldap::getSchemaObjectClass()</a><br> Gets a single ObjectClass object specified by name.</dd>
<dt><b>getSectionHeadline</b></dt>
<dd>in file pdf.inc, function <a href="PDF/_lib---pdf.inc.html#functiongetSectionHeadline">getSectionHeadline()</a><br> Creates a section headline.</dd>
<dt><b>getSelection</b></dt>
<dd>in file SelectionAttribute.php, method <a href="phpLDAPadmin/Templates/SelectionAttribute.html#methodgetSelection">SelectionAttribute::getSelection()</a></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>getSelfServiceFieldSettings</b></dt>
<dd>in file selfService.inc, function <a href="selfService/_lib---selfService.inc.html#functiongetSelfServiceFieldSettings">getSelfServiceFieldSettings()</a><br> Returns the field settings for the self service.</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 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 selfService.inc, function <a href="selfService/_lib---selfService.inc.html#functiongetSelfServiceOptions">getSelfServiceOptions()</a><br> Returns meta HTML code for each self service 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>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>getSelfServiceProfiles</b></dt>
<dd>in file selfService.inc, function <a href="selfService/_lib---selfService.inc.html#functiongetSelfServiceProfiles">getSelfServiceProfiles()</a><br> Returns a list of all available self service profiles (without .conf)</dd>
<dt><b>getSelfServiceSearchAttributes</b></dt>
<dd>in file selfService.inc, function <a href="selfService/_lib---selfService.inc.html#functiongetSelfServiceSearchAttributes">getSelfServiceSearchAttributes()</a><br> Returns a list of possible search attributes for the self service.</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 selfService.inc, function <a href="selfService/_lib---selfService.inc.html#functiongetSelfServiceSettings">getSelfServiceSettings()</a><br> Returns a hash array (module name => elements) of all module options for the configuration page.</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>getServer</b></dt>
<dd>in file config_default.php, method <a href="phpLDAPadmin/Tree/Config.html#methodgetServer">Config::getServer()</a></dd>
<dt><b>getServer</b></dt>
<dd>in file Visitor.php, method <a href="phpLDAPadmin/Templates/Visitor.html#methodgetServer">Visitor::getServer()</a><br> Return this LDAP Server object</dd>
<dt><b>getServer</b></dt>
<dd>in file import_functions.php, method <a href="phpLDAPadmin/Import/ImportLDIF.html#methodgetServer">ImportLDIF::getServer()</a></dd>
<dt><b>getServer</b></dt>
<dd>in file Tree.php, method <a href="phpLDAPadmin/Tree/Tree.html#methodgetServer">Tree::getServer()</a><br> Get the server Object for this tree</dd>
<dt><b>getServer</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/Export.html#methodgetServer">Export::getServer()</a><br> Return this LDAP Server object</dd>
<dt><b>getServer</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#methodgetServer">xmlTemplate::getServer()</a><br> Return this LDAP Server object</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>getServerHostKeyAlgorithms</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetServerHostKeyAlgorithms">Net_SSH2::getServerHostKeyAlgorithms()</a><br> Return a list of the host key (public key) algorithms the server supports.</dd>
<dt><b>getServerID</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/Export.html#methodgetServerID">Export::getServerID()</a><br> Return the LDAP server ID</dd>
<dt><b>getServerID</b></dt>
<dd>in file Tree.php, method <a href="phpLDAPadmin/Tree/Tree.html#methodgetServerID">Tree::getServerID()</a><br> Get the Server ID for this tree</dd>
<dt><b>getServerID</b></dt>
<dd>in file Visitor.php, method <a href="phpLDAPadmin/Templates/Visitor.html#methodgetServerID">Visitor::getServerID()</a><br> Return the LDAP server ID</dd>
<dt><b>getServerID</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#methodgetServerID">xmlTemplate::getServerID()</a><br> Return the LDAP server ID</dd>
<dt><b>getServerIdentification</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetServerIdentification">Net_SSH2::getServerIdentification()</a><br> Return the server identification.</dd>
<dt><b>getServerIdentification</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodgetServerIdentification">Net_SSH1::getServerIdentification()</a><br> Return the server identification.</dd>
<dt><b>getServerKeyPublicExponent</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodgetServerKeyPublicExponent">Net_SSH1::getServerKeyPublicExponent()</a><br> Return the server key public exponent</dd>
<dt><b>getServerKeyPublicModulus</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodgetServerKeyPublicModulus">Net_SSH1::getServerKeyPublicModulus()</a><br> Return the server key public modulus</dd>
<dt><b>getServerList</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/Datastore.html#methodgetServerList">Datastore::getServerList()</a><br> Get a list of all the configured servers.</dd>
<dt><b>getServerList</b></dt>
<dd>in file config_default.php, method <a href="phpLDAPadmin/Tree/Config.html#methodgetServerList">Config::getServerList()</a><br> Return a list of our servers</dd>
<dt><b>getServerPublicHostKey</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodgetServerPublicHostKey">Net_SSH2::getServerPublicHostKey()</a><br> Returns the server public host key.</dd>
<dt><b>getSFTPErrors</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodgetSFTPErrors">Net_SFTP::getSFTPErrors()</a><br> Returns all errors</dd>
<dt><b>getSFTPLog</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodgetSFTPLog">Net_SFTP::getSFTPLog()</a><br> Returns a log of the packets that have been sent and received.</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>getshells</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functiongetshells">getshells()</a><br> Returns a list of shells listed in config/shells.</dd>
<dt><b>getSize</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetSize">Attribute::getSize()</a></dd>
<dt><b>getSource</b></dt>
<dd>in file import_functions.php, method <a href="phpLDAPadmin/Import/Import.html#methodgetSource">Import::getSource()</a></dd>
<dt><b>getSource</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClassAttribute.html#methodgetSource">ObjectClassAttribute::getSource()</a><br> Gets the name of the ObjectClass which originally specified this attribute.</dd>
<dt><b>getSource</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetSource">Attribute::getSource()</a></dd>
<dt><b>getSource</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass_ObjectClassAttribute.html#methodgetSource">ObjectClass_ObjectClassAttribute::getSource()</a></dd>
<dt><b>getSpacer</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetSpacer">Attribute::getSpacer()</a></dd>
<dt><b>GetStringWidth</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#methodGetStringWidth">UFPDF::GetStringWidth()</a></dd>
<dt><b>GetStringWidth</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodGetStringWidth">FPDF::GetStringWidth()</a></dd>
<dt><b>getSubstr</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetSubstr">AttributeType::getSubstr()</a><br> Gets this attribute's substring matching specification</dd>
<dt><b>getSubstr</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetSubstr">AttributeType::getSubstr()</a><br> Gets this attribute's substring matching specification</dd>
<dt><b>getSubTools</b></dt>
<dd>in file serverInfo.inc, method <a href="tools/toolServerInformation.html#methodgetSubTools">toolServerInformation::getSubTools()</a><br> Returns a list of sub tools or an empty array.</dd>
<dt><b>getSubTools</b></dt>
<dd>in file fileUpload.inc, method <a href="tools/toolFileUpload.html#methodgetSubTools">toolFileUpload::getSubTools()</a><br> Returns a list of sub tools or an empty array.</dd>
<dt><b>getSubTools</b></dt>
<dd>in file schemaBrowser.inc, method <a href="tools/toolSchemaBrowser.html#methodgetSubTools">toolSchemaBrowser::getSubTools()</a><br> Returns a list of sub tools or an empty array.</dd>
<dt><b>getSubTools</b></dt>
<dd>in file pdfEdit.inc, method <a href="tools/toolPDFEditor.html#methodgetSubTools">toolPDFEditor::getSubTools()</a><br> Returns a list of sub tools or an empty array.</dd>
<dt><b>getSubTools</b></dt>
<dd>in file tests.inc, method <a href="tools/toolTests.html#methodgetSubTools">toolTests::getSubTools()</a><br> Returns a list of sub tools or an empty array.</dd>
<dt><b>getSubTools</b></dt>
<dd>in file profileEditor.inc, method <a href="tools/toolProfileEditor.html#methodgetSubTools">toolProfileEditor::getSubTools()</a><br> Returns a list of sub tools or an empty array.</dd>
<dt><b>getSubTools</b></dt>
<dd>in file tools.inc, method <a href="tools/LAMTool.html#methodgetSubTools">LAMTool::getSubTools()</a><br> Returns a list of sub tools or an empty array.</dd>
<dt><b>getSubTools</b></dt>
<dd>in file ouEditor.inc, method <a href="tools/toolOUEditor.html#methodgetSubTools">toolOUEditor::getSubTools()</a><br> Returns a list of sub tools or an empty array.</dd>
<dt><b>getSuffixList</b></dt>
<dd>in file baseType.inc, method <a href="types/baseType.html#methodgetSuffixList">baseType::getSuffixList()</a><br> Returns a list of LDAP suffixes for this type.</dd>
<dt><b>getSupAttribute</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetSupAttribute">AttributeType::getSupAttribute()</a><br> Gets this attribute's parent attribute (if any). If this attribute does not inherit from another attribute, null is returned.</dd>
<dt><b>getSupAttribute</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetSupAttribute">AttributeType::getSupAttribute()</a><br> Gets this attribute's parent attribute (if any). If this attribute does not inherit from another attribute, null is returned.</dd>
<dt><b>getSupClasses</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass.html#methodgetSupClasses">ObjectClass::getSupClasses()</a><br> Gets the objectClass names from which this objectClass inherits.</dd>
<dt><b>getSupClasses</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClass.html#methodgetSupClasses">ObjectClass::getSupClasses()</a><br> Gets the objectClass names from which this objectClass inherits.</dd>
<dt><b>getSupportedAuthentications</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodgetSupportedAuthentications">Net_SSH1::getSupportedAuthentications()</a><br> Return a list of authentications supported by SSH1 server.</dd>
<dt><b>getSupportedCiphers</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodgetSupportedCiphers">Net_SSH1::getSupportedCiphers()</a><br> Return a list of ciphers supported by SSH1 server.</dd>
<dt><b>getSupportedVersions</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodgetSupportedVersions">Net_SFTP::getSupportedVersions()</a><br> Get supported SFTP versions</dd>
<dt><b>getSyntaxOID</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetSyntaxOID">AttributeType::getSyntaxOID()</a><br> Gets this attribute's syntax OID. Differs from getSyntaxString() in that this function only returns the actual OID with any length specification removed.</dd>
<dt><b>getSyntaxOID</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetSyntaxOID">AttributeType::getSyntaxOID()</a><br> Gets this attribute's syntax OID. Differs from getSyntaxString() in that this function only returns the actual OID with any length specification removed.</dd>
<dt><b>getSyntaxString</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetSyntaxString">AttributeType::getSyntaxString()</a><br> Gets this attribute's raw syntax string (ie: "1.2.3.4{16}").</dd>
<dt><b>getSyntaxString</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetSyntaxString">AttributeType::getSyntaxString()</a><br> Gets this attribute's raw syntax string (ie: "1.2.3.4{16}").</dd>
<dt><b>getTemplate</b></dt>
<dd>in file import_functions.php, method <a href="phpLDAPadmin/Import/ImportLDIF.html#methodgetTemplate">ImportLDIF::getTemplate()</a></dd>
<dt><b>getTemplate</b></dt>
<dd>in file import_functions.php, method <a href="phpLDAPadmin/Import/Importer.html#methodgetTemplate">Importer::getTemplate()</a></dd>
<dt><b>getTemplate</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodgetTemplate">TreeItem::getTemplate()</a></dd>
<dt><b>getTemplate</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplates.html#methodgetTemplate">xmlTemplates::getTemplate()</a><br> Return a template by its ID</dd>
<dt><b>getTemplate</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/Exporter.html#methodgetTemplate">Exporter::getTemplate()</a></dd>
<dt><b>getTemplate</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodgetTemplate">PageRender::getTemplate()</a></dd>
<dt><b>getTemplateChoice</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodgetTemplateChoice">PageRender::getTemplateChoice()</a><br> This function is invoked if we dont know which template we should be using.</dd>
<dt><b>getTemplateID</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodgetTemplateID">PageRender::getTemplateID()</a></dd>
<dt><b>getTemplates</b></dt>
<dd>in file QueryRender.php, method <a href="phpLDAPadmin/Templates/QueryRender.html#methodgetTemplates">QueryRender::getTemplates()</a><br> Get our templates applicable for this object</dd>
<dt><b>getTemplates</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplates.html#methodgetTemplates">xmlTemplates::getTemplates()</a><br> Return a list of templates by their type This function should return a sorted list, as the array is built sorted.</dd>
<dt><b>getTemplates</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodgetTemplates">PageRender::getTemplates()</a><br> Get our templates applicable for this object</dd>
<dt><b>getTitle</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#methodgetTitle">xmlTemplate::getTitle()</a><br> Get template title</dd>
<dt><b>getTitleBarSubtitle</b></dt>
<dd>in file baseType.inc, method <a href="types/baseType.html#methodgetTitleBarSubtitle">baseType::getTitleBarSubtitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarSubtitle</b></dt>
<dd>in file netgroup.inc, method <a href="types/netgroup.html#methodgetTitleBarSubtitle">netgroup::getTitleBarSubtitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarSubtitle</b></dt>
<dd>in file user.inc, method <a href="types/user.html#methodgetTitleBarSubtitle">user::getTitleBarSubtitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarSubtitle</b></dt>
<dd>in file group.inc, method <a href="types/group.html#methodgetTitleBarSubtitle">group::getTitleBarSubtitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarSubtitle</b></dt>
<dd>in file dhcp.inc, method <a href="types/dhcp.html#methodgetTitleBarSubtitle">dhcp::getTitleBarSubtitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarSubtitle</b></dt>
<dd>in file host.inc, method <a href="types/host.html#methodgetTitleBarSubtitle">host::getTitleBarSubtitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarSubtitle</b></dt>
<dd>in file smbDomain.inc, method <a href="types/smbDomain.html#methodgetTitleBarSubtitle">smbDomain::getTitleBarSubtitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarTitle</b></dt>
<dd>in file netgroup.inc, method <a href="types/netgroup.html#methodgetTitleBarTitle">netgroup::getTitleBarTitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarTitle</b></dt>
<dd>in file dhcp.inc, method <a href="types/dhcp.html#methodgetTitleBarTitle">dhcp::getTitleBarTitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarTitle</b></dt>
<dd>in file mailAlias.inc, method <a href="types/mailAlias.html#methodgetTitleBarTitle">mailAlias::getTitleBarTitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarTitle</b></dt>
<dd>in file baseType.inc, method <a href="types/baseType.html#methodgetTitleBarTitle">baseType::getTitleBarTitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarTitle</b></dt>
<dd>in file user.inc, method <a href="types/user.html#methodgetTitleBarTitle">user::getTitleBarTitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarTitle</b></dt>
<dd>in file asteriskExt.inc, method <a href="types/asteriskExt.html#methodgetTitleBarTitle">asteriskExt::getTitleBarTitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarTitle</b></dt>
<dd>in file smbDomain.inc, method <a href="types/smbDomain.html#methodgetTitleBarTitle">smbDomain::getTitleBarTitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarTitle</b></dt>
<dd>in file group.inc, method <a href="types/group.html#methodgetTitleBarTitle">group::getTitleBarTitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTitleBarTitle</b></dt>
<dd>in file host.inc, method <a href="types/host.html#methodgetTitleBarTitle">host::getTitleBarTitle()</a><br> Returns the the title text for the title bar on the new/edit page.</dd>
<dt><b>getTools</b></dt>
<dd>in file tools.inc, function <a href="tools/_lib---tools.inc.html#functiongetTools">getTools()</a><br> Returns the tools which are available for LAM.</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>getType</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#methodgetType">xmlTemplate::getType()</a><br> Return the template type</dd>
<dt><b>getType</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/ExportCSV.html#methodgetType">ExportCSV::getType()</a></dd>
<dt><b>getType</b></dt>
<dd>in file import_functions.php, method <a href="phpLDAPadmin/Import/ImportLDIF.html#methodgetType">ImportLDIF::getType()</a></dd>
<dt><b>getType</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/ExportLDIF.html#methodgetType">ExportLDIF::getType()</a></dd>
<dt><b>getType</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/ExportDSML.html#methodgetType">ExportDSML::getType()</a></dd>
<dt><b>getType</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/ExportVCARD.html#methodgetType">ExportVCARD::getType()</a></dd>
<dt><b>getType</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetType">Attribute::getType()</a></dd>
<dt><b>getType</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass.html#methodgetType">ObjectClass::getType()</a><br> Gets the type of this objectClass: STRUCTURAL, ABSTRACT, or AUXILIARY.</dd>
<dt><b>getType</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetType">AttributeType::getType()</a><br> Gets this attribute's type</dd>
<dt><b>getType</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetType">AttributeType::getType()</a><br> Gets this attribute's type</dd>
<dt><b>getType</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClass.html#methodgetType">ObjectClass::getType()</a><br> Gets the type of this objectClass: STRUCTURAL, ABSTRACT, or AUXILIARY.</dd>
<dt><b>getTypeAlias</b></dt>
<dd>in file types.inc, function <a href="types/_lib---types.inc.html#functiongetTypeAlias">getTypeAlias()</a><br> Returns the alias name of an account type.</dd>
<dt><b>getTypeDescription</b></dt>
<dd>in file types.inc, function <a href="types/_lib---types.inc.html#functiongetTypeDescription">getTypeDescription()</a><br> Returns the description of an account type.</dd>
<dt><b>getTypes</b></dt>
<dd>in file types.inc, function <a href="types/_lib---types.inc.html#functiongetTypes">getTypes()</a><br> Returns a list of available account types.</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>getUsage</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetUsage">AttributeType::getUsage()</a><br> Gets this attribute's usage string as defined by the LDAP server</dd>
<dt><b>getUsage</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetUsage">AttributeType::getUsage()</a><br> Gets this attribute's usage string as defined by the LDAP server</dd>
<dt><b>getUsedByAttrs</b></dt>
<dd>in file schema.inc, method <a href="lib/MatchingRuleUse.html#methodgetUsedByAttrs">MatchingRuleUse::getUsedByAttrs()</a><br> Gets an array of attribute names (strings) which use this MatchingRuleUse object.</dd>
<dt><b>getUsedByAttrs</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/MatchingRule.html#methodgetUsedByAttrs">MatchingRule::getUsedByAttrs()</a><br> Gets an array of attribute names (strings) which use this MatchingRule</dd>
<dt><b>getUsedByAttrs</b></dt>
<dd>in file schema.inc, method <a href="lib/MatchingRule.html#methodgetUsedByAttrs">MatchingRule::getUsedByAttrs()</a><br> Gets an array of attribute names (strings) which use this MatchingRule</dd>
<dt><b>getUsedByAttrs</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/MatchingRuleUse.html#methodgetUsedByAttrs">MatchingRuleUse::getUsedByAttrs()</a><br> Gets an array of attribute names (strings) which use this MatchingRuleUse object.</dd>
<dt><b>getUsedInObjectClasses</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodgetUsedInObjectClasses">AttributeType::getUsedInObjectClasses()</a><br> Gets the list of "used in" objectClasses, that is the list of objectClasses which provide this attribute.</dd>
<dt><b>getUsedInObjectClasses</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodgetUsedInObjectClasses">AttributeType::getUsedInObjectClasses()</a><br> Gets the list of "used in" objectClasses, that is the list of objectClasses which provide this attribute.</dd>
<dt><b>getUseTLS</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetUseTLS">LAMConfig::getUseTLS()</a><br> Returns if TLS is activated.</dd>
<dt><b>getValue</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodgetValue">DS::getValue()</a><br> Return a configuration value</dd>
<dt><b>getValue</b></dt>
<dd>in file lists.inc, method <a href="lists/lamListOption.html#methodgetValue">lamListOption::getValue()</a><br> Returns the option value. The value must not contain "=" and ";".</dd>
<dt><b>getValue</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetValue">Attribute::getValue()</a></dd>
<dt><b>getValue</b></dt>
<dd>in file config_default.php, method <a href="phpLDAPadmin/Tree/Config.html#methodgetValue">Config::getValue()</a><br> Get a configuration value.</dd>
<dt><b>getValueCount</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetValueCount">Attribute::getValueCount()</a></dd>
<dt><b>getValues</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetValues">Attribute::getValues()</a></dd>
<dt><b>getVerify</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodgetVerify">Attribute::getVerify()</a></dd>
<dt><b>getViewSchemaMessage</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodgetViewSchemaMessage">TemplateRender::getViewSchemaMessage()</a></dd>
<dt><b>GetX</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodGetX">FPDF::GetX()</a></dd>
<dt><b>GetY</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodGetY">FPDF::GetY()</a></dd>
<dt><b>get_AccountModules</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_AccountModules">LAMConfig::get_AccountModules()</a><br> Returns an array of all selected account modules</dd>
<dt><b>get_ActiveTypes</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_ActiveTypes">LAMConfig::get_ActiveTypes()</a><br> Returns a list of active account types.</dd>
<dt><b>get_Admins</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_Admins">LAMConfig::get_Admins()</a><br> Returns an array of string with all admin names</dd>
<dt><b>get_Adminstring</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_Adminstring">LAMConfig::get_Adminstring()</a><br> Returns all admin users seperated by semicolons</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_cached_item</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionget_cached_item">get_cached_item()</a><br> Returns the cached array of LDAP resources.</dd>
<dt><b>get_cached_schema</b></dt>
<dd>in file schema.inc, function <a href="lib/_lib---schema.inc.html#functionget_cached_schema">get_cached_schema()</a><br> Returns the cached array of schemaitem objects for the specified</dd>
<dt><b>get_cacheTimeout</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_cacheTimeout">LAMConfig::get_cacheTimeout()</a><br> Returns the LDAP cache timeout in minutes</dd>
<dt><b>get_cacheTimeoutSec</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_cacheTimeoutSec">LAMConfig::get_cacheTimeoutSec()</a><br> Returns the LDAP cache timeout in seconds</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_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_custom_file</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionget_custom_file">get_custom_file()</a><br> Get a customized file for a server We don't need any caching, because it's done by PHP</dd>
<dt><b>get_defaultLanguage</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_defaultLanguage">LAMConfig::get_defaultLanguage()</a><br> Returns the default language string</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_enc_type</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionget_enc_type">get_enc_type()</a><br> Detects password encryption type</dd>
<dt><b>get_formatted_dn</b></dt>
<dd>in file HTMLTree.php, method <a href="phpLDAPadmin/Tree/HTMLTree.html#methodget_formatted_dn">HTMLTree::get_formatted_dn()</a></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_href</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionget_href">get_href()</a><br> Fetches the URL for the specified item. This is a convenience function for fetching project HREFs (like bugs)</dd>
<dt><b>get_icon</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionget_icon">get_icon()</a><br> Given a DN and server ID, this function reads the DN's objectClasses and</dd>
<dt><b>get_indentation</b></dt>
<dd>in file AJAXTree.php, method <a href="phpLDAPadmin/Tree/AJAXTree.html#methodget_indentation">AJAXTree::get_indentation()</a><br> Return the indentation before a node</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_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_line_end_format</b></dt>
<dd>in file export_form.php, function <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---export_form.php.html#functionget_line_end_format">get_line_end_format()</a><br> Helper function for fetching the line end format.</dd>
<dt><b>get_listAttributes</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_listAttributes">LAMConfig::get_listAttributes()</a><br> Returns the list of attributes to show in user list</dd>
<dt><b>get_logout_menu_item</b></dt>
<dd>in file HTMLTree.php, method <a href="phpLDAPadmin/Tree/HTMLTree.html#methodget_logout_menu_item">HTMLTree::get_logout_menu_item()</a></dd>
<dt><b>get_menu_item</b></dt>
<dd>in file HTMLTree.php, method <a href="phpLDAPadmin/Tree/HTMLTree.html#methodget_menu_item">HTMLTree::get_menu_item()</a><br> Get the HTML for each tree menu option</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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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_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 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 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 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 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 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 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 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_moduleSettings</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_moduleSettings">LAMConfig::get_moduleSettings()</a><br> Returns a list of saved module settings</dd>
<dt><b>get_next_number</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionget_next_number">get_next_number()</a><br> For LDAP servers with auto_number enabled, this function will get the next available number using the host's preferred mechanism (pool or search).</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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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_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 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 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 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 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 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 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 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 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 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_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_preg</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionget_preg">get_preg()</a><br> Checks if a given value matches the selected regular expression.</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 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 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_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_rdn</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionget_rdn">get_rdn()</a><br> Given a DN string, this returns the 'RDN' portion of the string.</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_request</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionget_request">get_request()</a><br> Return the result of a form variable, with optional default</dd>
<dt><b>get_schema_attribute</b></dt>
<dd>in file schema.inc, function <a href="lib/_lib---schema.inc.html#functionget_schema_attribute">get_schema_attribute()</a><br> Gets a single AttributeType object specified by name.</dd>
<dt><b>get_schema_attributes</b></dt>
<dd>in file schema.inc, function <a href="lib/_lib---schema.inc.html#functionget_schema_attributes">get_schema_attributes()</a><br> Gets an associative array of AttributeType objects for the specified server. Each array entry's key is the name of the attributeType in lower-case and the value is an AttributeType object.</dd>
<dt><b>get_schema_matching_rules</b></dt>
<dd>in file schema.inc, function <a href="lib/_lib---schema.inc.html#functionget_schema_matching_rules">get_schema_matching_rules()</a><br> Returns an array of MatchingRule objects for the specified server.</dd>
<dt><b>get_schema_objectclass</b></dt>
<dd>in file schema.inc, function <a href="lib/_lib---schema.inc.html#functionget_schema_objectclass">get_schema_objectclass()</a><br> Gets a single ObjectClass object specified by name.</dd>
<dt><b>get_schema_objectclasses</b></dt>
<dd>in file schema.inc, function <a href="lib/_lib---schema.inc.html#functionget_schema_objectclasses">get_schema_objectclasses()</a><br> Gets an associative array of ObjectClass objects for the specified server. Each array entry's key is the name of the objectClass in lower-case and the value is an ObjectClass object.</dd>
<dt><b>get_schema_syntaxes</b></dt>
<dd>in file schema.inc, function <a href="lib/_lib---schema.inc.html#functionget_schema_syntaxes">get_schema_syntaxes()</a><br> Returns an array of Syntax objects that this LDAP server uses mapped to their descriptions. The key of each entry is the OID of the Syntax.</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_scriptPath</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_scriptPath">LAMConfig::get_scriptPath()</a><br> Returns the path to the external script</dd>
<dt><b>get_scriptRights</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_scriptRights">LAMConfig::get_scriptRights()</a><br> Returns the chmod value for new home directories.</dd>
<dt><b>get_scriptServers</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_scriptServers">LAMConfig::get_scriptServers()</a><br> Returns the servers of the external script as a Array</dd>
<dt><b>get_searchLimit</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_searchLimit">LAMConfig::get_searchLimit()</a><br> Returns the LDAP search limit.</dd>
<dt><b>get_ServerURL</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_ServerURL">LAMConfig::get_ServerURL()</a><br> Returns the server address as string</dd>
<dt><b>get_Suffix</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_Suffix">LAMConfig::get_Suffix()</a><br> Returns the LDAP suffix for the given account type</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_typeSettings</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_typeSettings">LAMConfig::get_typeSettings()</a><br> Returns a list of saved type settings</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 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_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 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 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_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>get_user_agent_string</b></dt>
<dd>in file export_form.php, function <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---export_form.php.html#functionget_user_agent_string">get_user_agent_string()</a><br> Gets the USER_AGENT string from the $_SERVER array, all in lower case in an E_NOTICE safe manner.</dd>
<dt><b>GidAttribute</b></dt>
<dd>in file GidAttribute.php, class <a href="phpLDAPadmin/Templates/GidAttribute.html">GidAttribute</a><br> Represents a 'gidNumber' attribute</dd>
<dt><b>group</b></dt>
<dd>in file group.inc, class <a href="types/group.html">group</a><br> The account type for group accounts (e.g. Unix and Samba).</dd>
<dt><b>groupRefreshPrimary</b></dt>
<dd>in file group.inc, method <a href="lists/lamGroupList.html#methodgroupRefreshPrimary">lamGroupList::groupRefreshPrimary()</a><br> Refreshes the primary group members list.</dd>
<dt><b>generalInformation.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---generalInformation.inc.html">generalInformation.inc</a></dd>
<dt><b>group.inc</b></dt>
<dd>procedural page <a href="types/_lib---types---group.inc.html">group.inc</a></dd>
<dt><b>GidAttribute.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---GidAttribute.php.html">GidAttribute.php</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="h"></a>
<div>
<h2>h</h2>
<dl>
<dt><b>$h</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$h">FPDF::$h</a></dd>
<dt><b>$helper</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$helper">Attribute::$helper</a></dd>
<dt><b>$helpervalue</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$helpervalue">Attribute::$helpervalue</a></dd>
<dt><b>$hint</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$hint">Attribute::$hint</a></dd>
<dt><b>$hooks</b></dt>
<dd>in file config_default.php, variable <a href="phpLDAPadmin/Tree/Config.html#var$hooks">Config::$hooks</a></dd>
<dt><b>$hPt</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$hPt">FPDF::$hPt</a></dd>
<dt><b>$httpAuthentication</b></dt>
<dd>in file selfService.inc, variable <a href="selfService/selfServiceProfile.html#var$httpAuthentication">selfServiceProfile::$httpAuthentication</a><br> HTTP authentication</dd>
<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>handleRequest</b></dt>
<dd>in file ajax.php, method <a href="tools/lamAjax.html#methodhandleRequest">lamAjax::handleRequest()</a><br> Manages an AJAX request.</dd>
<dt><b>hasBeenModified</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodhasBeenModified">Attribute::hasBeenModified()</a></dd>
<dt><b>hasDefaultTemplate</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodhasDefaultTemplate">Template::hasDefaultTemplate()</a><br> Is default templates enabled? This will disable the default template from the engine.</dd>
<dt><b>hash</b></dt>
<dd>in file Hash.php, method <a href="Crypt_Hash/Crypt_Hash.html#methodhash">Crypt_Hash::hash()</a><br> Compute the HMAC.</dd>
<dt><b>haveDefaultTemplate</b></dt>
<dd>in file TemplateRender.php, method <a href="phpLDAPadmin/Templates/TemplateRender.html#methodhaveDefaultTemplate">TemplateRender::haveDefaultTemplate()</a><br> Is the default template enabled?</dd>
<dt><b>haveDefaultTemplate</b></dt>
<dd>in file QueryRender.php, method <a href="phpLDAPadmin/Templates/QueryRender.html#methodhaveDefaultTemplate">QueryRender::haveDefaultTemplate()</a><br> Are default queries enabled?</dd>
<dt><b>haveFriendlyName</b></dt>
<dd>in file config_default.php, method <a href="phpLDAPadmin/Tree/Config.html#methodhaveFriendlyName">Config::haveFriendlyName()</a><br> This function will return true if a friendly name exists for an attribute.</dd>
<dt><b>haveFriendlyName</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodhaveFriendlyName">Attribute::haveFriendlyName()</a></dd>
<dt><b>haveMoreValues</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodhaveMoreValues">Attribute::haveMoreValues()</a></dd>
<dt><b>Header</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodHeader">FPDF::Header()</a></dd>
<dt><b>header</b></dt>
<dd>in file lamPDF.inc, method <a href="PDF/lamPDF.html#methodheader">lamPDF::header()</a></dd>
<dt><b>head_add</b></dt>
<dd>in file page.php, method <a href="phpLDAPadmin/Page/page.html#methodhead_add">page::head_add()</a></dd>
<dt><b>help.inc</b></dt>
<dd>procedural page <a href="Help/_help---help.inc.html">help.inc</a></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>hide</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodhide">Attribute::hide()</a></dd>
<dt><b>HOOKSDIR</b></dt>
<dd>in file functions.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#defineHOOKSDIR">HOOKSDIR</a></dd>
<dt><b>Horde_Cipher_blowfish</b></dt>
<dd>in file blowfish.php, class <a href="horde-cipher/Horde_Cipher_blowfish.html">Horde_Cipher_blowfish</a></dd>
<dt><b>host</b></dt>
<dd>in file host.inc, class <a href="types/host.html">host</a><br> The account type for host accounts (e.g. Samba).</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>HTDOCDIR</b></dt>
<dd>in file functions.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#defineHTDOCDIR">HTDOCDIR</a></dd>
<dt><b>htmlAccountPageButton</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlAccountPageButton.html">htmlAccountPageButton</a><br> Prints a button for the account pages.</dd>
<dt><b>htmlButton</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlButton.html">htmlButton</a><br> Simple button.</dd>
<dt><b>htmlElement</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlElement.html">htmlElement</a><br> Represents a HTML element.</dd>
<dt><b>htmlFieldset</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlFieldset.html">htmlFieldset</a><br> Generates a fieldset.</dd>
<dt><b>htmlGroup</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlGroup.html">htmlGroup</a><br> Groups multiple htmlElements.</dd>
<dt><b>htmlHelpLink</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlHelpLink.html">htmlHelpLink</a><br> Renders a help link.</dd>
<dt><b>htmlHiddenInput</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlHiddenInput.html">htmlHiddenInput</a><br> Generates a hidden input field.</dd>
<dt><b>htmlHorizontalLine</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlHorizontalLine.html">htmlHorizontalLine</a><br> Prints a horizontal line.</dd>
<dt><b>htmlid</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionhtmlid">htmlid()</a><br> Returns a HTML id that can be used in the URL after the #.</dd>
<dt><b>htmlImage</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlImage.html">htmlImage</a><br> Prints the HTML code for an image.</dd>
<dt><b>htmlInputCheckbox</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlInputCheckbox.html">htmlInputCheckbox</a><br> Prints the HTML code for a checkbox.</dd>
<dt><b>htmlInputField</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlInputField.html">htmlInputField</a><br> A standard input field.</dd>
<dt><b>htmlInputFileUpload</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlInputFileUpload.html">htmlInputFileUpload</a><br> Prints the HTML code for a file upload field.</dd>
<dt><b>htmlInputTextarea</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlInputTextarea.html">htmlInputTextarea</a><br> Prints the HTML code for a textarea.</dd>
<dt><b>htmlLink</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlLink.html">htmlLink</a><br> Generates a link.</dd>
<dt><b>htmlOutputText</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlOutputText.html">htmlOutputText</a><br> Prints the text and escapes contained HTML code by default.</dd>
<dt><b>htmlRadio</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlRadio.html">htmlRadio</a><br> Represents a radio selection.</dd>
<dt><b>htmlSelect</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlSelect.html">htmlSelect</a><br> Represents a select box.</dd>
<dt><b>htmlSpacer</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlSpacer.html">htmlSpacer</a><br> Adds an empty space with given width and height.</dd>
<dt><b>htmlStatusMessage</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlStatusMessage.html">htmlStatusMessage</a><br> Prints a status message (e.g. error message).</dd>
<dt><b>htmlSubTitle</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlSubTitle.html">htmlSubTitle</a><br> Generates a subtitle line. This is used to group multiple fields.</dd>
<dt><b>htmlTable</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlTable.html">htmlTable</a><br> Structures elements using a table.</dd>
<dt><b>htmlTableExtendedInputCheckbox</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlTableExtendedInputCheckbox.html">htmlTableExtendedInputCheckbox</a><br> Checkbox with descriptive label and help link.</dd>
<dt><b>htmlTableExtendedInputField</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlTableExtendedInputField.html">htmlTableExtendedInputField</a><br> An extended input field that combines label, input field and help.</dd>
<dt><b>htmlTableExtendedInputFileUpload</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlTableExtendedInputFileUpload.html">htmlTableExtendedInputFileUpload</a><br> File upload with descriptive label and help link.</dd>
<dt><b>htmlTableExtendedInputTextarea</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlTableExtendedInputTextarea.html">htmlTableExtendedInputTextarea</a><br> Text area with label and help link.</dd>
<dt><b>htmlTableExtendedRadio</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlTableExtendedRadio.html">htmlTableExtendedRadio</a><br> Radio list with descriptive label and help link.</dd>
<dt><b>htmlTableExtendedSelect</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlTableExtendedSelect.html">htmlTableExtendedSelect</a><br> Select with label and help link.</dd>
<dt><b>htmlTableRow</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlTableRow.html">htmlTableRow</a><br> A row inside a htmlTable.</dd>
<dt><b>htmlTitle</b></dt>
<dd>in file html.inc, class <a href="metaHTML/htmlTitle.html">htmlTitle</a><br> Generates a title line. This is used for page titles.</dd>
<dt><b>HTMLTree</b></dt>
<dd>in file HTMLTree.php, class <a href="phpLDAPadmin/Tree/HTMLTree.html">HTMLTree</a><br> This class implements a straight HTML tree - no AJAX rendering is used.</dd>
<dt><b>Hash.php</b></dt>
<dd>procedural page <a href="Crypt_Hash/_lib---3rdParty---phpseclib---Crypt---Hash.php.html">Hash.php</a></dd>
<dt><b>html.inc</b></dt>
<dd>procedural page <a href="metaHTML/_lib---html.inc.html">html.inc</a></dd>
<dt><b>hostObject.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---hostObject.inc.html">hostObject.inc</a></dd>
<dt><b>host.inc</b></dt>
<dd>procedural page <a href="types/_lib---types---host.inc.html">host.inc</a></dd>
<dt><b>hooks.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---hooks.php.html">hooks.php</a></dd>
<dt><b>HTMLTree.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---HTMLTree.php.html">HTMLTree.php</a></dd>
<dt><b>help.php</b></dt>
<dd>procedural page <a href="Help/_templates---help.php.html">help.php</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="i"></a>
<div>
<h2>i</h2>
<dl>
<dt><b>$icon</b></dt>
<dd>in file TreeItem.php, variable <a href="phpLDAPadmin/Tree/TreeItem.html#var$icon">TreeItem::$icon</a></dd>
<dt><b>$icon</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$icon">Attribute::$icon</a></dd>
<dt><b>$id</b></dt>
<dd>in file xmlTemplates.php, variable <a href="phpLDAPadmin/Templates/xmlTemplate.html#var$id">xmlTemplate::$id</a></dd>
<dt><b>$image</b></dt>
<dd>in file tools.inc, variable <a href="tools/LAMSubTool.html#var$image">LAMSubTool::$image</a><br> image URL (relative to graphics/)</dd>
<dt><b>$images</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$images">FPDF::$images</a></dd>
<dt><b>$index</b></dt>
<dd>in file ds.php, variable <a href="phpLDAPadmin/DataStore/DS.html#var$index">DS::$index</a></dd>
<dt><b>$InFooter</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$InFooter">FPDF::$InFooter</a></dd>
<dt><b>$InHeader</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$InHeader">FPDF::$InHeader</a></dd>
<dt><b>$input</b></dt>
<dd>in file import_functions.php, variable <a href="phpLDAPadmin/Import/Import.html#var$input">Import::$input</a></dd>
<dt><b>$inputFields</b></dt>
<dd>in file selfService.inc, variable <a href="selfService/selfServiceProfile.html#var$inputFields">selfServiceProfile::$inputFields</a><br> input fields</dd>
<dt><b>$internal</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$internal">Attribute::$internal</a></dd>
<dt><b>$isEnabled</b></dt>
<dd>in file html.inc, variable <a href="metaHTML/htmlInputCheckbox.html#var$isEnabled">htmlInputCheckbox::$isEnabled</a><br> enabled or disabled</dd>
<dt><b>$isImageButton</b></dt>
<dd>in file html.inc, variable <a href="metaHTML/htmlButton.html#var$isImageButton">htmlButton::$isImageButton</a><br> image button or text button</dd>
<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>$is_collective</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$is_collective">AttributeType::$is_collective</a><br> boolean: is collective?</dd>
<dt><b>$is_no_user_modification</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$is_no_user_modification">AttributeType::$is_no_user_modification</a><br> boolean: can use modify?</dd>
<dt><b>$is_obsolete</b></dt>
<dd>in file schema.inc, variable <a href="lib/ObjectClass.html#var$is_obsolete">ObjectClass::$is_obsolete</a><br> boolean value indicating whether this objectClass is obsolete</dd>
<dt><b>$is_obsolete</b></dt>
<dd>in file schema.inc, variable <a href="lib/MatchingRule.html#var$is_obsolete">MatchingRule::$is_obsolete</a><br> Boolean value indicating whether this MatchingRule is obsolete</dd>
<dt><b>$is_obsolete</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$is_obsolete">AttributeType::$is_obsolete</a><br> string: the description</dd>
<dt><b>$is_single_value</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$is_single_value">AttributeType::$is_single_value</a><br> boolean: is single valued only?</dd>
<dt><b>$items</b></dt>
<dd>in file export_functions.php, variable <a href="phpLDAPadmin/Export/Export.html#var$items">Export::$items</a></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>Image</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodImage">FPDF::Image()</a></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>IMGDIR</b></dt>
<dd>in file common.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---common.php.html#defineIMGDIR">IMGDIR</a></dd>
<dt><b>Import</b></dt>
<dd>in file import_functions.php, class <a href="phpLDAPadmin/Import/Import.html">Import</a><br> Import Class</dd>
<dt><b>Importer</b></dt>
<dd>in file import_functions.php, class <a href="phpLDAPadmin/Import/Importer.html">Importer</a><br> Importer Class</dd>
<dt><b>ImportLDIF</b></dt>
<dd>in file import_functions.php, class <a href="phpLDAPadmin/Import/ImportLDIF.html">ImportLDIF</a><br> Import entries from LDIF</dd>
<dt><b>inactivityTime</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodinactivityTime">DS::inactivityTime()</a><br> Return the time left in seconds until this connection times out. If there is not timeout, this function will return null.</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 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>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 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 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>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>initValue</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodinitValue">Attribute::initValue()</a></dd>
<dt><b>initVars</b></dt>
<dd>in file schema.inc, method <a href="lib/MatchingRuleUse.html#methodinitVars">MatchingRuleUse::initVars()</a><br> Initialize the class' member variables</dd>
<dt><b>initVars</b></dt>
<dd>in file schema.inc, method <a href="lib/MatchingRule.html#methodinitVars">MatchingRule::initVars()</a><br> Initialize the class' member variables</dd>
<dt><b>initVars</b></dt>
<dd>in file schema.inc, method <a href="lib/SchemaItem.html#methodinitVars">SchemaItem::initVars()</a><br> Initialize class members to default values.</dd>
<dt><b>initVars</b></dt>
<dd>in file schema.inc, method <a href="lib/Syntax.html#methodinitVars">Syntax::initVars()</a><br> Initializes the class' member variables</dd>
<dt><b>initVars</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodinitVars">AttributeType::initVars()</a><br> Initialize the class' member variables</dd>
<dt><b>initVars</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClass.html#methodinitVars">ObjectClass::initVars()</a><br> Initialize the class' member variables</dd>
<dt><b>Instance</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/Datastore.html#methodInstance">Datastore::Instance()</a><br> Return an object Instance of a configured database.</dd>
<dt><b>InstanceId</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/Datastore.html#methodInstanceId">Datastore::InstanceId()</a><br> Return an object Instance of a configured database.</dd>
<dt><b>InstanceName</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/Datastore.html#methodInstanceName">Datastore::InstanceName()</a><br> Return an object Instance of a configured database.</dd>
<dt><b>interactiveRead</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodinteractiveRead">Net_SSH1::interactiveRead()</a><br> Returns the output of an interactive shell when no more output is available.</dd>
<dt><b>interactiveWrite</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodinteractiveWrite">Net_SSH1::interactiveWrite()</a><br> Inputs a command into an interactive shell.</dd>
<dt><b>in_array_ignore_case</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionin_array_ignore_case">in_array_ignore_case()</a><br> Checks if a string exists in an array, ignoring case.</dd>
<dt><b>isAdminDisabled</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#methodisAdminDisabled">xmlTemplate::isAdminDisabled()</a><br> May be overloaded in other classes</dd>
<dt><b>isAdminDisabled</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodisAdminDisabled">Template::isAdminDisabled()</a></dd>
<dt><b>isAjaxEnabled</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionisAjaxEnabled">isAjaxEnabled()</a><br> Is PLA configured for AJAX display</dd>
<dt><b>isAliasFor</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodisAliasFor">AttributeType::isAliasFor()</a><br> Returns whether the specified attribute is an alias for this one (based on this attribute's alias list).</dd>
<dt><b>isAliasFor</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodisAliasFor">AttributeType::isAliasFor()</a><br> Returns whether the specified attribute is an alias for this one (based on this attribute's alias list).</dd>
<dt><b>isAnonBindAllowed</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodisAnonBindAllowed">myldap::isAnonBindAllowed()</a><br> Return if anonymous bind is allowed in the configuration</dd>
<dt><b>isAnonBindAllowed</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#methodisAnonBindAllowed">ldap_pla::isAnonBindAllowed()</a><br> Fetch whether the user has configured a certain server login to be non anonymous</dd>
<dt><b>isAttrBinary</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodisAttrBinary">myldap::isAttrBinary()</a><br> Given an attribute name and server ID number, this function returns whether the attribute may contain binary data. This is useful for developers who wish to display the contents of an arbitrary attribute but don't want to dump binary data on the page.</dd>
<dt><b>isAttrBoolean</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodisAttrBoolean">myldap::isAttrBoolean()</a><br> Given an attribute name and server ID number, this function returns whether the attrbiute contains boolean data. This is useful for developers who wish to display the contents of a boolean attribute with a drop-down.</dd>
<dt><b>isAttrHidden</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#methodisAttrHidden">ldap_pla::isAttrHidden()</a><br> Returns true if the specified attribute is configured as hidden in config.php.</dd>
<dt><b>isAttrReadOnly</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#methodisAttrReadOnly">ldap_pla::isAttrReadOnly()</a><br> Returns true if the specified attribute is configured as read only in config.php.</dd>
<dt><b>isAttrType</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodisAttrType">Template::isAttrType()</a><br> Return true if this is a MUST,MAY attribute</dd>
<dt><b>isAttrUnique</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#methodisAttrUnique">ldap_pla::isAttrUnique()</a><br> Returns true if the specified attribute is configured as unique in config.php.</dd>
<dt><b>isBaseDN</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodisBaseDN">TreeItem::isBaseDN()</a><br> Return if this item is a base DN item.</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>isBranchRenameEnabled</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#methodisBranchRenameEnabled">ldap_pla::isBranchRenameEnabled()</a><br> Returns true if the user has configured the specified server to enable branch (non-leaf) renames.</dd>
<dt><b>isChildSorted</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodisChildSorted">TreeItem::isChildSorted()</a><br> Do the children require resorting</dd>
<dt><b>isCommandAvailable</b></dt>
<dd>in file config_default.php, method <a href="phpLDAPadmin/Tree/Config.html#methodisCommandAvailable">Config::isCommandAvailable()</a><br> Simple ACL to see if commands can be run</dd>
<dt><b>isCompress</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionisCompress">isCompress()</a><br> Is compression enabled for output</dd>
<dt><b>isCompressed</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/Export.html#methodisCompressed">Export::isCompressed()</a></dd>
<dt><b>isDefaultKey</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodisDefaultKey">DS::isDefaultKey()</a></dd>
<dt><b>isDefaultSetting</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodisDefaultSetting">DS::isDefaultSetting()</a></dd>
<dt><b>isDNAttr</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodisDNAttr">myldap::isDNAttr()</a><br> Returns true if the attribute specified is required to take as input a DN.</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>isForceDelete</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodisForceDelete">Attribute::isForceDelete()</a></dd>
<dt><b>isForceMay</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodisForceMay">myldap::isForceMay()</a><br> This function determines if the specified attribute is contained in the force_may list as configured in config.php.</dd>
<dt><b>isForceMay</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass.html#methodisForceMay">ObjectClass::isForceMay()</a><br> Determine if an array is listed in the force_may attrs</dd>
<dt><b>isForceMay</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodisForceMay">AttributeType::isForceMay()</a></dd>
<dt><b>isInLDAP</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodisInLDAP">TreeItem::isInLDAP()</a></dd>
<dt><b>isInternal</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodisInternal">Attribute::isInternal()</a></dd>
<dt><b>isInValid</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodisInValid">Template::isInValid()</a><br> Get the template validity or the reason it is invalid</dd>
<dt><b>isJpegPhoto</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodisJpegPhoto">myldap::isJpegPhoto()</a><br> Used to determine if the specified attribute is indeed a jpegPhoto. If the specified attribute is one that houses jpeg data, true is returned. Otherwise this function returns false.</dd>
<dt><b>isLAMProVersion</b></dt>
<dd>in file selfService.inc, function <a href="selfService/_lib---selfService.inc.html#functionisLAMProVersion">isLAMProVersion()</a><br> Returns if this is a LAM Pro installation.</dd>
<dt><b>isLeaf</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodisLeaf">TreeItem::isLeaf()</a><br> Return if this node is a leaf.</dd>
<dt><b>isLoggedIn</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodisLoggedIn">DS::isLoggedIn()</a><br> Return if this datastore's connection method has been logged into</dd>
<dt><b>isMay</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodisMay">Attribute::isMay()</a></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>isMultiLineAttr</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#methodisMultiLineAttr">ldap_pla::isMultiLineAttr()</a><br> Determines if an attribute's value can contain multiple lines. Attributes that fall in this multi-line category may be configured in config.php. Hence, this function accesses the global variable $_SESSION[APPCONFIG]->custom->appearance['multi_line_attributes'];</dd>
<dt><b>isMultiple</b></dt>
<dd>in file SelectionAttribute.php, method <a href="phpLDAPadmin/Templates/SelectionAttribute.html#methodisMultiple">SelectionAttribute::isMultiple()</a></dd>
<dt><b>isMultiple</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodisMultiple">Attribute::isMultiple()</a></dd>
<dt><b>isNoLeaf</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodisNoLeaf">Template::isNoLeaf()</a></dd>
<dt><b>isObfuscatedText</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionisObfuscatedText">isObfuscatedText()</a><br> Checks if the given text is obfuscated.</dd>
<dt><b>isOpened</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodisOpened">TreeItem::isOpened()</a><br> Return if this item has been opened.</dd>
<dt><b>isPrime</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodisPrime">Math_BigInteger::isPrime()</a><br> Checks a numer to see if it's prime</dd>
<dt><b>isRDN</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodisRDN">Attribute::isRDN()</a><br> Return if this attribute is an RDN attribute</dd>
<dt><b>isReadOnly</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodisReadOnly">Template::isReadOnly()</a><br> Test if this template has been marked as a read-only template</dd>
<dt><b>isReadOnly</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodisReadOnly">DS::isReadOnly()</a></dd>
<dt><b>isReadOnly</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodisReadOnly">Attribute::isReadOnly()</a></dd>
<dt><b>isRelated</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass.html#methodisRelated">ObjectClass::isRelated()</a><br> Return if this objectClass is related to $oclass</dd>
<dt><b>isRequired</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodisRequired">Attribute::isRequired()</a></dd>
<dt><b>isSafeAscii</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/Export.html#methodisSafeAscii">Export::isSafeAscii()</a><br> Helper method to check if the attribute value should be base 64 encoded.</dd>
<dt><b>isSelected</b></dt>
<dd>in file lists.inc, method <a href="lists/lamBooleanListOption.html#methodisSelected">lamBooleanListOption::isSelected()</a><br> Returns if this option is selected.</dd>
<dt><b>isSelfServiceProfileWritable</b></dt>
<dd>in file selfService.inc, function <a href="selfService/_lib---selfService.inc.html#functionisSelfServiceProfileWritable">isSelfServiceProfileWritable()</a><br> Checks if a service profile is writable.</dd>
<dt><b>isSessionValid</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodisSessionValid">DS::isSessionValid()</a><br> This method should be overridden in application specific ds files</dd>
<dt><b>isSessionValid</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#methodisSessionValid">ldap_pla::isSessionValid()</a><br> Check if the session timeout has occured for this LDAP server.</dd>
<dt><b>isShowCreateEnabled</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#methodisShowCreateEnabled">ldap_pla::isShowCreateEnabled()</a><br> Gets whether the admin has configured phpLDAPadmin to show the "Create New" link in the tree viewer.</dd>
<dt><b>isSizeLimited</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodisSizeLimited">TreeItem::isSizeLimited()</a><br> Return if this node has hit an LDAP size limit (and thus doesnt have all its children).</dd>
<dt><b>isStructural</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass.html#methodisStructural">ObjectClass::isStructural()</a></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>isType</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#methodisType">xmlTemplate::isType()</a><br> Test if a template is of a type</dd>
<dt><b>isVisible</b></dt>
<dd>in file fileUpload.inc, method <a href="tools/toolFileUpload.html#methodisVisible">toolFileUpload::isVisible()</a><br> Returns if the tool is visible in the menu.</dd>
<dt><b>isVisible</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodisVisible">DS::isVisible()</a><br> Functions that return the condition of the datasource</dd>
<dt><b>isVisible</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodisVisible">Attribute::isVisible()</a></dd>
<dt><b>isVisible</b></dt>
<dd>in file ouEditor.inc, method <a href="tools/toolOUEditor.html#methodisVisible">toolOUEditor::isVisible()</a><br> Returns if the tool is visible in the menu.</dd>
<dt><b>isVisible</b></dt>
<dd>in file pdfEdit.inc, method <a href="tools/toolPDFEditor.html#methodisVisible">toolPDFEditor::isVisible()</a><br> Returns if the tool is visible in the menu.</dd>
<dt><b>isVisible</b></dt>
<dd>in file schemaBrowser.inc, method <a href="tools/toolSchemaBrowser.html#methodisVisible">toolSchemaBrowser::isVisible()</a><br> Returns if the tool is visible in the menu.</dd>
<dt><b>isVisible</b></dt>
<dd>in file serverInfo.inc, method <a href="tools/toolServerInformation.html#methodisVisible">toolServerInformation::isVisible()</a><br> Returns if the tool is visible in the menu.</dd>
<dt><b>isVisible</b></dt>
<dd>in file Query.php, method <a href="phpLDAPadmin/Queries/Query.html#methodisVisible">Query::isVisible()</a><br> Test if the template is visible</dd>
<dt><b>isVisible</b></dt>
<dd>in file tools.inc, method <a href="tools/LAMTool.html#methodisVisible">LAMTool::isVisible()</a><br> Returns if the tool is visible in the menu.</dd>
<dt><b>isVisible</b></dt>
<dd>in file profileEditor.inc, method <a href="tools/toolProfileEditor.html#methodisVisible">toolProfileEditor::isVisible()</a><br> Returns if the tool is visible in the menu.</dd>
<dt><b>isVisible</b></dt>
<dd>in file tests.inc, method <a href="tools/toolTests.html#methodisVisible">toolTests::isVisible()</a><br> Returns if the tool is visible in the menu.</dd>
<dt><b>isVisible</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodisVisible">Template::isVisible()</a><br> Test if the template is visible</dd>
<dt><b>isWritable</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodisWritable">LAMConfig::isWritable()</a><br> Returns if the file can be written on the filesystem.</dd>
<dt><b>isWritable</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMCfgMain.html#methodisWritable">LAMCfgMain::isWritable()</a><br> Returns if the configuration file is writable.</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_browser</b></dt>
<dd>in file export_form.php, function <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---export_form.php.html#functionis_browser">is_browser()</a><br> Determine the OS for the browser</dd>
<dt><b>is_dn_string</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionis_dn_string">is_dn_string()</a><br> Given a string, this function returns true if the string has the format of a DN (ie, looks like "cn=Foo,dc=example,dc=com"). Returns false otherwise.</dd>
<dt><b>is_mail_string</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionis_mail_string">is_mail_string()</a><br> Get whether a string looks like an email address (user@example.com).</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>is_url_string</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionis_url_string">is_url_string()</a><br> Get whether a string looks like a web URL (http://www.example.com/)</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>
<dt><b>import.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---import.php.html">import.php</a></dd>
<dt><b>import_form.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---import_form.php.html">import_form.php</a></dd>
<dt><b>index.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---index.php.html">index.php</a></dd>
<dt><b>index.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---index.php.html">index.php</a></dd>
<dt><b>import_functions.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---import_functions.php.html">import_functions.php</a></dd>
<dt><b>index.php</b></dt>
<dd>procedural page <a href="configuration/_templates---config---index.php.html">index.php</a></dd>
<dt><b>initsuff.php</b></dt>
<dd>procedural page <a href="main/_templates---initsuff.php.html">initsuff.php</a></dd>
<dt><b>index.php</b></dt>
<dd>procedural page <a href="tools/_templates---tests---index.php.html">index.php</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="j"></a>
<div>
<h2>j</h2>
<dl>
<dt><b>$javascript</b></dt>
<dd>in file HTMLTree.php, variable <a href="phpLDAPadmin/Tree/HTMLTree.html#var$javascript">HTMLTree::$javascript</a></dd>
<dt><b>JpegAttribute</b></dt>
<dd>in file JpegAttribute.php, class <a href="phpLDAPadmin/Templates/JpegAttribute.html">JpegAttribute</a><br> Represents an attribute whose values are jpeg pictures</dd>
<dt><b>JSDIR</b></dt>
<dd>in file functions.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#defineJSDIR">JSDIR</a></dd>
<dt><b>justModified</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodjustModified">Attribute::justModified()</a></dd>
<dt><b>JpegAttribute.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---JpegAttribute.php.html">JpegAttribute.php</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="k"></a>
<div>
<h2>k</h2>
<dl>
<dt><b>$k</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$k">FPDF::$k</a></dd>
<dt><b>$keywords</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$keywords">FPDF::$keywords</a></dd>
<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.html#top">top</a><br>
<hr />
<a name="l"></a>
<div>
<h2>l</h2>
<dl>
<dt><b>$labels</b></dt>
<dd>in file lists.inc, variable <a href="lists/lamList.html#var$labels">lamList::$labels</a><br> list of account specific labels</dd>
<dt><b>$LABEL_BACK_TO_ACCOUNT_LIST</b></dt>
<dd>in file baseType.inc, variable <a href="types/baseType.html#var$LABEL_BACK_TO_ACCOUNT_LIST">baseType::$LABEL_BACK_TO_ACCOUNT_LIST</a></dd>
<dt><b>$LABEL_CREATE_ANOTHER_ACCOUNT</b></dt>
<dd>in file baseType.inc, variable <a href="types/baseType.html#var$LABEL_CREATE_ANOTHER_ACCOUNT">baseType::$LABEL_CREATE_ANOTHER_ACCOUNT</a></dd>
<dt><b>$lasth</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$lasth">FPDF::$lasth</a></dd>
<dt><b>$LayoutMode</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$LayoutMode">FPDF::$LayoutMode</a></dd>
<dt><b>$LDAPPassword</b></dt>
<dd>in file selfService.inc, variable <a href="selfService/selfServiceProfile.html#var$LDAPPassword">selfServiceProfile::$LDAPPassword</a><br> LDAP password</dd>
<dt><b>$LDAPSuffix</b></dt>
<dd>in file selfService.inc, variable <a href="selfService/selfServiceProfile.html#var$LDAPSuffix">selfServiceProfile::$LDAPSuffix</a><br> LDAP suffix</dd>
<dt><b>$ldaptype</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$ldaptype">Attribute::$ldaptype</a></dd>
<dt><b>$LDAPUser</b></dt>
<dd>in file selfService.inc, variable <a href="selfService/selfServiceProfile.html#var$LDAPUser">selfServiceProfile::$LDAPUser</a><br> LDAP user DN</dd>
<dt><b>$LineWidth</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$LineWidth">FPDF::$LineWidth</a></dd>
<dt><b>$link</b></dt>
<dd>in file tools.inc, variable <a href="tools/LAMSubTool.html#var$link">LAMSubTool::$link</a><br> tool link (relative to templates/)</dd>
<dt><b>$links</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$links">FPDF::$links</a></dd>
<dt><b>$lMargin</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$lMargin">FPDF::$lMargin</a></dd>
<dt><b>$logDestination</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$logDestination">LAMCfgMain::$logDestination</a><br> log destination ("SYSLOG":syslog, "/...":file, "NONE":none)</dd>
<dt><b>$loginAttributeText</b></dt>
<dd>in file selfService.inc, variable <a href="selfService/selfServiceProfile.html#var$loginAttributeText">selfServiceProfile::$loginAttributeText</a><br> describing text for search attribute</dd>
<dt><b>$loginCaption</b></dt>
<dd>in file selfService.inc, variable <a href="selfService/selfServiceProfile.html#var$loginCaption">selfServiceProfile::$loginCaption</a><br> describing text for user login</dd>
<dt><b>$logLevel</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$logLevel">LAMCfgMain::$logLevel</a><br> log level</dd>
<dt><b>lamAjax</b></dt>
<dd>in file ajax.php, class <a href="tools/lamAjax.html">lamAjax</a><br> Manages all AJAX requests.</dd>
<dt><b>lamAsteriskExtList</b></dt>
<dd>in file asteriskExt.inc, class <a href="lists/lamAsteriskExtList.html">lamAsteriskExtList</a><br> Generates the list view.</dd>
<dt><b>lamBooleanListOption</b></dt>
<dd>in file lists.inc, class <a href="lists/lamBooleanListOption.html">lamBooleanListOption</a><br> Boolean option for list configuration.</dd>
<dt><b>LAMCfgMain</b></dt>
<dd>in file config.inc, class <a href="configuration/LAMCfgMain.html">LAMCfgMain</a><br> This class manages config.cfg.</dd>
<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>LAMConfig</b></dt>
<dd>in file config.inc, class <a href="configuration/LAMConfig.html">LAMConfig</a><br> This class manages .conf files.</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>lamDHCPList</b></dt>
<dd>in file dhcp.inc, class <a href="lists/lamDHCPList.html">lamDHCPList</a><br> Generates the list view.</dd>
<dt><b>lamGroupList</b></dt>
<dd>in file group.inc, class <a href="lists/lamGroupList.html">lamGroupList</a><br> Generates the list view.</dd>
<dt><b>lamHostList</b></dt>
<dd>in file host.inc, class <a href="lists/lamHostList.html">lamHostList</a><br> Generates the list view.</dd>
<dt><b>lamList</b></dt>
<dd>in file lists.inc, class <a href="lists/lamList.html">lamList</a><br> Generates the list view.</dd>
<dt><b>lamListOption</b></dt>
<dd>in file lists.inc, class <a href="lists/lamListOption.html">lamListOption</a><br> Represents a list configuration option.</dd>
<dt><b>lamListTool</b></dt>
<dd>in file lists.inc, class <a href="lists/lamListTool.html">lamListTool</a><br> Represents a tool which can be included in the account lists.</dd>
<dt><b>lamMailAliasList</b></dt>
<dd>in file mailAlias.inc, class <a href="lists/lamMailAliasList.html">lamMailAliasList</a><br> Generates the list view.</dd>
<dt><b>lamNetgroupList</b></dt>
<dd>in file netgroup.inc, class <a href="lists/lamNetgroupList.html">lamNetgroupList</a><br> Generates the list view.</dd>
<dt><b>lamPDF</b></dt>
<dd>in file lamPDF.inc, class <a href="PDF/lamPDF.html">lamPDF</a><br> Creates a LAM information page in PDF format.</dd>
<dt><b>LAMPDF_LINEWIDTH</b></dt>
<dd>in file pdf.inc, constant <a href="PDF/_lib---pdf.inc.html#defineLAMPDF_LINEWIDTH">LAMPDF_LINEWIDTH</a><br> PDF line width</dd>
<dt><b>lamRunLamdaemonTestSuite</b></dt>
<dd>in file lamdaemonTest.php, function <a href="tools/_templates---tests---lamdaemonTest.php.html#functionlamRunLamdaemonTestSuite">lamRunLamdaemonTestSuite()</a><br> Runs all tests for a given server.</dd>
<dt><b>lamSelectListOption</b></dt>
<dd>in file lists.inc, class <a href="lists/lamSelectListOption.html">lamSelectListOption</a><br> Boolean option for list configuration.</dd>
<dt><b>lamSmbDomainList</b></dt>
<dd>in file smbDomain.inc, class <a href="lists/lamSmbDomainList.html">lamSmbDomainList</a><br> Generates the list view.</dd>
<dt><b>LAMSubTool</b></dt>
<dd>in file tools.inc, class <a href="tools/LAMSubTool.html">LAMSubTool</a><br> Represents a subtool.</dd>
<dt><b>lamTestConnectSSH</b></dt>
<dd>in file lamdaemonTest.php, function <a href="tools/_templates---tests---lamdaemonTest.php.html#functionlamTestConnectSSH">lamTestConnectSSH()</a><br> Connects to the given SSH server.</dd>
<dt><b>lamTestLamdaemon</b></dt>
<dd>in file lamdaemonTest.php, function <a href="tools/_templates---tests---lamdaemonTest.php.html#functionlamTestLamdaemon">lamTestLamdaemon()</a><br> Runs a test case of lamdaemon.</dd>
<dt><b>LAMTool</b></dt>
<dd>in file tools.inc, class <a href="tools/LAMTool.html">LAMTool</a><br> Represents a tool.</dd>
<dt><b>lamUserList</b></dt>
<dd>in file user.inc, class <a href="lists/lamUserList.html">lamUserList</a><br> Generates the list view.</dd>
<dt><b>LAMVersion</b></dt>
<dd>in file config.inc, function <a href="configuration/_lib---config.inc.html#functionLAMVersion">LAMVersion()</a><br> Returns the version number of this LAM installation.</dd>
<dt><b>LANGDIR</b></dt>
<dd>in file functions.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#defineLANGDIR">LANGDIR</a></dd>
<dt><b>Ldap</b></dt>
<dd>in file ldap.inc, class <a href="LDAP/Ldap.html">Ldap</a><br> Ldap manages connection to LDAP and includes several helper functions.</dd>
<dt><b>ldapGetDN</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionldapGetDN">ldapGetDN()</a><br> Returns the given DN.</dd>
<dt><b>LDAPimport</b></dt>
<dd>in file import_functions.php, method <a href="phpLDAPadmin/Import/Import.html#methodLDAPimport">Import::LDAPimport()</a></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>ldap_error_msg</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionldap_error_msg">ldap_error_msg()</a><br> Print an LDAP error message</dd>
<dt><b>ldap_pla</b></dt>
<dd>in file ds_ldap_pla.php, class <a href="phpLDAPadmin/DataStore/ldap_pla.html">ldap_pla</a><br> This abstract class provides variables and methods for LDAP datastores for use by PLA.</dd>
<dt><b>lamdaemon.inc</b></dt>
<dd>procedural page <a href="modules/_lib---lamdaemon.inc.html">lamdaemon.inc</a></dd>
<dt><b>lamPDF.inc</b></dt>
<dd>procedural page <a href="PDF/_lib---lamPDF.inc.html">lamPDF.inc</a></dd>
<dt><b>ldap.inc</b></dt>
<dd>procedural page <a href="LDAP/_lib---ldap.inc.html">ldap.inc</a></dd>
<dt><b>lists.inc</b></dt>
<dd>procedural page <a href="lists/_lib---lists.inc.html">lists.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>LIBDIR</b></dt>
<dd>in file common.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---common.php.html#defineLIBDIR">LIBDIR</a></dd>
<dt><b>Line</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodLine">FPDF::Line()</a></dd>
<dt><b>LINE_SEPARATOR</b></dt>
<dd>in file config.inc, class constant <a href="configuration/LAMConfig.html#constLINE_SEPARATOR">LAMConfig::LINE_SEPARATOR</a><br> line separator</dd>
<dt><b>Link</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodLink">FPDF::Link()</a></dd>
<dt><b>listBuildFilter</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistBuildFilter">lamList::listBuildFilter()</a><br> Builds the regular expressions from the filter values.</dd>
<dt><b>listConfigurationChanged</b></dt>
<dd>in file group.inc, method <a href="lists/lamGroupList.html#methodlistConfigurationChanged">lamGroupList::listConfigurationChanged()</a><br> Called when the configuration options changed.</dd>
<dt><b>listConfigurationChanged</b></dt>
<dd>in file user.inc, method <a href="lists/lamUserList.html#methodlistConfigurationChanged">lamUserList::listConfigurationChanged()</a><br> Called when the configuration options changed.</dd>
<dt><b>listConfigurationChanged</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistConfigurationChanged">lamList::listConfigurationChanged()</a><br> Called when the configuration options changed.</dd>
<dt><b>listDoPost</b></dt>
<dd>in file dhcp.inc, method <a href="lists/lamDHCPList.html#methodlistDoPost">lamDHCPList::listDoPost()</a><br> Manages all POST actions (e.g. button pressed) for the account lists.</dd>
<dt><b>listDoPost</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistDoPost">lamList::listDoPost()</a><br> Manages all POST actions (e.g. button pressed) for the account lists.</dd>
<dt><b>listDrawNavigationBar</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistDrawNavigationBar">lamList::listDrawNavigationBar()</a><br> Draws a navigation bar to switch between pages</dd>
<dt><b>listGetAllConfigOptions</b></dt>
<dd>in file group.inc, method <a href="lists/lamGroupList.html#methodlistGetAllConfigOptions">lamGroupList::listGetAllConfigOptions()</a><br> Returns a list of possible configuration options.</dd>
<dt><b>listGetAllConfigOptions</b></dt>
<dd>in file user.inc, method <a href="lists/lamUserList.html#methodlistGetAllConfigOptions">lamUserList::listGetAllConfigOptions()</a><br> Returns a list of possible configuration options.</dd>
<dt><b>listGetAllConfigOptions</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistGetAllConfigOptions">lamList::listGetAllConfigOptions()</a><br> Returns a list of possible configuration options.</dd>
<dt><b>listGetConfigOptionByID</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistGetConfigOptionByID">lamList::listGetConfigOptionByID()</a><br> Returns the configuration option with the given ID.</dd>
<dt><b>listGetParams</b></dt>
<dd>in file asteriskExt.inc, method <a href="lists/lamAsteriskExtList.html#methodlistGetParams">lamAsteriskExtList::listGetParams()</a><br> Forces the list view to show only specific attributes.</dd>
<dt><b>listGetParams</b></dt>
<dd>in file user.inc, method <a href="lists/lamUserList.html#methodlistGetParams">lamUserList::listGetParams()</a><br> Sets some internal parameters.</dd>
<dt><b>listGetParams</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistGetParams">lamList::listGetParams()</a><br> Sets some internal parameters.</dd>
<dt><b>listGetParams</b></dt>
<dd>in file group.inc, method <a href="lists/lamGroupList.html#methodlistGetParams">lamGroupList::listGetParams()</a><br> Sets some internal parameters.</dd>
<dt><b>listOpenItems</b></dt>
<dd>in file AJAXTree.php, method <a href="phpLDAPadmin/Tree/AJAXTree.html#methodlistOpenItems">AJAXTree::listOpenItems()</a><br> List the items in the tree that are open</dd>
<dt><b>listPrintButtons</b></dt>
<dd>in file dhcp.inc, method <a href="lists/lamDHCPList.html#methodlistPrintButtons">lamDHCPList::listPrintButtons()</a><br> Prints the create, delete and PDF buttons.</dd>
<dt><b>listPrintButtons</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistPrintButtons">lamList::listPrintButtons()</a><br> Prints the create and delete buttons.</dd>
<dt><b>listPrintConfigurationPage</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistPrintConfigurationPage">lamList::listPrintConfigurationPage()</a><br> Prints the list configuration page.</dd>
<dt><b>listPrintFooter</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistPrintFooter">lamList::listPrintFooter()</a><br> Prints the HTML footer.</dd>
<dt><b>listPrintHeader</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistPrintHeader">lamList::listPrintHeader()</a><br> Prints the HTML header.</dd>
<dt><b>listPrintRedirectMessages</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistPrintRedirectMessages">lamList::listPrintRedirectMessages()</a><br> Prints messages when another page (e.g. delete/upload) redirects to the list view.</dd>
<dt><b>listPrintTableBody</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistPrintTableBody">lamList::listPrintTableBody()</a><br> Prints the entry list</dd>
<dt><b>listPrintTableCellContent</b></dt>
<dd>in file group.inc, method <a href="lists/lamGroupList.html#methodlistPrintTableCellContent">lamGroupList::listPrintTableCellContent()</a><br> Prints the content of a cell in the account list for a given LDAP entry and attribute.</dd>
<dt><b>listPrintTableCellContent</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistPrintTableCellContent">lamList::listPrintTableCellContent()</a><br> Prints the content of a cell in the account list for a given LDAP entry and attribute.</dd>
<dt><b>listPrintTableCellContent</b></dt>
<dd>in file dhcp.inc, method <a href="lists/lamDHCPList.html#methodlistPrintTableCellContent">lamDHCPList::listPrintTableCellContent()</a><br> Prints the content of a cell in the account list for a given LDAP entry and attribute.</dd>
<dt><b>listPrintTableCellContent</b></dt>
<dd>in file user.inc, method <a href="lists/lamUserList.html#methodlistPrintTableCellContent">lamUserList::listPrintTableCellContent()</a><br> Prints the content of a cell in the account list for a given LDAP entry and attribute.</dd>
<dt><b>listPrintTableHeader</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistPrintTableHeader">lamList::listPrintTableHeader()</a><br> Prints the attribute and filter row at the account table head</dd>
<dt><b>listRefreshData</b></dt>
<dd>in file group.inc, method <a href="lists/lamGroupList.html#methodlistRefreshData">lamGroupList::listRefreshData()</a><br> Rereads the entries from LDAP.</dd>
<dt><b>listRefreshData</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistRefreshData">lamList::listRefreshData()</a><br> Rereads the entries from LDAP.</dd>
<dt><b>listRefreshData</b></dt>
<dd>in file user.inc, method <a href="lists/lamUserList.html#methodlistRefreshData">lamUserList::listRefreshData()</a><br> Rereads the entries from LDAP.</dd>
<dt><b>listRefreshData</b></dt>
<dd>in file asteriskExt.inc, method <a href="lists/lamAsteriskExtList.html#methodlistRefreshData">lamAsteriskExtList::listRefreshData()</a><br> Groups the extensions.</dd>
<dt><b>listShowOUSelection</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistShowOUSelection">lamList::listShowOUSelection()</a><br> Prints a combobox with possible sub-DNs.</dd>
<dt><b>listSort</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodlistSort">lamList::listSort()</a><br> Sorts an account list by a given attribute</dd>
<dt><b>LIST_SIZE_OPTION_NAME</b></dt>
<dd>in file lists.inc, class constant <a href="lists/lamList.html#constLIST_SIZE_OPTION_NAME">lamList::LIST_SIZE_OPTION_NAME</a><br> ID for list size config option</dd>
<dt><b>littleEndian</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionlittleEndian">littleEndian()</a><br> Converts a little-endian hex-number to one, that 'hexdec' can convert</dd>
<dt><b>lmhash</b></dt>
<dd>in file createlm.php, method <a href="lam/smbHash.html#methodlmhash">smbHash::lmhash()</a><br> Calculates the LM hash of a given password.</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>lmPassword</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionlmPassword">lmPassword()</a><br> Generates the LM hash of a password.</dd>
<dt><b>Ln</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodLn">FPDF::Ln()</a></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>loadAccountProfile</b></dt>
<dd>in file profiles.inc, function <a href="profiles/_lib---profiles.inc.html#functionloadAccountProfile">loadAccountProfile()</a><br> Loads an profile of the given account type</dd>
<dt><b>loadKey</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodloadKey">Crypt_RSA::loadKey()</a><br> Loads a public or private key</dd>
<dt><b>loadPDFStructureDefinitions</b></dt>
<dd>in file pdfstruct.inc, function <a href="PDF/_lib---pdfstruct.inc.html#functionloadPDFStructureDefinitions">loadPDFStructureDefinitions()</a><br> This function is used to get pdf structure from xml file.</dd>
<dt><b>loadSelfServiceProfile</b></dt>
<dd>in file selfService.inc, function <a href="selfService/_lib---selfService.inc.html#functionloadSelfServiceProfile">loadSelfServiceProfile()</a><br> Loads all settings of a self service profile.</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 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 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 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 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_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 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_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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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_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 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 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_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 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 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 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 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 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 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 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 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 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>
<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 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 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>login</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodlogin">DS::login()</a><br> Login to the datastore method: default = anon, connect to ds using bind_id not auth_id.</dd>
<dt><b>login</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodlogin">Net_SSH2::login()</a><br> Login</dd>
<dt><b>login</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodlogin">Net_SSH1::login()</a><br> Login</dd>
<dt><b>login</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodlogin">myldap::login()</a><br> Login to the database with the application user/password</dd>
<dt><b>login</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodlogin">Net_SFTP::login()</a><br> Login</dd>
<dt><b>LOGIN_LIST</b></dt>
<dd>in file config.inc, class constant <a href="configuration/LAMConfig.html#constLOGIN_LIST">LAMConfig::LOGIN_LIST</a></dd>
<dt><b>LOGIN_SEARCH</b></dt>
<dd>in file config.inc, class constant <a href="configuration/LAMConfig.html#constLOGIN_SEARCH">LAMConfig::LOGIN_SEARCH</a></dd>
<dt><b>logNewMessage</b></dt>
<dd>in file security.inc, function <a href="lib/_lib---security.inc.html#functionlogNewMessage">logNewMessage()</a><br> Puts a new message in the log file.</dd>
<dt><b>logoffAndBackToLoginPage</b></dt>
<dd>in file security.inc, function <a href="lib/_lib---security.inc.html#functionlogoffAndBackToLoginPage">logoffAndBackToLoginPage()</a><br> Logs off the user and displays the login page.</dd>
<dt><b>logout</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodlogout">DS::logout()</a><br> Logout of this datastore's connection method</dd>
<dt><b>lstat</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodlstat">Net_SFTP::lstat()</a><br> Returns general information about a file or symbolic link.</dd>
<dt><b>list.php</b></dt>
<dd>procedural page <a href="lists/_templates---lists---list.php.html">list.php</a></dd>
<dt><b>login.php</b></dt>
<dd>procedural page <a href="main/_templates---login.php.html">login.php</a></dd>
<dt><b>logout.php</b></dt>
<dd>procedural page <a href="main/_templates---logout.php.html">logout.php</a></dd>
<dt><b>lamdaemonTest.php</b></dt>
<dd>procedural page <a href="tools/_templates---tests---lamdaemonTest.php.html">lamdaemonTest.php</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="m"></a>
<div>
<h2>m</h2>
<dl>
<dt><b>$mainPageText</b></dt>
<dd>in file selfService.inc, variable <a href="selfService/selfServiceProfile.html#var$mainPageText">selfServiceProfile::$mainPageText</a><br> describing text for self service main page</dd>
<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>$maxlength</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$maxlength">Attribute::$maxlength</a></dd>
<dt><b>$maxPageEntries</b></dt>
<dd>in file lists.inc, variable <a href="lists/lamList.html#var$maxPageEntries">lamList::$maxPageEntries</a><br> maximum count of entries per page</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>$max_length</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$max_length">AttributeType::$max_length</a><br> The max number of characters this attribute can be</dd>
<dt><b>$max_value_count</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$max_value_count">Attribute::$max_value_count</a></dd>
<dt><b>$may_attrs</b></dt>
<dd>in file schema.inc, variable <a href="lib/ObjectClass.html#var$may_attrs">ObjectClass::$may_attrs</a><br> arrays of attribute names that this objectClass allows, but does not require</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>$min_value_count</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$min_value_count">Attribute::$min_value_count</a></dd>
<dt><b>$modified</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$modified">Attribute::$modified</a></dd>
<dt><b>$moduleSettings</b></dt>
<dd>in file selfService.inc, variable <a href="selfService/selfServiceProfile.html#var$moduleSettings">selfServiceProfile::$moduleSettings</a><br> configuration settings of modules</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>$multiple</b></dt>
<dd>in file SelectionAttribute.php, variable <a href="phpLDAPadmin/Templates/SelectionAttribute.html#var$multiple">SelectionAttribute::$multiple</a></dd>
<dt><b>$must_attrs</b></dt>
<dd>in file schema.inc, variable <a href="lib/ObjectClass.html#var$must_attrs">ObjectClass::$must_attrs</a><br> arrays of attribute names that this objectClass requires</dd>
<dt><b>modules.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules.inc.html">modules.inc</a></dd>
<dt><b>mailAlias.inc</b></dt>
<dd>procedural page <a href="types/_lib---types---mailAlias.inc.html">mailAlias.inc</a></dd>
<dt><b>mailAlias</b></dt>
<dd>in file mailAlias.inc, class <a href="types/mailAlias.html">mailAlias</a><br> The account type for mail aliases.</dd>
<dt><b>managePasswordChange</b></dt>
<dd>in file ajax.php, method <a href="tools/lamAjax.html#methodmanagePasswordChange">lamAjax::managePasswordChange()</a><br> Manages a password change request on the edit account page.</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 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>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 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>masort</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionmasort">masort()</a><br> Sort a multi dimensional array.</dd>
<dt><b>massPrintBackButton</b></dt>
<dd>in file massBuildAccounts.php, function <a href="tools/_templates---massBuildAccounts.php.html#functionmassPrintBackButton">massPrintBackButton()</a><br> Prints a back button to the page where the user enters a file to upload.</dd>
<dt><b>MassRender</b></dt>
<dd>in file MassRender.php, class <a href="phpLDAPadmin/Templates/MassRender.html">MassRender</a><br> TemplateRender class</dd>
<dt><b>MatchingRule</b></dt>
<dd>in file schema.inc, class <a href="lib/MatchingRule.html">MatchingRule</a><br> Represents an LDAP MatchingRule</dd>
<dt><b>MatchingRule</b></dt>
<dd>in file schema.inc, method <a href="lib/MatchingRule.html#methodMatchingRule">MatchingRule::MatchingRule()</a><br> Creates a new MatchingRule object from a raw LDAP MatchingRule string.</dd>
<dt><b>MatchingRule</b></dt>
<dd>in file schema_functions.php, class <a href="phpLDAPadmin/Schema/MatchingRule.html">MatchingRule</a><br> Represents an LDAP MatchingRule</dd>
<dt><b>MatchingRules</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodMatchingRules">myldap::MatchingRules()</a><br> Returns an array of MatchingRule objects for the specified server.</dd>
<dt><b>MatchingRuleUse</b></dt>
<dd>in file schema_functions.php, class <a href="phpLDAPadmin/Schema/MatchingRuleUse.html">MatchingRuleUse</a><br> Represents an LDAP schema matchingRuleUse entry</dd>
<dt><b>MatchingRuleUse</b></dt>
<dd>in file schema.inc, class <a href="lib/MatchingRuleUse.html">MatchingRuleUse</a><br> Represents an LDAP schema matchingRuleUse entry</dd>
<dt><b>MatchingRuleUse</b></dt>
<dd>in file schema.inc, method <a href="lib/MatchingRuleUse.html#methodMatchingRuleUse">MatchingRuleUse::MatchingRuleUse()</a></dd>
<dt><b>Math_BigInteger</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodMath_BigInteger">Math_BigInteger::Math_BigInteger()</a><br> Converts base-2, base-10, base-16, and binary strings (eg. base-256) to BigIntegers.</dd>
<dt><b>Math_BigInteger</b></dt>
<dd>in file BigInteger.php, class <a href="Math_BigInteger/Math_BigInteger.html">Math_BigInteger</a><br> Pure-PHP arbitrary precision integer arithmetic library. Supports base-2, base-10, base-16, and base-256 numbers.</dd>
<dt><b>mergeTableElements</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTable.html#methodmergeTableElements">htmlTable::mergeTableElements()</a><br> Merges the content of another htmlTable object into this table.</dd>
<dt><b>metaRefresh</b></dt>
<dd>in file config.inc, function <a href="configuration/_lib---config.inc.html#functionmetaRefresh">metaRefresh()</a><br> Prints a meta refresh page</dd>
<dt><b>mhash</b></dt>
<dd>in file emuhash_functions.php, function <a href="default/_templates---3rdParty---pla---lib---emuhash_functions.php.html#functionmhash">mhash()</a></dd>
<dt><b>mhash_keygen_s2k</b></dt>
<dd>in file emuhash_functions.php, function <a href="default/_templates---3rdParty---pla---lib---emuhash_functions.php.html#functionmhash_keygen_s2k">mhash_keygen_s2k()</a></dd>
<dt><b>MHASH_MD5</b></dt>
<dd>in file emuhash_functions.php, constant <a href="default/_templates---3rdParty---pla---lib---emuhash_functions.php.html#defineMHASH_MD5">MHASH_MD5</a><br> ***************************************************************************</dd>
<dt><b>MHASH_RIPEMD160</b></dt>
<dd>in file emuhash_functions.php, constant <a href="default/_templates---3rdParty---pla---lib---emuhash_functions.php.html#defineMHASH_RIPEMD160">MHASH_RIPEMD160</a></dd>
<dt><b>MHASH_SHA1</b></dt>
<dd>in file emuhash_functions.php, constant <a href="default/_templates---3rdParty---pla---lib---emuhash_functions.php.html#defineMHASH_SHA1">MHASH_SHA1</a></dd>
<dt><b>mkdir</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodmkdir">Net_SFTP::mkdir()</a><br> Creates a directory.</dd>
<dt><b>modify</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#methodmodify">ldap_pla::modify()</a><br> Modify objects</dd>
<dt><b>modify</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodmodify">myldap::modify()</a><br> Modify attributes of a DN</dd>
<dt><b>modInverse</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodmodInverse">Math_BigInteger::modInverse()</a><br> Calculates modular inverses.</dd>
<dt><b>modPow</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodmodPow">Math_BigInteger::modPow()</a><br> Performs modular exponentiation.</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 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 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 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 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 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 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_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 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 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_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 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 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>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>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>MultiCell</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#methodMultiCell">UFPDF::MultiCell()</a></dd>
<dt><b>MultiCell</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodMultiCell">FPDF::MultiCell()</a></dd>
<dt><b>MultiLineAttribute</b></dt>
<dd>in file MultiLineAttribute.php, class <a href="phpLDAPadmin/Templates/MultiLineAttribute.html">MultiLineAttribute</a><br> Represents a attribute whose values are multiline text</dd>
<dt><b>multiply</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodmultiply">Math_BigInteger::multiply()</a><br> Multiplies two BigIntegers</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>
<dt><b>myldap</b></dt>
<dd>in file ds_myldap.php, class <a href="phpLDAPadmin/DataStore/myldap.html">myldap</a><br> This abstract class provides the basic variables and methods for LDAP datastores</dd>
<dt><b>mass_delete.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---mass_delete.php.html">mass_delete.php</a></dd>
<dt><b>mass_edit.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---mass_edit.php.html">mass_edit.php</a></dd>
<dt><b>mass_update.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---mass_update.php.html">mass_update.php</a></dd>
<dt><b>modify_member_form.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---modify_member_form.php.html">modify_member_form.php</a></dd>
<dt><b>MassRender.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---MassRender.php.html">MassRender.php</a></dd>
<dt><b>MultiLineAttribute.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---MultiLineAttribute.php.html">MultiLineAttribute.php</a></dd>
<dt><b>mainlogin.php</b></dt>
<dd>procedural page <a href="configuration/_templates---config---mainlogin.php.html">mainlogin.php</a></dd>
<dt><b>mainmanage.php</b></dt>
<dd>procedural page <a href="configuration/_templates---config---mainmanage.php.html">mainmanage.php</a></dd>
<dt><b>moduleSettings.php</b></dt>
<dd>procedural page <a href="configuration/_templates---config---moduleSettings.php.html">moduleSettings.php</a></dd>
<dt><b>main.php</b></dt>
<dd>procedural page <a href="main/_templates---main.php.html">main.php</a></dd>
<dt><b>main_footer.php</b></dt>
<dd>procedural page <a href="main/_templates---main_footer.php.html">main_footer.php</a></dd>
<dt><b>main_header.php</b></dt>
<dd>procedural page <a href="main/_templates---main_header.php.html">main_header.php</a></dd>
<dt><b>massBuildAccounts.php</b></dt>
<dd>procedural page <a href="tools/_templates---massBuildAccounts.php.html">massBuildAccounts.php</a></dd>
<dt><b>masscreate.php</b></dt>
<dd>procedural page <a href="tools/_templates---masscreate.php.html">masscreate.php</a></dd>
<dt><b>massDoUpload.php</b></dt>
<dd>procedural page <a href="tools/_templates---massDoUpload.php.html">massDoUpload.php</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="n"></a>
<div>
<h2>n</h2>
<dl>
<dt><b>$n</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$n">FPDF::$n</a></dd>
<dt><b>$name</b></dt>
<dd>in file schema_functions.php, variable <a href="phpLDAPadmin/Schema/SchemaItem.html#var$name">SchemaItem::$name</a></dd>
<dt><b>$name</b></dt>
<dd>in file html.inc, variable <a href="metaHTML/htmlInputCheckbox.html#var$name">htmlInputCheckbox::$name</a><br> unique name of input element</dd>
<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>$name</b></dt>
<dd>in file schema_functions.php, variable <a href="phpLDAPadmin/Schema/ObjectClass_ObjectClassAttribute.html#var$name">ObjectClass_ObjectClassAttribute::$name</a></dd>
<dt><b>$name</b></dt>
<dd>in file schema.inc, variable <a href="lib/ObjectClassAttribute.html#var$name">ObjectClassAttribute::$name</a><br> This Attribute's name</dd>
<dt><b>$name</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$name">AttributeType::$name</a><br> The name of this attributeType</dd>
<dt><b>$name</b></dt>
<dd>in file schema.inc, variable <a href="lib/MatchingRuleUse.html#var$name">MatchingRuleUse::$name</a><br> The name of the MathingRule this applies to</dd>
<dt><b>$name</b></dt>
<dd>in file schema.inc, variable <a href="lib/ObjectClass.html#var$name">ObjectClass::$name</a><br> This objectClass' name, ie "inetOrgPerson"</dd>
<dt><b>$name</b></dt>
<dd>in file schema.inc, variable <a href="lib/MatchingRule.html#var$name">MatchingRule::$name</a><br> This rule's name</dd>
<dt><b>$name</b></dt>
<dd>in file html.inc, variable <a href="metaHTML/htmlButton.html#var$name">htmlButton::$name</a><br> button name</dd>
<dt><b>$name</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$name">Attribute::$name</a></dd>
<dt><b>$name</b></dt>
<dd>in file tools.inc, variable <a href="tools/LAMSubTool.html#var$name">LAMSubTool::$name</a><br> visible tool name</dd>
<dt><b>$name</b></dt>
<dd>in file xmlTemplates.php, variable <a href="phpLDAPadmin/Templates/xmlTemplate.html#var$name">xmlTemplate::$name</a></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>netgroup.inc</b></dt>
<dd>procedural page <a href="types/_lib---types---netgroup.inc.html">netgroup.inc</a></dd>
<dt><b>needJS</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodneedJS">Attribute::needJS()</a><br> Does this attribute need supporting JS</dd>
<dt><b>netgroup</b></dt>
<dd>in file netgroup.inc, class <a href="types/netgroup.html">netgroup</a><br> The account type for NIS netgroups.</dd>
<dt><b>Net_SFTP</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodNet_SFTP">Net_SFTP::Net_SFTP()</a><br> Default Constructor.</dd>
<dt><b>Net_SFTP</b></dt>
<dd>in file SFTP.php, class <a href="Net_SFTP/Net_SFTP.html">Net_SFTP</a><br> Pure-PHP implementations of SFTP.</dd>
<dt><b>NET_SFTP_LOCAL_FILE</b></dt>
<dd>in file SFTP.php, constant <a href="Net_SFTP/_lib---3rdParty---phpseclib---Net---SFTP.php.html#defineNET_SFTP_LOCAL_FILE">NET_SFTP_LOCAL_FILE</a><br> Reads data from a local file.</dd>
<dt><b>NET_SFTP_LOG_COMPLEX</b></dt>
<dd>in file SFTP.php, constant <a href="Net_SFTP/_lib---3rdParty---phpseclib---Net---SFTP.php.html#defineNET_SFTP_LOG_COMPLEX">NET_SFTP_LOG_COMPLEX</a><br> Returns the message content</dd>
<dt><b>NET_SFTP_LOG_SIMPLE</b></dt>
<dd>in file SFTP.php, constant <a href="Net_SFTP/_lib---3rdParty---phpseclib---Net---SFTP.php.html#defineNET_SFTP_LOG_SIMPLE">NET_SFTP_LOG_SIMPLE</a><br> Returns the message numbers</dd>
<dt><b>NET_SFTP_STRING</b></dt>
<dd>in file SFTP.php, constant <a href="Net_SFTP/_lib---3rdParty---phpseclib---Net---SFTP.php.html#defineNET_SFTP_STRING">NET_SFTP_STRING</a><br> Reads data from a string.</dd>
<dt><b>Net_SSH1</b></dt>
<dd>in file SSH1.php, class <a href="Net_SSH1/Net_SSH1.html">Net_SSH1</a><br> Pure-PHP implementation of SSHv1.</dd>
<dt><b>Net_SSH1</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodNet_SSH1">Net_SSH1::Net_SSH1()</a><br> Default Constructor.</dd>
<dt><b>NET_SSH1_AUTH_PASSWORD</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_AUTH_PASSWORD">NET_SSH1_AUTH_PASSWORD</a><br> password authentication</dd>
<dt><b>NET_SSH1_AUTH_RHOSTS</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_AUTH_RHOSTS">NET_SSH1_AUTH_RHOSTS</a><br> .rhosts or /etc/hosts.equiv</dd>
<dt><b>NET_SSH1_AUTH_RHOSTS_RSA</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_AUTH_RHOSTS_RSA">NET_SSH1_AUTH_RHOSTS_RSA</a><br> .rhosts with RSA host authentication</dd>
<dt><b>NET_SSH1_AUTH_RSA</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_AUTH_RSA">NET_SSH1_AUTH_RSA</a><br> pure RSA authentication</dd>
<dt><b>NET_SSH1_CIPHER_3DES</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_CIPHER_3DES">NET_SSH1_CIPHER_3DES</a><br> Triple-DES in CBC mode</dd>
<dt><b>NET_SSH1_CIPHER_BLOWFISH</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_CIPHER_BLOWFISH">NET_SSH1_CIPHER_BLOWFISH</a><br> Blowfish</dd>
<dt><b>NET_SSH1_CIPHER_BROKEN_TSS</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_CIPHER_BROKEN_TSS">NET_SSH1_CIPHER_BROKEN_TSS</a><br> TRI's Simple Stream encryption CBC</dd>
<dt><b>NET_SSH1_CIPHER_DES</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_CIPHER_DES">NET_SSH1_CIPHER_DES</a><br> DES in CBC mode</dd>
<dt><b>NET_SSH1_CIPHER_IDEA</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_CIPHER_IDEA">NET_SSH1_CIPHER_IDEA</a><br> IDEA in CFB mode</dd>
<dt><b>NET_SSH1_CIPHER_NONE</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_CIPHER_NONE">NET_SSH1_CIPHER_NONE</a><br> No encryption</dd>
<dt><b>NET_SSH1_CIPHER_RC4</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_CIPHER_RC4">NET_SSH1_CIPHER_RC4</a><br> RC4</dd>
<dt><b>NET_SSH1_LOG_COMPLEX</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_LOG_COMPLEX">NET_SSH1_LOG_COMPLEX</a><br> Returns the message content</dd>
<dt><b>NET_SSH1_LOG_SIMPLE</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_LOG_SIMPLE">NET_SSH1_LOG_SIMPLE</a><br> Returns the message numbers</dd>
<dt><b>NET_SSH1_READ_REGEX</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_READ_REGEX">NET_SSH1_READ_REGEX</a><br> Returns when a string matching the regular expression $expect is found</dd>
<dt><b>NET_SSH1_READ_SIMPLE</b></dt>
<dd>in file SSH1.php, constant <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html#defineNET_SSH1_READ_SIMPLE">NET_SSH1_READ_SIMPLE</a><br> Returns when a string matching $expect exactly is found</dd>
<dt><b>Net_SSH2</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodNet_SSH2">Net_SSH2::Net_SSH2()</a><br> Default Constructor.</dd>
<dt><b>Net_SSH2</b></dt>
<dd>in file SSH2.php, class <a href="Net_SSH2/Net_SSH2.html">Net_SSH2</a><br> Pure-PHP implementation of SSHv2.</dd>
<dt><b>NET_SSH2_LOG_COMPLEX</b></dt>
<dd>in file SSH2.php, constant <a href="Net_SSH2/_lib---3rdParty---phpseclib---Net---SSH2.php.html#defineNET_SSH2_LOG_COMPLEX">NET_SSH2_LOG_COMPLEX</a><br> Returns the message content</dd>
<dt><b>NET_SSH2_LOG_SIMPLE</b></dt>
<dd>in file SSH2.php, constant <a href="Net_SSH2/_lib---3rdParty---phpseclib---Net---SSH2.php.html#defineNET_SSH2_LOG_SIMPLE">NET_SSH2_LOG_SIMPLE</a><br> Returns the message numbers</dd>
<dt><b>NET_SSH2_READ_REGEX</b></dt>
<dd>in file SSH2.php, constant <a href="Net_SSH2/_lib---3rdParty---phpseclib---Net---SSH2.php.html#defineNET_SSH2_READ_REGEX">NET_SSH2_READ_REGEX</a><br> Returns when a string matching the regular expression $expect is found</dd>
<dt><b>NET_SSH2_READ_SIMPLE</b></dt>
<dd>in file SSH2.php, constant <a href="Net_SSH2/_lib---3rdParty---phpseclib---Net---SSH2.php.html#defineNET_SSH2_READ_SIMPLE">NET_SSH2_READ_SIMPLE</a><br> Returns when a string matching $expect exactly is found</dd>
<dt><b>newAttribute</b></dt>
<dd>in file AttributeFactory.php, method <a href="phpLDAPadmin/Templates/AttributeFactory.html#methodnewAttribute">AttributeFactory::newAttribute()</a></dd>
<dt><b>newLine</b></dt>
<dd>in file html.inc, class constant <a href="metaHTML/htmlTable.html#constnewLine">htmlTable::newLine</a><br> new line</dd>
<dt><b>newServer</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/Datastore.html#methodnewServer">Datastore::newServer()</a><br> Create a new database object</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>new_rand</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#methodnew_rand">Ldap::new_rand()</a><br> Calculates a new value for rand</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>nlist</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodnlist">Net_SFTP::nlist()</a><br> Returns a list of files in the given directory</dd>
<dt><b>nthash</b></dt>
<dd>in file createlm.php, method <a href="lam/smbHash.html#methodnthash">smbHash::nthash()</a><br> Calculates the NT hash of a given password.</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>
<dt><b>ntPassword</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionntPassword">ntPassword()</a><br> Generates the NT hash of a password.</dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="o"></a>
<div>
<h2>o</h2>
<dl>
<dt><b>$objectclasses</b></dt>
<dd>in file TreeItem.php, variable <a href="phpLDAPadmin/Tree/TreeItem.html#var$objectclasses">TreeItem::$objectclasses</a></dd>
<dt><b>$offsets</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$offsets">FPDF::$offsets</a></dd>
<dt><b>$oid</b></dt>
<dd>in file schema.inc, variable <a href="lib/SchemaItem.html#var$oid">SchemaItem::$oid</a><br> The OID of this schema item.</dd>
<dt><b>$oldvalues</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$oldvalues">Attribute::$oldvalues</a></dd>
<dt><b>$onchange</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$onchange">Attribute::$onchange</a></dd>
<dt><b>$order</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$order">Attribute::$order</a></dd>
<dt><b>$ordering</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$ordering">AttributeType::$ordering</a><br> The ordering of the attributeType</dd>
<dt><b>$ordersort</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$ordersort">Attribute::$ordersort</a></dd>
<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>ouEditor.inc</b></dt>
<dd>procedural page <a href="tools/_lib---tools---ouEditor.inc.html">ouEditor.inc</a></dd>
<dt><b>obfuscateText</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionobfuscateText">obfuscateText()</a><br> Simple function to obfuscate strings.</dd>
<dt><b>obfuscate_password_display</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionobfuscate_password_display">obfuscate_password_display()</a><br> Fetches whether the user has configured phpLDAPadmin to obfuscate passwords with "*********" when displaying them.</dd>
<dt><b>ObjectClass</b></dt>
<dd>in file schema.inc, class <a href="lib/ObjectClass.html">ObjectClass</a><br> Represents an LDAP objectClass</dd>
<dt><b>ObjectClass</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClass.html#methodObjectClass">ObjectClass::ObjectClass()</a><br> Creates a new ObjectClass object given a raw LDAP objectClass string.</dd>
<dt><b>ObjectClass</b></dt>
<dd>in file schema_functions.php, class <a href="phpLDAPadmin/Schema/ObjectClass.html">ObjectClass</a><br> Represents an LDAP objectClass</dd>
<dt><b>ObjectClassAttribute</b></dt>
<dd>in file schema.inc, method <a href="lib/ObjectClassAttribute.html#methodObjectClassAttribute">ObjectClassAttribute::ObjectClassAttribute()</a><br> Creates a new ObjectClassAttribute with specified name and source objectClass.</dd>
<dt><b>ObjectClassAttribute</b></dt>
<dd>in file schema.inc, class <a href="lib/ObjectClassAttribute.html">ObjectClassAttribute</a><br> A simple class for representing AttributeTypes used only by the ObjectClass class.</dd>
<dt><b>ObjectClassAttribute</b></dt>
<dd>in file ObjectClassAttribute.php, class <a href="phpLDAPadmin/Templates/ObjectClassAttribute.html">ObjectClassAttribute</a><br> Represents an 'objectClass' attribute</dd>
<dt><b>ObjectClass_ObjectClassAttribute</b></dt>
<dd>in file schema_functions.php, class <a href="phpLDAPadmin/Schema/ObjectClass_ObjectClassAttribute.html">ObjectClass_ObjectClassAttribute</a><br> A simple class for representing AttributeTypes used only by the ObjectClass class.</dd>
<dt><b>OnChangeAdd</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodOnChangeAdd">Template::OnChangeAdd()</a><br> OnChangeAdd javascript processing</dd>
<dt><b>open</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodopen">TreeItem::open()</a><br> Opens the node ; the children of the node must have been defined</dd>
<dt><b>Open</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodOpen">FPDF::Open()</a></dd>
<dt><b>openssl_hash</b></dt>
<dd>in file emuhash_functions.php, function <a href="default/_templates---3rdParty---pla---lib---emuhash_functions.php.html#functionopenssl_hash">openssl_hash()</a><br> ***************************************************************************</dd>
<dt><b>Output</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodOutput">FPDF::Output()</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>
<dt><b>ObjectClassAttribute.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---ObjectClassAttribute.php.html">ObjectClassAttribute.php</a></dd>
<dt><b>ou_edit.php</b></dt>
<dd>procedural page <a href="tools/_templates---ou_edit.php.html">ou_edit.php</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="p"></a>
<div>
<h2>p</h2>
<dl>
<dt><b>$p</b></dt>
<dd>in file blowfish.php, variable <a href="horde-cipher/Horde_Cipher_blowfish.html#var$p">Horde_Cipher_blowfish::$p</a></dd>
<dt><b>$page</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$page">FPDF::$page</a></dd>
<dt><b>$page</b></dt>
<dd>in file lists.inc, variable <a href="lists/lamList.html#var$page">lamList::$page</a><br> current page number</dd>
<dt><b>$page</b></dt>
<dd>in file PageRender.php, variable <a href="phpLDAPadmin/Templates/PageRender.html#var$page">PageRender::$page</a></dd>
<dt><b>$page</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$page">Attribute::$page</a></dd>
<dt><b>$PageBreakTrigger</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$PageBreakTrigger">FPDF::$PageBreakTrigger</a></dd>
<dt><b>$pageHeader</b></dt>
<dd>in file selfService.inc, variable <a href="selfService/selfServiceProfile.html#var$pageHeader">selfServiceProfile::$pageHeader</a><br> header for self service pages</dd>
<dt><b>$PageLinks</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$PageLinks">FPDF::$PageLinks</a></dd>
<dt><b>$pages</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$pages">FPDF::$pages</a></dd>
<dt><b>$PageSizes</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$PageSizes">FPDF::$PageSizes</a></dd>
<dt><b>$passwordMinClasses</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$passwordMinClasses">LAMCfgMain::$passwordMinClasses</a><br> minimum character classes (upper, lower, numeric, symbols)</dd>
<dt><b>$passwordMinLength</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$passwordMinLength">LAMCfgMain::$passwordMinLength</a><br> minimum length for passwords</dd>
<dt><b>$passwordMinLower</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$passwordMinLower">LAMCfgMain::$passwordMinLower</a><br> minimum lowercase characters</dd>
<dt><b>$passwordMinNumeric</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$passwordMinNumeric">LAMCfgMain::$passwordMinNumeric</a><br> minimum numeric characters</dd>
<dt><b>$passwordMinSymbol</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$passwordMinSymbol">LAMCfgMain::$passwordMinSymbol</a><br> minimum symbol characters</dd>
<dt><b>$passwordMinUpper</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$passwordMinUpper">LAMCfgMain::$passwordMinUpper</a><br> minimum uppercase characters</dd>
<dt><b>$PDFVersion</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$PDFVersion">FPDF::$PDFVersion</a></dd>
<dt><b>$possibleSuffixes</b></dt>
<dd>in file lists.inc, variable <a href="lists/lamList.html#var$possibleSuffixes">lamList::$possibleSuffixes</a><br> list of possible LDAP suffixes(organizational units)</dd>
<dt><b>$postvalue</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$postvalue">Attribute::$postvalue</a></dd>
<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>$publicKeyFormat</b></dt>
<dd>in file RSA.php, variable <a href="Crypt_RSA/Crypt_RSA.html#var$publicKeyFormat">Crypt_RSA::$publicKeyFormat</a><br> Public Key Format</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>pdf.inc</b></dt>
<dd>procedural page <a href="PDF/_lib---pdf.inc.html">pdf.inc</a></dd>
<dt><b>pdfstruct.inc</b></dt>
<dd>procedural page <a href="PDF/_lib---pdfstruct.inc.html">pdfstruct.inc</a></dd>
<dt><b>profiles.inc</b></dt>
<dd>procedural page <a href="profiles/_lib---profiles.inc.html">profiles.inc</a></dd>
<dt><b>pdfEdit.inc</b></dt>
<dd>procedural page <a href="tools/_lib---tools---pdfEdit.inc.html">pdfEdit.inc</a></dd>
<dt><b>profileEditor.inc</b></dt>
<dd>procedural page <a href="tools/_lib---tools---profileEditor.inc.html">profileEditor.inc</a></dd>
<dt><b>page</b></dt>
<dd>in file page.php, class <a href="phpLDAPadmin/Page/page.html">page</a><br> This class controls the final output to the browser.</dd>
<dt><b>PageNo</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodPageNo">FPDF::PageNo()</a></dd>
<dt><b>PageRender</b></dt>
<dd>in file PageRender.php, class <a href="phpLDAPadmin/Templates/PageRender.html">PageRender</a><br> PageRender class</dd>
<dt><b>parse</b></dt>
<dd>in file xml_parser.inc, method <a href="PDF/xmlParser.html#methodparse">xmlParser::parse()</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>parseXML</b></dt>
<dd>in file xml2array.php, method <a href="phpLDAPadmin/XML/xml2array.html#methodparseXML">xml2array::parseXML()</a></dd>
<dt><b>PasswordAttribute</b></dt>
<dd>in file PasswordAttribute.php, class <a href="phpLDAPadmin/Templates/PasswordAttribute.html">PasswordAttribute</a><br> Represents an attribute whose values are passwords</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 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>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 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 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 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 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 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>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>password_check</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionpassword_check">password_check()</a><br> Given a clear-text password and a hash, this function determines if the clear-text password is the password that was used to generate the hash. This is handy to verify a user's password when all that is given is the hash and a "guess".</dd>
<dt><b>password_generate</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionpassword_generate">password_generate()</a><br> This function returns a string automatically generated</dd>
<dt><b>password_hash</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionpassword_hash">password_hash()</a><br> Hashes a password and returns the hash based on the specified enc_type.</dd>
<dt><b>password_types</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionpassword_types">password_types()</a><br> Return the list of available password types</dd>
<dt><b>php_compat_array_fill</b></dt>
<dd>in file array_fill.php, function <a href="PHP_Compat/_lib---3rdParty---phpseclib---PHP---Compat---Function---array_fill.php.html#functionphp_compat_array_fill">php_compat_array_fill()</a></dd>
<dt><b>php_compat_bcpowmod</b></dt>
<dd>in file bcpowmod.php, function <a href="PHP_Compat/_lib---3rdParty---phpseclib---PHP---Compat---Function---bcpowmod.php.html#functionphp_compat_bcpowmod">php_compat_bcpowmod()</a></dd>
<dt><b>php_compat_str_split</b></dt>
<dd>in file str_split.php, function <a href="PHP_Compat/_lib---3rdParty---phpseclib---PHP---Compat---Function---str_split.php.html#functionphp_compat_str_split">php_compat_str_split()</a></dd>
<dt><b>pla_compare_dns</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionpla_compare_dns">pla_compare_dns()</a><br> Compares 2 DNs. If they are equivelant, returns 0, otherwise, returns their sorting order (similar to strcmp()): Returns < 0 if dn1 is less than dn2.</dd>
<dt><b>pla_explode_dn</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionpla_explode_dn">pla_explode_dn()</a><br> Explode a DN into an array of its RDN parts.</dd>
<dt><b>pla_rdelete</b></dt>
<dd>in file rdelete.php, function <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---rdelete.php.html#functionpla_rdelete">pla_rdelete()</a></dd>
<dt><b>pla_reverse_dn</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionpla_reverse_dn">pla_reverse_dn()</a><br> Reverses a DN such that the top-level RDN is first and the bottom-level RDN is last</dd>
<dt><b>pla_verbose_error</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionpla_verbose_error">pla_verbose_error()</a><br> Given an LDAP error number, returns a verbose description of the error.</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 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 posixAccount.inc, method <a href="modules/posixAccount.html#methodpostModifyActions">posixAccount::postModifyActions()</a></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>powMod</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodpowMod">Math_BigInteger::powMod()</a><br> Performs modular exponentiation.</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>pretty_print_dn</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionpretty_print_dn">pretty_print_dn()</a><br> Returns an HTML-beautified version of a DN.</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>processAttributes</b></dt>
<dd>in file pdf.inc, function <a href="PDF/_lib---pdf.inc.html#functionprocessAttributes">processAttributes()</a><br> Processes width, height and alignment attributes.</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>processFormatTags</b></dt>
<dd>in file pdf.inc, function <a href="PDF/_lib---pdf.inc.html#functionprocessFormatTags">processFormatTags()</a><br> Formats the XML code.</dd>
<dt><b>processLine</b></dt>
<dd>in file pdf.inc, function <a href="PDF/_lib---pdf.inc.html#functionprocessLine">processLine()</a><br> Creates the XML code for an PDF entry.</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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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</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 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 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_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 posixGroup.inc, method <a href="modules/posixGroup.html#methodprocess_user">posixGroup::process_user()</a><br> Processes user input of the user 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>put</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodput">Net_SFTP::put()</a><br> Uploads a file to the SFTP server.</dd>
<dt><b>pwd</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodpwd">Net_SFTP::pwd()</a><br> Returns the current directory name</dd>
<dt><b>pwd_disable</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionpwd_disable">pwd_disable()</a><br> Marks an password hash as disabled and returns the new hash string</dd>
<dt><b>pwd_enable</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionpwd_enable">pwd_enable()</a><br> Marks an password hash as enabled and returns the new hash string</dd>
<dt><b>pwd_hash</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionpwd_hash">pwd_hash()</a><br> Returns the hash value of a plain text password the hash algorithm depends on the configuration file</dd>
<dt><b>pwd_is_enabled</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionpwd_is_enabled">pwd_is_enabled()</a><br> Checks if a password hash is enabled/disabled</dd>
<dt><b>password_checker.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---password_checker.php.html">password_checker.php</a></dd>
<dt><b>page.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---page.php.html">page.php</a></dd>
<dt><b>PageRender.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---PageRender.php.html">PageRender.php</a></dd>
<dt><b>PasswordAttribute.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---PasswordAttribute.php.html">PasswordAttribute.php</a></dd>
<dt><b>profmanage.php</b></dt>
<dd>procedural page <a href="configuration/_templates---config---profmanage.php.html">profmanage.php</a></dd>
<dt><b>pdfmain.php</b></dt>
<dd>procedural page <a href="PDF/_templates---pdfedit---pdfmain.php.html">pdfmain.php</a></dd>
<dt><b>pdfpage.php</b></dt>
<dd>procedural page <a href="PDF/_templates---pdfedit---pdfpage.php.html">pdfpage.php</a></dd>
<dt><b>profilemain.php</b></dt>
<dd>procedural page <a href="profiles/_templates---profedit---profilemain.php.html">profilemain.php</a></dd>
<dt><b>profilepage.php</b></dt>
<dd>procedural page <a href="profiles/_templates---profedit---profilepage.php.html">profilepage.php</a></dd>
</dl>
</div>
<a href="elementindex.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>Queries</b></dt>
<dd>in file query_functions.php, class <a href="phpLDAPadmin/Queries/Queries.html">Queries</a><br> Query Class</dd>
<dt><b>query</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodquery">DS::query()</a><br> Query the datasource</dd>
<dt><b>Query</b></dt>
<dd>in file Query.php, class <a href="phpLDAPadmin/Queries/Query.html">Query</a><br> Query Class</dd>
<dt><b>query</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodquery">myldap::query()</a><br> Perform a query to the Database</dd>
<dt><b>QUERYDIR</b></dt>
<dd>in file functions.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#defineQUERYDIR">QUERYDIR</a></dd>
<dt><b>QueryRender</b></dt>
<dd>in file QueryRender.php, class <a href="phpLDAPadmin/Templates/QueryRender.html">QueryRender</a><br> QueryRender class</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>
<dt><b>query_engine.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---query_engine.php.html">query_engine.php</a></dd>
<dt><b>Query.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---Query.php.html">Query.php</a></dd>
<dt><b>QueryRender.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---QueryRender.php.html">QueryRender.php</a></dd>
<dt><b>query_functions.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---query_functions.php.html">query_functions.php</a></dd>
</dl>
</div>
<a href="elementindex.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>$rdn</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$rdn">Attribute::$rdn</a></dd>
<dt><b>$readonly</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$readonly">Attribute::$readonly</a></dd>
<dt><b>$readtime</b></dt>
<dd>in file xmlTemplates.php, variable <a href="phpLDAPadmin/Templates/xmlTemplate.html#var$readtime">xmlTemplate::$readtime</a></dd>
<dt><b>$refresh</b></dt>
<dd>in file lists.inc, variable <a href="lists/lamList.html#var$refresh">lamList::$refresh</a><br> refresh page switch</dd>
<dt><b>$required</b></dt>
<dd>in file html.inc, variable <a href="metaHTML/htmlInputField.html#var$required">htmlInputField::$required</a><br> required field</dd>
<dt><b>$required_by_object_classes</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$required_by_object_classes">AttributeType::$required_by_object_classes</a><br> A list of object class names that require this attribute type.</dd>
<dt><b>$resParser</b></dt>
<dd>in file xml2array.php, variable <a href="phpLDAPadmin/XML/xml2array.html#var$resParser">xml2array::$resParser</a></dd>
<dt><b>$results</b></dt>
<dd>in file export_functions.php, variable <a href="phpLDAPadmin/Export/Export.html#var$results">Export::$results</a></dd>
<dt><b>$results</b></dt>
<dd>in file Query.php, variable <a href="phpLDAPadmin/Queries/Query.html#var$results">Query::$results</a></dd>
<dt><b>$resultsdata</b></dt>
<dd>in file export_functions.php, variable <a href="phpLDAPadmin/Export/Export.html#var$resultsdata">Export::$resultsdata</a></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>$rMargin</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$rMargin">FPDF::$rMargin</a></dd>
<dt><b>$rows</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$rows">Attribute::$rows</a></dd>
<dt><b>$rows</b></dt>
<dd>in file MultiLineAttribute.php, variable <a href="phpLDAPadmin/Templates/MultiLineAttribute.html#var$rows">MultiLineAttribute::$rows</a></dd>
<dt><b>$rowspan</b></dt>
<dd>in file html.inc, variable <a href="metaHTML/htmlElement.html#var$rowspan">htmlElement::$rowspan</a><br> rowspan if inside a table</dd>
<dt><b>Random.php</b></dt>
<dd>procedural page <a href="Crypt_Random/_lib---3rdParty---phpseclib---Crypt---Random.php.html">Random.php</a></dd>
<dt><b>RC4.php</b></dt>
<dd>procedural page <a href="Crypt_RC4/_lib---3rdParty---phpseclib---Crypt---RC4.php.html">RC4.php</a></dd>
<dt><b>Rijndael.php</b></dt>
<dd>procedural page <a href="Crypt_Rijndael/_lib---3rdParty---phpseclib---Crypt---Rijndael.php.html">Rijndael.php</a></dd>
<dt><b>RSA.php</b></dt>
<dd>procedural page <a href="Crypt_RSA/_lib---3rdParty---phpseclib---Crypt---RSA.php.html">RSA.php</a></dd>
<dt><b>range.inc</b></dt>
<dd>procedural page <a href="modules/_lib---modules---range.inc.html">range.inc</a></dd>
<dt><b>random</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodrandom">Math_BigInteger::random()</a><br> Generate a random number</dd>
<dt><b>RandomPasswordAttribute</b></dt>
<dd>in file RandomPasswordAttribute.php, class <a href="phpLDAPadmin/Templates/RandomPasswordAttribute.html">RandomPasswordAttribute</a><br> Represents an attribute whose values are random passwords</dd>
<dt><b>randomPrime</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodrandomPrime">Math_BigInteger::randomPrime()</a><br> Generate a random prime number.</dd>
<dt><b>random_junk</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionrandom_junk">random_junk()</a><br> This is for Opera. By putting "random junk" in the query string, it thinks</dd>
<dt><b>random_salt</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionrandom_salt">random_salt()</a><br> Used to generate a random salt for crypt-style passwords. Salt strings are used to make pre-built hash cracking dictionaries difficult to use as the hash algorithm uses not only the user's password but also a randomly generated string. The string is stored as the first N characters of the hash for reference of hashing algorithms later.</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>rawlist</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodrawlist">Net_SFTP::rawlist()</a><br> Returns a detailed list of files in the given directory</dd>
<dt><b>rdn_explode</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionrdn_explode">rdn_explode()</a><br> Split an RDN into its attributes</dd>
<dt><b>read</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodread">Net_SSH1::read()</a><br> Returns the output of an interactive shell when there's a match for $expect</dd>
<dt><b>read</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodread">Net_SSH2::read()</a><br> Returns the output of an interactive shell</dd>
<dt><b>readChildren</b></dt>
<dd>in file Tree.php, method <a href="phpLDAPadmin/Tree/Tree.html#methodreadChildren">Tree::readChildren()</a><br> Read the children of a tree entry</dd>
<dt><b>readChildrenNumber</b></dt>
<dd>in file Tree.php, method <a href="phpLDAPadmin/Tree/Tree.html#methodreadChildrenNumber">Tree::readChildrenNumber()</a><br> Return the number of children an entry has. Optionally autoread the child entry.</dd>
<dt><b>readEntry</b></dt>
<dd>in file import_functions.php, method <a href="phpLDAPadmin/Import/ImportLDIF.html#methodreadEntry">ImportLDIF::readEntry()</a></dd>
<dt><b>readingChildren</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodreadingChildren">TreeItem::readingChildren()</a></dd>
<dt><b>readTemplates</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodreadTemplates">Template::readTemplates()</a><br> Return the templates of type (creation/modification)</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>Rect</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodRect">FPDF::Rect()</a></dd>
<dt><b>refreshPrimaryGroupTranslation</b></dt>
<dd>in file user.inc, method <a href="lists/lamUserList.html#methodrefreshPrimaryGroupTranslation">lamUserList::refreshPrimaryGroupTranslation()</a><br> Refreshes the GID to group name cache.</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>removeAlias</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodremoveAlias">AttributeType::removeAlias()</a><br> Removes an attribute name from this attribute's alias array.</dd>
<dt><b>removeAlias</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodremoveAlias">AttributeType::removeAlias()</a><br> Removes an attribute name from this attribute's alias array.</dd>
<dt><b>remove_hook</b></dt>
<dd>in file hooks.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---hooks.php.html#functionremove_hook">remove_hook()</a><br> Removes a procedure from a hook, based on a filter.</dd>
<dt><b>rename</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodrename">Net_SFTP::rename()</a><br> Renames a file or a directory on the SFTP server</dd>
<dt><b>rename</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#methodrename">ldap_pla::rename()</a><br> Rename objects</dd>
<dt><b>rename</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodrename">TreeItem::rename()</a><br> Rename this DN.</dd>
<dt><b>renameEntry</b></dt>
<dd>in file Tree.php, method <a href="phpLDAPadmin/Tree/Tree.html#methodrenameEntry">Tree::renameEntry()</a><br> Rename an entry in the tree</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>REQUIRED_PHP_VERSION</b></dt>
<dd>in file config_default.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---config_default.php.html#defineREQUIRED_PHP_VERSION">REQUIRED_PHP_VERSION</a><br> The minimum version of PHP required to run phpLDAPadmin.</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>
<dt><b>return_ldap_hash</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionreturn_ldap_hash">return_ldap_hash()</a><br> Query LDAP and return a hash.</dd>
<dt><b>rmdir</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodrmdir">Net_SFTP::rmdir()</a><br> Removes a directory.</dd>
<dt><b>run_hook</b></dt>
<dd>in file hooks.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---hooks.php.html#functionrun_hook">run_hook()</a><br> Runs procedures attached to a hook.</dd>
<dt><b>r_copy_dn</b></dt>
<dd>in file copy.php, function <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---copy.php.html#functionr_copy_dn">r_copy_dn()</a></dd>
<dt><b>rdelete.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---rdelete.php.html">rdelete.php</a></dd>
<dt><b>refresh.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---refresh.php.html">refresh.php</a></dd>
<dt><b>rename.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---rename.php.html">rename.php</a></dd>
<dt><b>rename_form.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---rename_form.php.html">rename_form.php</a></dd>
<dt><b>RandomPasswordAttribute.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---RandomPasswordAttribute.php.html">RandomPasswordAttribute.php</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="s"></a>
<div>
<h2>s</h2>
<dl>
<dt><b>$s1</b></dt>
<dd>in file blowfish.php, variable <a href="horde-cipher/Horde_Cipher_blowfish.html#var$s1">Horde_Cipher_blowfish::$s1</a></dd>
<dt><b>$s2</b></dt>
<dd>in file blowfish.php, variable <a href="horde-cipher/Horde_Cipher_blowfish.html#var$s2">Horde_Cipher_blowfish::$s2</a></dd>
<dt><b>$s3</b></dt>
<dd>in file blowfish.php, variable <a href="horde-cipher/Horde_Cipher_blowfish.html#var$s3">Horde_Cipher_blowfish::$s3</a></dd>
<dt><b>$s4</b></dt>
<dd>in file blowfish.php, variable <a href="horde-cipher/Horde_Cipher_blowfish.html#var$s4">Horde_Cipher_blowfish::$s4</a></dd>
<dt><b>$searchAttribute</b></dt>
<dd>in file selfService.inc, variable <a href="selfService/selfServiceProfile.html#var$searchAttribute">selfServiceProfile::$searchAttribute</a><br> LDAP search attribute</dd>
<dt><b>$selection</b></dt>
<dd>in file SelectionAttribute.php, variable <a href="phpLDAPadmin/Templates/SelectionAttribute.html#var$selection">SelectionAttribute::$selection</a></dd>
<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>$servers</b></dt>
<dd>in file config_default.php, variable <a href="phpLDAPadmin/Tree/Config.html#var$servers">Config::$servers</a></dd>
<dt><b>$serverURL</b></dt>
<dd>in file selfService.inc, variable <a href="selfService/selfServiceProfile.html#var$serverURL">selfServiceProfile::$serverURL</a><br> server address</dd>
<dt><b>$server_id</b></dt>
<dd>in file xmlTemplates.php, variable <a href="phpLDAPadmin/Templates/xmlTemplate.html#var$server_id">xmlTemplate::$server_id</a></dd>
<dt><b>$server_id</b></dt>
<dd>in file import_functions.php, variable <a href="phpLDAPadmin/Import/Import.html#var$server_id">Import::$server_id</a></dd>
<dt><b>$server_id</b></dt>
<dd>in file xmlTemplates.php, variable <a href="phpLDAPadmin/Templates/xmlTemplates.html#var$server_id">xmlTemplates::$server_id</a></dd>
<dt><b>$server_id</b></dt>
<dd>in file Visitor.php, variable <a href="phpLDAPadmin/Templates/Visitor.html#var$server_id">Visitor::$server_id</a></dd>
<dt><b>$sessionTimeout</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$sessionTimeout">LAMCfgMain::$sessionTimeout</a><br> Time of inactivity before session times out (minutes)</dd>
<dt><b>$shadow_after_today_attrs</b></dt>
<dd>in file ShadowAttribute.php, variable <a href="phpLDAPadmin/Templates/ShadowAttribute.html#var$shadow_after_today_attrs">ShadowAttribute::$shadow_after_today_attrs</a></dd>
<dt><b>$shadow_before_today_attrs</b></dt>
<dd>in file ShadowAttribute.php, variable <a href="phpLDAPadmin/Templates/ShadowAttribute.html#var$shadow_before_today_attrs">ShadowAttribute::$shadow_before_today_attrs</a></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>$size</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$size">Attribute::$size</a></dd>
<dt><b>$sortColumn</b></dt>
<dd>in file lists.inc, variable <a href="lists/lamList.html#var$sortColumn">lamList::$sortColumn</a><br> sort column name</dd>
<dt><b>$sortDirection</b></dt>
<dd>in file lists.inc, variable <a href="lists/lamList.html#var$sortDirection">lamList::$sortDirection</a><br> sort direction: 1 for ascending, -1 for descending</dd>
<dt><b>$source</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$source">Attribute::$source</a></dd>
<dt><b>$source</b></dt>
<dd>in file schema_functions.php, variable <a href="phpLDAPadmin/Schema/ObjectClass_ObjectClassAttribute.html#var$source">ObjectClass_ObjectClassAttribute::$source</a></dd>
<dt><b>$source</b></dt>
<dd>in file import_functions.php, variable <a href="phpLDAPadmin/Import/Import.html#var$source">Import::$source</a></dd>
<dt><b>$source</b></dt>
<dd>in file schema.inc, variable <a href="lib/ObjectClassAttribute.html#var$source">ObjectClassAttribute::$source</a><br> This Attribute's root</dd>
<dt><b>$spacer</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$spacer">Attribute::$spacer</a></dd>
<dt><b>$stack</b></dt>
<dd>in file xml2array.php, variable <a href="phpLDAPadmin/XML/xml2array.html#var$stack">xml2array::$stack</a></dd>
<dt><b>$stack_ref</b></dt>
<dd>in file xml2array.php, variable <a href="phpLDAPadmin/XML/xml2array.html#var$stack_ref">xml2array::$stack_ref</a></dd>
<dt><b>$state</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$state">FPDF::$state</a></dd>
<dt><b>$StdPageSizes</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$StdPageSizes">FPDF::$StdPageSizes</a></dd>
<dt><b>$structural_oclass</b></dt>
<dd>in file Template.php, variable <a href="phpLDAPadmin/Templates/Template.html#var$structural_oclass">Template::$structural_oclass</a></dd>
<dt><b>$strXmlData</b></dt>
<dd>in file xml2array.php, variable <a href="phpLDAPadmin/XML/xml2array.html#var$strXmlData">xml2array::$strXmlData</a></dd>
<dt><b>$subject</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$subject">FPDF::$subject</a></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>$sub_str</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$sub_str">AttributeType::$sub_str</a><br> Boolean: supports substring matching?</dd>
<dt><b>$suffix</b></dt>
<dd>in file lists.inc, variable <a href="lists/lamList.html#var$suffix">lamList::$suffix</a><br> LDAP suffix</dd>
<dt><b>$sup_attribute</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$sup_attribute">AttributeType::$sup_attribute</a><br> The attribute from which this attribute inherits (if any)</dd>
<dt><b>$sup_classes</b></dt>
<dd>in file schema.inc, variable <a href="lib/ObjectClass.html#var$sup_classes">ObjectClass::$sup_classes</a><br> array of objectClass names from which this objectClass inherits</dd>
<dt><b>$syntax</b></dt>
<dd>in file schema.inc, variable <a href="lib/MatchingRule.html#var$syntax">MatchingRule::$syntax</a><br> This rule's syntax OID</dd>
<dt><b>$syntax</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$syntax">AttributeType::$syntax</a><br> The full syntax string, ie 1.2.3.4{16}</dd>
<dt><b>SFTP.php</b></dt>
<dd>procedural page <a href="Net_SFTP/_lib---3rdParty---phpseclib---Net---SFTP.php.html">SFTP.php</a></dd>
<dt><b>SSH1.php</b></dt>
<dd>procedural page <a href="Net_SSH1/_lib---3rdParty---phpseclib---Net---SSH1.php.html">SSH1.php</a></dd>
<dt><b>SSH2.php</b></dt>
<dd>procedural page <a href="Net_SSH2/_lib---3rdParty---phpseclib---Net---SSH2.php.html">SSH2.php</a></dd>
<dt><b>str_split.php</b></dt>
<dd>procedural page <a href="PHP_Compat/_lib---3rdParty---phpseclib---PHP---Compat---Function---str_split.php.html">str_split.php</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>schema.inc</b></dt>
<dd>procedural page <a href="lib/_lib---schema.inc.html">schema.inc</a></dd>
<dt><b>security.inc</b></dt>
<dd>procedural page <a href="lib/_lib---security.inc.html">security.inc</a></dd>
<dt><b>selfService.inc</b></dt>
<dd>procedural page <a href="selfService/_lib---selfService.inc.html">selfService.inc</a></dd>
<dt><b>status.inc</b></dt>
<dd>procedural page <a href="lib/_lib---status.inc.html">status.inc</a></dd>
<dt><b>schemaBrowser.inc</b></dt>
<dd>procedural page <a href="tools/_lib---tools---schemaBrowser.inc.html">schemaBrowser.inc</a></dd>
<dt><b>serverInfo.inc</b></dt>
<dd>procedural page <a href="tools/_lib---tools---serverInfo.inc.html">serverInfo.inc</a></dd>
<dt><b>smbDomain.inc</b></dt>
<dd>procedural page <a href="types/_lib---types---smbDomain.inc.html">smbDomain.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>SambaPasswordAttribute</b></dt>
<dd>in file SambaPasswordAttribute.php, class <a href="phpLDAPadmin/Templates/SambaPasswordAttribute.html">SambaPasswordAttribute</a><br> Represents an attribute whose values are SAMBA passwords</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</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMCfgMain.html#methodsave">LAMCfgMain::save()</a><br> Saves preferences to config file config.cfg</dd>
<dt><b>save</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsave">LAMConfig::save()</a><br> Saves preferences to config file</dd>
<dt><b>saveAccountProfile</b></dt>
<dd>in file profiles.inc, function <a href="profiles/_lib---profiles.inc.html#functionsaveAccountProfile">saveAccountProfile()</a><br> Saves an hash array (attribute => value) to an account profile</dd>
<dt><b>savePDFStructureDefinitions</b></dt>
<dd>in file pdfstruct.inc, function <a href="PDF/_lib---pdfstruct.inc.html#functionsavePDFStructureDefinitions">savePDFStructureDefinitions()</a><br> Saves PDF structure definitions to XML file in format: <name>.<scope>.xml</dd>
<dt><b>saveSelfServiceProfile</b></dt>
<dd>in file selfService.inc, function <a href="selfService/_lib---selfService.inc.html#functionsaveSelfServiceProfile">saveSelfServiceProfile()</a><br> Saves a self service profile.</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 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 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_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 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 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 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 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 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 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 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 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 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 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 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 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 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 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_FAIL</b></dt>
<dd>in file config.inc, class constant <a href="configuration/LAMConfig.html#constSAVE_FAIL">LAMConfig::SAVE_FAIL</a></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>SAVE_OK</b></dt>
<dd>in file config.inc, class constant <a href="configuration/LAMConfig.html#constSAVE_OK">LAMConfig::SAVE_OK</a></dd>
<dt><b>SchemaAttributes</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodSchemaAttributes">myldap::SchemaAttributes()</a><br> Gets an associative array of AttributeType objects for the specified server. Each array entry's key is the name of the attributeType in lower-case and the value is an AttributeType object.</dd>
<dt><b>SchemaItem</b></dt>
<dd>in file schema.inc, method <a href="lib/SchemaItem.html#methodSchemaItem">SchemaItem::SchemaItem()</a><br> Default constructor.</dd>
<dt><b>SchemaItem</b></dt>
<dd>in file schema.inc, class <a href="lib/SchemaItem.html">SchemaItem</a><br> Generic parent class for all schema items. A schema item is an ObjectClass, an AttributeBype, a MatchingRule, or a Syntax.</dd>
<dt><b>SchemaItem</b></dt>
<dd>in file schema_functions.php, class <a href="phpLDAPadmin/Schema/SchemaItem.html">SchemaItem</a><br> Generic parent class for all schema items. A schema item is an ObjectClass, an AttributeBype, a MatchingRule, or a Syntax.</dd>
<dt><b>SchemaObjectClasses</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodSchemaObjectClasses">myldap::SchemaObjectClasses()</a><br> Gets an associative array of ObjectClass objects for the specified server. Each array entry's key is the name of the objectClass in lower-case and the value is an ObjectClass object.</dd>
<dt><b>SchemaSyntaxes</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methodSchemaSyntaxes">myldap::SchemaSyntaxes()</a><br> Returns an array of Syntax objects that this LDAP server uses mapped to their descriptions. The key of each entry is the OID of the Syntax.</dd>
<dt><b>SCHEMA_SESSION_CACHE_ENABLED</b></dt>
<dd>in file schema.inc, constant <a href="lib/_lib---schema.inc.html#defineSCHEMA_SESSION_CACHE_ENABLED">SCHEMA_SESSION_CACHE_ENABLED</a><br> To enable/disable session-based schema caching (1: enabled, 0: disabled).</dd>
<dt><b>searchLDAP</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionsearchLDAP">searchLDAP()</a><br> Runs an LDAP search.</dd>
<dt><b>searchLDAPByAttribute</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionsearchLDAPByAttribute">searchLDAPByAttribute()</a><br> This will search the given LDAP suffix for all entries which have the given attribute.</dd>
<dt><b>searchLDAPByFilter</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionsearchLDAPByFilter">searchLDAPByFilter()</a><br> This will search the given LDAP suffix for all entries which match the given filter.</dd>
<dt><b>search_domains</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionsearch_domains">search_domains()</a><br> Returns an array with all Samba 3 domain entries under the given suffix</dd>
<dt><b>search_username</b></dt>
<dd>in file userlink.php, function <a href="lists/_templates---lists---userlink.php.html#functionsearch_username">search_username()</a><br> Searches LDAP for a specific user name (uid attribute) and returns its DN entry</dd>
<dt><b>SelectionAttribute</b></dt>
<dd>in file SelectionAttribute.php, class <a href="phpLDAPadmin/Templates/SelectionAttribute.html">SelectionAttribute</a><br> Represents an attribute whose values are in a predefined list</dd>
<dt><b>selfServiceProfile</b></dt>
<dd>in file selfService.inc, class <a href="selfService/selfServiceProfile.html">selfServiceProfile</a><br> Includes all settings of a self service profile.</dd>
<dt><b>server</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#methodserver">Ldap::server()</a><br> Returns the LDAP connection handle</dd>
<dt><b>server_select_list</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionserver_select_list">server_select_list()</a><br> Server html select list</dd>
<dt><b>setAccessLevel</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsetAccessLevel">LAMConfig::setAccessLevel()</a><br> Sets the access level for this profile.</dd>
<dt><b>setAliases</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodsetAliases">AttributeType::setAliases()</a><br> Sets this attribute's list of aliases.</dd>
<dt><b>setAliases</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodsetAliases">AttributeType::setAliases()</a><br> Sets this attribute's list of aliases.</dd>
<dt><b>SetAuthor</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetAuthor">FPDF::SetAuthor()</a></dd>
<dt><b>SetAutoPageBreak</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetAutoPageBreak">FPDF::SetAutoPageBreak()</a></dd>
<dt><b>setBase</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodsetBase">TreeItem::setBase()</a><br> Set this item as a LDAP base DN item.</dd>
<dt><b>setBlockLength</b></dt>
<dd>in file Rijndael.php, method <a href="Crypt_Rijndael/Crypt_Rijndael.html#methodsetBlockLength">Crypt_Rijndael::setBlockLength()</a><br> Sets the block length</dd>
<dt><b>setBlockLength</b></dt>
<dd>in file AES.php, method <a href="Crypt_AES/Crypt_AES.html#methodsetBlockLength">Crypt_AES::setBlockLength()</a><br> Dummy function</dd>
<dt><b>setBody</b></dt>
<dd>in file page.php, method <a href="phpLDAPadmin/Page/block.html#methodsetBody">block::setBody()</a></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>setCols</b></dt>
<dd>in file MultiLineAttribute.php, method <a href="phpLDAPadmin/Templates/MultiLineAttribute.html#methodsetCols">MultiLineAttribute::setCols()</a></dd>
<dt><b>SetCompression</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetCompression">FPDF::SetCompression()</a></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>setContainer</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodsetContainer">Template::setContainer()</a><br> Set the container for this template, if we are creating entries</dd>
<dt><b>setContainer</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodsetContainer">PageRender::setContainer()</a></dd>
<dt><b>setContainsOptgroups</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSelect.html#methodsetContainsOptgroups">htmlSelect::setContainsOptgroups()</a><br> Specifies if the elements are divided into optgroups.</dd>
<dt><b>SetCreator</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetCreator">FPDF::SetCreator()</a></dd>
<dt><b>setCSSClasses</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTable.html#methodsetCSSClasses">htmlTable::setCSSClasses()</a><br> Sets the CSS classes for the table.</dd>
<dt><b>setCSSClasses</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTableRow.html#methodsetCSSClasses">htmlTableRow::setCSSClasses()</a><br> Sets the CSS classes for the table.</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>setDefaults</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodsetDefaults">DS::setDefaults()</a><br> Functions that set and verify object configuration details</dd>
<dt><b>setDescription</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/SchemaItem.html#methodsetDescription">SchemaItem::setDescription()</a></dd>
<dt><b>setDescription</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetDescription">Attribute::setDescription()</a></dd>
<dt><b>setDescription</b></dt>
<dd>in file schema.inc, method <a href="lib/SchemaItem.html#methodsetDescription">SchemaItem::setDescription()</a></dd>
<dt><b>SetDisplayMode</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetDisplayMode">FPDF::SetDisplayMode()</a></dd>
<dt><b>setDN</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodsetDN">PageRender::setDN()</a></dd>
<dt><b>setDN</b></dt>
<dd>in file Query.php, method <a href="phpLDAPadmin/Queries/Query.html#methodsetDN">Query::setDN()</a><br> This is temporary to get around objects that use a DN for rendering, for example jpegPhoto</dd>
<dt><b>setDN</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodsetDN">Template::setDN()</a><br> Set the DN for this template, if we are editing entries</dd>
<dt><b>SetDrawColor</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetDrawColor">FPDF::SetDrawColor()</a></dd>
<dt><b>setEncryptionMode</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodsetEncryptionMode">Crypt_RSA::setEncryptionMode()</a><br> Set Encryption Mode</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>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>setFieldMaxLength</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputField.html#methodsetFieldMaxLength">htmlInputField::setFieldMaxLength()</a><br> Sets the maximum field length.</dd>
<dt><b>setFieldSize</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputField.html#methodsetFieldSize">htmlInputField::setFieldSize()</a><br> Sets the field size.</dd>
<dt><b>SetFillColor</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetFillColor">FPDF::SetFillColor()</a></dd>
<dt><b>SetFont</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetFont">FPDF::SetFont()</a></dd>
<dt><b>SetFontSize</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetFontSize">FPDF::SetFontSize()</a></dd>
<dt><b>setFooter</b></dt>
<dd>in file page.php, method <a href="phpLDAPadmin/Page/block.html#methodsetFooter">block::setFooter()</a></dd>
<dt><b>setForceDelete</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetForceDelete">Attribute::setForceDelete()</a></dd>
<dt><b>setForceMay</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodsetForceMay">AttributeType::setForceMay()</a><br> This function will mark this attribute as a forced MAY attribute</dd>
<dt><b>setHasDescriptiveElements</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSelect.html#methodsetHasDescriptiveElements">htmlSelect::setHasDescriptiveElements()</a><br> Specifies if the elements are just a simple list or an assoziative array (default: simple list).</dd>
<dt><b>setHash</b></dt>
<dd>in file Hash.php, method <a href="Crypt_Hash/Crypt_Hash.html#methodsetHash">Crypt_Hash::setHash()</a><br> Sets the hash function.</dd>
<dt><b>setHash</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodsetHash">Crypt_RSA::setHash()</a><br> Determines which hashing function should be used</dd>
<dt><b>setHelpID</b></dt>
<dd>in file lists.inc, method <a href="lists/lamSelectListOption.html#methodsetHelpID">lamSelectListOption::setHelpID()</a><br> Sets the help ID.</dd>
<dt><b>setHint</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetHint">Attribute::setHint()</a></dd>
<dt><b>setHttpAuthentication</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsetHttpAuthentication">LAMConfig::setHttpAuthentication()</a><br> Specifies if HTTP authentication should be used.</dd>
<dt><b>setIcon</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetIcon">Attribute::setIcon()</a></dd>
<dt><b>setIconClass</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlButton.html#methodsetIconClass">htmlButton::setIconClass()</a><br> Sets an additional icon for a text button.</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>setInternal</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetInternal">Attribute::setInternal()</a></dd>
<dt><b>setInvalid</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodsetInvalid">Template::setInvalid()</a><br> Set a template as invalid</dd>
<dt><b>setInvisible</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodsetInvisible">Template::setInvisible()</a></dd>
<dt><b>setIsBold</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlOutputText.html#methodsetIsBold">htmlOutputText::setIsBold()</a><br> Specifies if the whole text should be printed in bold.</dd>
<dt><b>setIsEnabled</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputFileUpload.html#methodsetIsEnabled">htmlInputFileUpload::setIsEnabled()</a><br> Specifies if this component is enabled and accepts user modification.</dd>
<dt><b>setIsEnabled</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSelect.html#methodsetIsEnabled">htmlSelect::setIsEnabled()</a><br> Specifies if this component is enabled and accepts user modification.</dd>
<dt><b>setIsEnabled</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputCheckbox.html#methodsetIsEnabled">htmlInputCheckbox::setIsEnabled()</a><br> Specifies if this component is enabled and accepts user modification.</dd>
<dt><b>setIsEnabled</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlButton.html#methodsetIsEnabled">htmlButton::setIsEnabled()</a><br> Specifies if this component is enabled and accepts user modification.</dd>
<dt><b>setIsEnabled</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputTextarea.html#methodsetIsEnabled">htmlInputTextarea::setIsEnabled()</a><br> Specifies if this component is enabled and accepts user modification.</dd>
<dt><b>setIsEnabled</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputField.html#methodsetIsEnabled">htmlInputField::setIsEnabled()</a><br> Specifies if this component is enabled and accepts user modification.</dd>
<dt><b>setIsEnabled</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlRadio.html#methodsetIsEnabled">htmlRadio::setIsEnabled()</a><br> Specifies if this component is enabled and accepts user modification.</dd>
<dt><b>setIsPassword</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputField.html#methodsetIsPassword">htmlInputField::setIsPassword()</a><br> Specifies if this is a password field.</dd>
<dt><b>setIsRichEdit</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputTextarea.html#methodsetIsRichEdit">htmlInputTextarea::setIsRichEdit()</a><br> Specifies if the textarea should be displayed whith a WYSIWYG editor.</dd>
<dt><b>setIsSingleValue</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodsetIsSingleValue">AttributeType::setIsSingleValue()</a><br> Sets whether this attribute is single-valued.</dd>
<dt><b>setIsSingleValue</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodsetIsSingleValue">AttributeType::setIsSingleValue()</a><br> Sets whether this attribute is single-valued.</dd>
<dt><b>setIV</b></dt>
<dd>in file Rijndael.php, method <a href="Crypt_Rijndael/Crypt_Rijndael.html#methodsetIV">Crypt_Rijndael::setIV()</a><br> Sets the initialization vector. (optional)</dd>
<dt><b>setIV</b></dt>
<dd>in file TripleDES.php, method <a href="Crypt_TerraDES/Crypt_TripleDES.html#methodsetIV">Crypt_TripleDES::setIV()</a><br> Sets the initialization vector. (optional)</dd>
<dt><b>setIV</b></dt>
<dd>in file RC4.php, method <a href="Crypt_RC4/Crypt_RC4.html#methodsetIV">Crypt_RC4::setIV()</a><br> Dummy function.</dd>
<dt><b>setIV</b></dt>
<dd>in file DES.php, method <a href="Crypt_DES/Crypt_DES.html#methodsetIV">Crypt_DES::setIV()</a><br> Sets the initialization vector. (optional)</dd>
<dt><b>setKey</b></dt>
<dd>in file Rijndael.php, method <a href="Crypt_Rijndael/Crypt_Rijndael.html#methodsetKey">Crypt_Rijndael::setKey()</a><br> Sets the key.</dd>
<dt><b>setKey</b></dt>
<dd>in file TripleDES.php, method <a href="Crypt_TerraDES/Crypt_TripleDES.html#methodsetKey">Crypt_TripleDES::setKey()</a><br> Sets the key.</dd>
<dt><b>setKey</b></dt>
<dd>in file RC4.php, method <a href="Crypt_RC4/Crypt_RC4.html#methodsetKey">Crypt_RC4::setKey()</a><br> Sets the key.</dd>
<dt><b>setKey</b></dt>
<dd>in file DES.php, method <a href="Crypt_DES/Crypt_DES.html#methodsetKey">Crypt_DES::setKey()</a><br> Sets the key.</dd>
<dt><b>setKey</b></dt>
<dd>in file Hash.php, method <a href="Crypt_Hash/Crypt_Hash.html#methodsetKey">Crypt_Hash::setKey()</a><br> Sets the key for HMACs</dd>
<dt><b>setKey</b></dt>
<dd>in file blowfish.php, method <a href="horde-cipher/Horde_Cipher_blowfish.html#methodsetKey">Horde_Cipher_blowfish::setKey()</a><br> Set the key to be used for en/decryption</dd>
<dt><b>setKeyLength</b></dt>
<dd>in file Rijndael.php, method <a href="Crypt_Rijndael/Crypt_Rijndael.html#methodsetKeyLength">Crypt_Rijndael::setKeyLength()</a><br> Sets the key length</dd>
<dt><b>SetKeywords</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetKeywords">FPDF::SetKeywords()</a></dd>
<dt><b>setLamProMailFrom</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsetLamProMailFrom">LAMConfig::setLamProMailFrom()</a><br> Sets the sender address for password reset mails.</dd>
<dt><b>setLamProMailIsHTML</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsetLamProMailIsHTML">LAMConfig::setLamProMailIsHTML()</a><br> Sets if the password reset mail content should be treated as HTML.</dd>
<dt><b>setLamProMailReplyTo</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsetLamProMailReplyTo">LAMConfig::setLamProMailReplyTo()</a><br> Sets the reply-to address for password reset mails.</dd>
<dt><b>setLamProMailSubject</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsetLamProMailSubject">LAMConfig::setLamProMailSubject()</a><br> Sets the subject for password reset mails.</dd>
<dt><b>setLamProMailText</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsetLamProMailText">LAMConfig::setLamProMailText()</a><br> Sets the mail body for password reset mails.</dd>
<dt><b>setlanguage</b></dt>
<dd>in file config.inc, function <a href="configuration/_lib---config.inc.html#functionsetlanguage">setlanguage()</a><br> Sets language settings for automatic translation</dd>
<dt><b>setLDAPtype</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetLDAPtype">Attribute::setLDAPtype()</a></dd>
<dt><b>setLeaf</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodsetLeaf">TreeItem::setLeaf()</a><br> Mark this node as a leaf.</dd>
<dt><b>SetLeftMargin</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetLeftMargin">FPDF::SetLeftMargin()</a></dd>
<dt><b>SetLineWidth</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetLineWidth">FPDF::SetLineWidth()</a></dd>
<dt><b>SetLink</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetLink">FPDF::SetLink()</a></dd>
<dt><b>setLogin</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodsetLogin">DS::setLogin()</a><br> Set the login details of the user logged into this datastore's connection method</dd>
<dt><b>setLoginMethod</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsetLoginMethod">LAMConfig::setLoginMethod()</a><br> Sets the login method.</dd>
<dt><b>setLoginSearchDN</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsetLoginSearchDN">LAMConfig::setLoginSearchDN()</a><br> Sets the DN for the login search bind user.</dd>
<dt><b>setLoginSearchFilter</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsetLoginSearchFilter">LAMConfig::setLoginSearchFilter()</a><br> Sets the login search filter.</dd>
<dt><b>setLoginSearchPassword</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsetLoginSearchPassword">LAMConfig::setLoginSearchPassword()</a><br> Sets the password for the login search bind user.</dd>
<dt><b>setLoginSearchSuffix</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsetLoginSearchSuffix">LAMConfig::setLoginSearchSuffix()</a><br> Sets the login search suffix.</dd>
<dt><b>SetMargins</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetMargins">FPDF::SetMargins()</a></dd>
<dt><b>setMarkAsRequired</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlOutputText.html#methodsetMarkAsRequired">htmlOutputText::setMarkAsRequired()</a><br> Adds a marker that indicates a required field.</dd>
<dt><b>setMaxLength</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetMaxLength">Attribute::setMaxLength()</a></dd>
<dt><b>setMaxValueCount</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetMaxValueCount">Attribute::setMaxValueCount()</a></dd>
<dt><b>setMCrypt</b></dt>
<dd>in file RC4.php, method <a href="Crypt_RC4/Crypt_RC4.html#methodsetMCrypt">Crypt_RC4::setMCrypt()</a><br> Sets MCrypt parameters. (optional)</dd>
<dt><b>setMGFHash</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodsetMGFHash">Crypt_RSA::setMGFHash()</a><br> Determines which hashing function should be used for the mask generation function</dd>
<dt><b>setMinValueCount</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetMinValueCount">Attribute::setMinValueCount()</a></dd>
<dt><b>setMultiple</b></dt>
<dd>in file SelectionAttribute.php, method <a href="phpLDAPadmin/Templates/SelectionAttribute.html#methodsetMultiple">SelectionAttribute::setMultiple()</a></dd>
<dt><b>setMultiSelect</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSelect.html#methodsetMultiSelect">htmlSelect::setMultiSelect()</a><br> Specifies if multi-selection is enabled (default: disabled).</dd>
<dt><b>setName</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodsetName">AttributeType::setName()</a><br> Sets this attriute's name.</dd>
<dt><b>setName</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodsetName">AttributeType::setName()</a><br> Sets this attriute's name.</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>setNoWrap</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlOutputText.html#methodsetNoWrap">htmlOutputText::setNoWrap()</a><br> Specifies if word wrap is allowed for this text.</dd>
<dt><b>setObfuscate</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputField.html#methodsetObfuscate">htmlInputField::setObfuscate()</a><br> Specifies if the value should be saved in obfuscated form (e.g. self service profile).</dd>
<dt><b>setObjectClasses</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodsetObjectClasses">TreeItem::setObjectClasses()</a></dd>
<dt><b>setOID</b></dt>
<dd>in file schema.inc, method <a href="lib/SchemaItem.html#methodsetOID">SchemaItem::setOID()</a></dd>
<dt><b>setOID</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/SchemaItem.html#methodsetOID">SchemaItem::setOID()</a></dd>
<dt><b>setOldValue</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetOldValue">Attribute::setOldValue()</a></dd>
<dt><b>setOnchangeEvent</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSelect.html#methodsetOnchangeEvent">htmlSelect::setOnchangeEvent()</a><br> Sets the JavaScript code for the onchange event.</dd>
<dt><b>setOnClick</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlLink.html#methodsetOnClick">htmlLink::setOnClick()</a><br> Sets the onClick event.</dd>
<dt><b>setOnClick</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlButton.html#methodsetOnClick">htmlButton::setOnClick()</a><br> Sets the onclick event code.</dd>
<dt><b>setOptional</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetOptional">Attribute::setOptional()</a></dd>
<dt><b>setPage</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetPage">Attribute::setPage()</a></dd>
<dt><b>setPassword</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodsetPassword">Crypt_RSA::setPassword()</a><br> Sets the password</dd>
<dt><b>setPassword</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMCfgMain.html#methodsetPassword">LAMCfgMain::setPassword()</a><br> Sets a new config password.</dd>
<dt><b>setPostValue</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetPostValue">Attribute::setPostValue()</a></dd>
<dt><b>setPrecision</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodsetPrecision">Math_BigInteger::setPrecision()</a><br> Set Precision</dd>
<dt><b>setPrivateKeyFormat</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodsetPrivateKeyFormat">Crypt_RSA::setPrivateKeyFormat()</a><br> Determines the private key format</dd>
<dt><b>setProperties</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetProperties">Attribute::setProperties()</a></dd>
<dt><b>setPublicKey</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodsetPublicKey">Crypt_RSA::setPublicKey()</a><br> Defines the public key</dd>
<dt><b>setPublicKeyFormat</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodsetPublicKeyFormat">Crypt_RSA::setPublicKeyFormat()</a><br> Determines the public key format</dd>
<dt><b>setRandomGenerator</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodsetRandomGenerator">Math_BigInteger::setRandomGenerator()</a><br> Set random number generator function</dd>
<dt><b>setRDN</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetRDN">Attribute::setRDN()</a></dd>
<dt><b>setRDNAttributes</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodsetRDNAttributes">Template::setRDNAttributes()</a><br> Set the RDN attributes Given an RDN, mark the attributes as RDN attributes. If there is no defined attribute, then the remaining RDNs will be returned.</dd>
<dt><b>setReadOnly</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetReadOnly">Attribute::setReadOnly()</a></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>setRequired</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTableExtendedInputTextarea.html#methodsetRequired">htmlTableExtendedInputTextarea::setRequired()</a><br> Specifies if this input field must be filled.</dd>
<dt><b>setRequired</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputField.html#methodsetRequired">htmlInputField::setRequired()</a><br> Specifies if the input field is required.</dd>
<dt><b>setRequired</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetRequired">Attribute::setRequired()</a></dd>
<dt><b>SetRightMargin</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetRightMargin">FPDF::SetRightMargin()</a></dd>
<dt><b>setRightToLeftTextDirection</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSelect.html#methodsetRightToLeftTextDirection">htmlSelect::setRightToLeftTextDirection()</a><br> Specifies if the text direction should be set to right to left.</dd>
<dt><b>setRows</b></dt>
<dd>in file MultiLineAttribute.php, method <a href="phpLDAPadmin/Templates/MultiLineAttribute.html#methodsetRows">MultiLineAttribute::setRows()</a></dd>
<dt><b>setSaltLength</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodsetSaltLength">Crypt_RSA::setSaltLength()</a><br> Determines the salt length</dd>
<dt><b>setServers</b></dt>
<dd>in file config_default.php, method <a href="phpLDAPadmin/Tree/Config.html#methodsetServers">Config::setServers()</a></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>setSignatureMode</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodsetSignatureMode">Crypt_RSA::setSignatureMode()</a><br> Set Signature Mode</dd>
<dt><b>setSize</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetSize">Attribute::setSize()</a></dd>
<dt><b>setSizeLimited</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodsetSizeLimited">TreeItem::setSizeLimited()</a><br> Mark this node as a size limited (it wont have all its children).</dd>
<dt><b>setSortElements</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSelect.html#methodsetSortElements">htmlSelect::setSortElements()</a><br> Specifies if the elemets should be sorted (default: sort).</dd>
<dt><b>SetSubject</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetSubject">FPDF::SetSubject()</a></dd>
<dt><b>setSupAttribute</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodsetSupAttribute">AttributeType::setSupAttribute()</a><br> Sets this attriute's SUP attribute (ie, the attribute from which this attribute inherits).</dd>
<dt><b>setSupAttribute</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodsetSupAttribute">AttributeType::setSupAttribute()</a><br> Sets this attriute's SUP attribute (ie, the attribute from which this attribute inherits).</dd>
<dt><b>setsysmsg</b></dt>
<dd>in file page.php, method <a href="phpLDAPadmin/Page/page.html#methodsetsysmsg">page::setsysmsg()</a></dd>
<dt><b>setTableRowsToHide</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputCheckbox.html#methodsetTableRowsToHide">htmlInputCheckbox::setTableRowsToHide()</a><br> This will hide the given table rows when the checkbox is checked.</dd>
<dt><b>setTableRowsToShow</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputCheckbox.html#methodsetTableRowsToShow">htmlInputCheckbox::setTableRowsToShow()</a><br> This will show the given table rows when the checkbox is checked.</dd>
<dt><b>setTargetWindow</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlLink.html#methodsetTargetWindow">htmlLink::setTargetWindow()</a><br> Sets the target window (e.g. _blank).</dd>
<dt><b>setTemplate</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodsetTemplate">TreeItem::setTemplate()</a></dd>
<dt><b>SetTextColor</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetTextColor">FPDF::SetTextColor()</a></dd>
<dt><b>setTitle</b></dt>
<dd>in file page.php, method <a href="phpLDAPadmin/Page/block.html#methodsetTitle">block::setTitle()</a></dd>
<dt><b>SetTitle</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetTitle">FPDF::SetTitle()</a></dd>
<dt><b>setTitle</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlButton.html#methodsetTitle">htmlButton::setTitle()</a><br> Sets the button title (tooltip).</dd>
<dt><b>setTitle</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlLink.html#methodsetTitle">htmlLink::setTitle()</a><br> Sets the link title.</dd>
<dt><b>SetTopMargin</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetTopMargin">FPDF::SetTopMargin()</a></dd>
<dt><b>setTransformSingleSelect</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSelect.html#methodsetTransformSingleSelect">htmlSelect::setTransformSingleSelect()</a><br> Specifies if select boxes that contain only a single element should be transformed to a simple text field.</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>setType</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetType">Attribute::setType()</a></dd>
<dt><b>setType</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#methodsetType">AttributeType::setType()</a><br> Sets this attribute's type.</dd>
<dt><b>setType</b></dt>
<dd>in file schema.inc, method <a href="lib/AttributeType.html#methodsetType">AttributeType::setType()</a><br> Sets this attribute's type.</dd>
<dt><b>setUsedByAttrs</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/MatchingRule.html#methodsetUsedByAttrs">MatchingRule::setUsedByAttrs()</a><br> Sets the list of used_by_attrs to the array specified by $attrs;</dd>
<dt><b>setUsedByAttrs</b></dt>
<dd>in file schema.inc, method <a href="lib/MatchingRule.html#methodsetUsedByAttrs">MatchingRule::setUsedByAttrs()</a><br> Sets the list of used_by_attrs to the array specified by $attrs;</dd>
<dt><b>setUseTLS</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsetUseTLS">LAMConfig::setUseTLS()</a><br> Sets if TLS is activated.</dd>
<dt><b>setValidationRule</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputField.html#methodsetValidationRule">htmlInputField::setValidationRule()</a><br> Specifies the validation rule (e.g. htmlElement::VALIDATE_NUMERIC) for this field.</dd>
<dt><b>setValue</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/Datastore.html#methodsetValue">Datastore::setValue()</a><br> Set values for a database object.</dd>
<dt><b>setValue</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetValue">Attribute::setValue()</a></dd>
<dt><b>setValue</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methodsetValue">DS::setValue()</a><br> Set a configuration value</dd>
<dt><b>setValue</b></dt>
<dd>in file lists.inc, method <a href="lists/lamListOption.html#methodsetValue">lamListOption::setValue()</a><br> Sets the config option value. The value must not contain "=" and ";".</dd>
<dt><b>setVisible</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodsetVisible">Template::setVisible()</a></dd>
<dt><b>setWidth</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSelect.html#methodsetWidth">htmlSelect::setWidth()</a><br> Specifies the width of this selection box.</dd>
<dt><b>SetX</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetX">FPDF::SetX()</a></dd>
<dt><b>setXML</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodsetXML">Attribute::setXML()</a></dd>
<dt><b>SetXY</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetXY">FPDF::SetXY()</a></dd>
<dt><b>SetY</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodSetY">FPDF::SetY()</a></dd>
<dt><b>set_AccountModules</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_AccountModules">LAMConfig::set_AccountModules()</a><br> Sets the selected account modules</dd>
<dt><b>set_ActiveTypes</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_ActiveTypes">LAMConfig::set_ActiveTypes()</a><br> Sets the list of active types.</dd>
<dt><b>set_Adminstring</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_Adminstring">LAMConfig::set_Adminstring()</a><br> Sets the admin string</dd>
<dt><b>set_cached_item</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionset_cached_item">set_cached_item()</a><br> Caches the specified $item for the specified $index.</dd>
<dt><b>set_cached_schema</b></dt>
<dd>in file schema.inc, function <a href="lib/_lib---schema.inc.html#functionset_cached_schema">set_cached_schema()</a><br> Caches the specified $schema_type.</dd>
<dt><b>set_cacheTimeout</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_cacheTimeout">LAMConfig::set_cacheTimeout()</a><br> Sets the LDAP cache timeout in minutes (0,1,2,5,10,15)</dd>
<dt><b>set_cookie</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionset_cookie">set_cookie()</a><br> Utility wrapper for setting cookies, which takes into consideration application configuration values. On success, true is returned. On failure, false is returned.</dd>
<dt><b>set_defaultLanguage</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_defaultLanguage">LAMConfig::set_defaultLanguage()</a><br> Sets the default language string</dd>
<dt><b>set_listAttributes</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_listAttributes">LAMConfig::set_listAttributes()</a><br> Sets the list of attributes to show in user list</dd>
<dt><b>set_moduleSettings</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_moduleSettings">LAMConfig::set_moduleSettings()</a><br> Sets the settings for the account modules.</dd>
<dt><b>set_Passwd</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_Passwd">LAMConfig::set_Passwd()</a><br> Sets the preferences wizard password</dd>
<dt><b>set_schema_cache_unavailable</b></dt>
<dd>in file schema.inc, function <a href="lib/_lib---schema.inc.html#functionset_schema_cache_unavailable">set_schema_cache_unavailable()</a><br> Sets the schema entry for the server_id to be "unavailable" so that we realize that we tried to get the schema but could not, so quit trying next time to fetch it from the server.</dd>
<dt><b>set_scriptPath</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_scriptPath">LAMConfig::set_scriptPath()</a><br> Sets the path to the external script</dd>
<dt><b>set_scriptRights</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_scriptRights">LAMConfig::set_scriptRights()</a><br> Sets the rights for the home directory.</dd>
<dt><b>set_scriptServers</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_scriptServers">LAMConfig::set_scriptServers()</a><br> Sets the servers of the external script</dd>
<dt><b>set_searchLimit</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_searchLimit">LAMConfig::set_searchLimit()</a><br> Sets the LDAP search limit.</dd>
<dt><b>set_ServerURL</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_ServerURL">LAMConfig::set_ServerURL()</a><br> Sets the server address</dd>
<dt><b>set_Suffix</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_Suffix">LAMConfig::set_Suffix()</a><br> Sets the LDAP suffix where accounts are saved</dd>
<dt><b>set_typeSettings</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_typeSettings">LAMConfig::set_typeSettings()</a><br> Sets the settings for the account types.</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>ShadowAttribute</b></dt>
<dd>in file ShadowAttribute.php, class <a href="phpLDAPadmin/Templates/ShadowAttribute.html">ShadowAttribute</a><br> Represents a shadow date attribute</dd>
<dt><b>show</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#methodshow">Attribute::show()</a></dd>
<dt><b>show</b></dt>
<dd>in file page.php, method <a href="phpLDAPadmin/Page/page.html#methodshow">page::show()</a><br> Only show a particular page frame - used by an AJAX call</dd>
<dt><b>showMainPage</b></dt>
<dd>in file masscreate.php, function <a href="tools/_templates---masscreate.php.html#functionshowMainPage">showMainPage()</a><br> Displays the acount type specific main page of the upload.</dd>
<dt><b>showPage</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#methodshowPage">lamList::showPage()</a><br> Prints the HTML code to display the list view.</dd>
<dt><b>sign</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodsign">Crypt_RSA::sign()</a><br> Create a signature</dd>
<dt><b>size</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodsize">Net_SFTP::size()</a><br> Returns the file size, in bytes, or false, on failure</dd>
<dt><b>smbDomain</b></dt>
<dd>in file smbDomain.inc, class <a href="types/smbDomain.html">smbDomain</a><br> The account type for Samba domains.</dd>
<dt><b>smbflag</b></dt>
<dd>in file account.inc, function <a href="lib/_lib---account.inc.html#functionsmbflag">smbflag()</a><br> Takes a list of Samba flags and creates the corresponding flag string.</dd>
<dt><b>smbHash</b></dt>
<dd>in file createlm.php, class <a href="lam/smbHash.html">smbHash</a><br> Calculates NT and LM hashes.</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>sortAttrs</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionsortAttrs">sortAttrs()</a><br> Attribute sorting</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>sort_array_by_priority</b></dt>
<dd>in file hooks.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---hooks.php.html#functionsort_array_by_priority">sort_array_by_priority()</a><br> Compares two arrays by numerically comparing their 'prority' value. Standard `cmp-like' function.</dd>
<dt><b>startSecureSession</b></dt>
<dd>in file security.inc, function <a href="lib/_lib---security.inc.html#functionstartSecureSession">startSecureSession()</a><br> Starts a session and checks the environment.</dd>
<dt><b>stat</b></dt>
<dd>in file SFTP.php, method <a href="Net_SFTP/Net_SFTP.html#methodstat">Net_SFTP::stat()</a><br> Returns general information about a file.</dd>
<dt><b>StatusMessage</b></dt>
<dd>in file status.inc, function <a href="lib/_lib---status.inc.html#functionStatusMessage">StatusMessage()</a><br> This function prints a short status message. It can be used to print INFO, WARN and ERROR messages at the moment.</dd>
<dt><b>stopwatch</b></dt>
<dd>in file common.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---common.php.html#functionstopwatch">stopwatch()</a><br> Timer stopwatch, used to instrument the application</dd>
<dt><b>storeTemplate</b></dt>
<dd>in file Query.php, method <a href="phpLDAPadmin/Queries/Query.html#methodstoreTemplate">Query::storeTemplate()</a><br> Main processing to store the template.</dd>
<dt><b>storeTemplate</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#methodstoreTemplate">Template::storeTemplate()</a><br> Main processing to store the template.</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>strlen</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#methodstrlen">UFPDF::strlen()</a></dd>
<dt><b>str_split</b></dt>
<dd>in file str_split.php, function <a href="PHP_Compat/_lib---3rdParty---phpseclib---PHP---Compat---Function---str_split.php.html#functionstr_split">str_split()</a></dd>
<dt><b>subtract</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodsubtract">Math_BigInteger::subtract()</a><br> Subtracts two BigIntegers.</dd>
<dt><b>supportsFileUpload</b></dt>
<dd>in file baseType.inc, method <a href="types/baseType.html#methodsupportsFileUpload">baseType::supportsFileUpload()</a><br> Returns if entries of this type may be created via file upload.</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 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 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 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 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 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>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>support_oid_to_text</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionsupport_oid_to_text">support_oid_to_text()</a><br> Given an LDAP OID number, returns a verbose description of the OID.</dd>
<dt><b>Syntax</b></dt>
<dd>in file schema.inc, method <a href="lib/Syntax.html#methodSyntax">Syntax::Syntax()</a><br> Creates a new Syntax object from a raw LDAP syntax string.</dd>
<dt><b>Syntax</b></dt>
<dd>in file schema.inc, class <a href="lib/Syntax.html">Syntax</a><br> Represents an LDAP Syntax</dd>
<dt><b>Syntax</b></dt>
<dd>in file schema_functions.php, class <a href="phpLDAPadmin/Schema/Syntax.html">Syntax</a><br> Represents an LDAP Syntax</dd>
<dt><b>syslog_debug</b></dt>
<dd>in file syslog.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---syslog.php.html#functionsyslog_debug">syslog_debug()</a><br> Issue a debug message via syslog, only if $log_level is set to 'debug' from the config file.</dd>
<dt><b>syslog_err</b></dt>
<dd>in file syslog.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---syslog.php.html#functionsyslog_err">syslog_err()</a><br> Issue an error message via syslog.</dd>
<dt><b>syslog_msg</b></dt>
<dd>in file syslog.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---syslog.php.html#functionsyslog_msg">syslog_msg()</a><br> Verify that syslog logging is activated in the config via the debug->syslog variable and does a call to the syslog() function is it is true.</dd>
<dt><b>syslog_notice</b></dt>
<dd>in file syslog.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---syslog.php.html#functionsyslog_notice">syslog_notice()</a><br> Issue a notice message via syslog.</dd>
<dt><b>syslog_warning</b></dt>
<dd>in file syslog.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---syslog.php.html#functionsyslog_warning">syslog_warning()</a><br> Issue a warning message via syslog.</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>
<dt><b>system_message</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionsystem_message">system_message()</a><br> Record a system message.</dd>
<dt><b>SambaPasswordAttribute.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---SambaPasswordAttribute.php.html">SambaPasswordAttribute.php</a></dd>
<dt><b>schema_functions.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---schema_functions.php.html">schema_functions.php</a></dd>
<dt><b>SelectionAttribute.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---SelectionAttribute.php.html">SelectionAttribute.php</a></dd>
<dt><b>session_functions.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Session/_templates---3rdParty---pla---lib---session_functions.php.html">session_functions.php</a></dd>
<dt><b>ShadowAttribute.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---ShadowAttribute.php.html">ShadowAttribute.php</a></dd>
<dt><b>syslog.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---syslog.php.html">syslog.php</a></dd>
<dt><b>schema.php</b></dt>
<dd>procedural page <a href="tools/_templates---schema---schema.php.html">schema.php</a></dd>
<dt><b>serverInfo.php</b></dt>
<dd>procedural page <a href="tools/_templates---serverInfo.php.html">serverInfo.php</a></dd>
<dt><b>schemaTest.php</b></dt>
<dd>procedural page <a href="tools/_templates---tests---schemaTest.php.html">schemaTest.php</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="t"></a>
<div>
<h2>t</h2>
<dl>
<dt><b>$tableRowsToHide</b></dt>
<dd>in file html.inc, variable <a href="metaHTML/htmlInputCheckbox.html#var$tableRowsToHide">htmlInputCheckbox::$tableRowsToHide</a><br> list of enclosing table rows to hide when checked</dd>
<dt><b>$tableRowsToShow</b></dt>
<dd>in file html.inc, variable <a href="metaHTML/htmlInputCheckbox.html#var$tableRowsToShow">htmlInputCheckbox::$tableRowsToShow</a><br> list of enclosing table rows to show when checked</dd>
<dt><b>$template</b></dt>
<dd>in file PageRender.php, variable <a href="phpLDAPadmin/Templates/PageRender.html#var$template">PageRender::$template</a></dd>
<dt><b>$templates</b></dt>
<dd>in file xmlTemplates.php, variable <a href="phpLDAPadmin/Templates/xmlTemplates.html#var$templates">xmlTemplates::$templates</a></dd>
<dt><b>$template_id</b></dt>
<dd>in file PageRender.php, variable <a href="phpLDAPadmin/Templates/PageRender.html#var$template_id">PageRender::$template_id</a></dd>
<dt><b>$TextColor</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$TextColor">FPDF::$TextColor</a></dd>
<dt><b>$title</b></dt>
<dd>in file Template.php, variable <a href="phpLDAPadmin/Templates/Template.html#var$title">Template::$title</a></dd>
<dt><b>$title</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$title">FPDF::$title</a></dd>
<dt><b>$tMargin</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$tMargin">FPDF::$tMargin</a></dd>
<dt><b>$type</b></dt>
<dd>in file xmlTemplates.php, variable <a href="phpLDAPadmin/Templates/xmlTemplate.html#var$type">xmlTemplate::$type</a></dd>
<dt><b>$type</b></dt>
<dd>in file lists.inc, variable <a href="lists/lamList.html#var$type">lamList::$type</a><br> Account type</dd>
<dt><b>$type</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$type">Attribute::$type</a></dd>
<dt><b>$type</b></dt>
<dd>in file schema.inc, variable <a href="lib/ObjectClass.html#var$type">ObjectClass::$type</a><br> one of STRUCTURAL, ABSTRACT, or AUXILIARY</dd>
<dt><b>$type</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$type">AttributeType::$type</a><br> A string description of the syntax type (taken from the LDAPSyntaxes)</dd>
<dt><b>$type</b></dt>
<dd>in file ds.php, variable <a href="phpLDAPadmin/DataStore/DS.html#var$type">DS::$type</a></dd>
<dt><b>TripleDES.php</b></dt>
<dd>procedural page <a href="Crypt_TripleDES/_lib---3rdParty---phpseclib---Crypt---TripleDES.php.html">TripleDES.php</a></dd>
<dt><b>tests.inc</b></dt>
<dd>procedural page <a href="tools/_lib---tools---tests.inc.html">tests.inc</a></dd>
<dt><b>tools.inc</b></dt>
<dd>procedural page <a href="tools/_lib---tools.inc.html">tools.inc</a></dd>
<dt><b>types.inc</b></dt>
<dd>procedural page <a href="types/_lib---types.inc.html">types.inc</a></dd>
<dt><b>Template</b></dt>
<dd>in file Template.php, class <a href="phpLDAPadmin/Templates/Template.html">Template</a><br> Template Class</dd>
<dt><b>TemplateRender</b></dt>
<dd>in file TemplateRender.php, class <a href="phpLDAPadmin/Templates/TemplateRender.html">TemplateRender</a><br> TemplateRender class</dd>
<dt><b>Templates</b></dt>
<dd>in file template_functions.php, class <a href="phpLDAPadmin/Templates/Templates.html">Templates</a><br> Templates Class</dd>
<dt><b>template_engine.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---template_engine.php.html">template_engine.php</a></dd>
<dt><b>Template.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---Template.php.html">Template.php</a></dd>
<dt><b>TemplateRender.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---TemplateRender.php.html">TemplateRender.php</a></dd>
<dt><b>template_functions.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---template_functions.php.html">template_functions.php</a></dd>
<dt><b>Tree.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---Tree.php.html">Tree.php</a></dd>
<dt><b>TreeItem.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---TreeItem.php.html">TreeItem.php</a></dd>
<dt><b>tools.php</b></dt>
<dd>procedural page <a href="tools/_templates---tools.php.html">tools.php</a></dd>
<dt><b>treeViewContainer.php</b></dt>
<dd>procedural page <a href="lists/tree/_templates---tree---treeViewContainer.php.html">treeViewContainer.php</a></dd>
<dt><b>Text</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#methodText">UFPDF::Text()</a></dd>
<dt><b>Text</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodText">FPDF::Text()</a></dd>
<dt><b>TMPLDIR</b></dt>
<dd>in file functions.php, constant <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#defineTMPLDIR">TMPLDIR</a></dd>
<dt><b>to8bit</b></dt>
<dd>in file sambaMungedDial.inc, method <a href="modules/sambaMungedDial.html#methodto8bit">sambaMungedDial::to8bit()</a><br> to8bit</dd>
<dt><b>toBits</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodtoBits">Math_BigInteger::toBits()</a><br> Converts a BigInteger to a bit string (eg. base-2).</dd>
<dt><b>toBytes</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodtoBytes">Math_BigInteger::toBytes()</a><br> Converts a BigInteger to a byte string (eg. base-256).</dd>
<dt><b>toHex</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodtoHex">Math_BigInteger::toHex()</a><br> Converts a BigInteger to a hex string (eg. base-16)).</dd>
<dt><b>toolFileUpload</b></dt>
<dd>in file fileUpload.inc, class <a href="tools/toolFileUpload.html">toolFileUpload</a><br> File upload</dd>
<dt><b>toolOUEditor</b></dt>
<dd>in file ouEditor.inc, class <a href="tools/toolOUEditor.html">toolOUEditor</a><br> OU editor</dd>
<dt><b>toolPDFEditor</b></dt>
<dd>in file pdfEdit.inc, class <a href="tools/toolPDFEditor.html">toolPDFEditor</a><br> PDF editor</dd>
<dt><b>toolProfileEditor</b></dt>
<dd>in file profileEditor.inc, class <a href="tools/toolProfileEditor.html">toolProfileEditor</a><br> Profile editor</dd>
<dt><b>toolSchemaBrowser</b></dt>
<dd>in file schemaBrowser.inc, class <a href="tools/toolSchemaBrowser.html">toolSchemaBrowser</a><br> Schema browser</dd>
<dt><b>toolServerInformation</b></dt>
<dd>in file serverInfo.inc, class <a href="tools/toolServerInformation.html">toolServerInformation</a><br> Server information</dd>
<dt><b>toolTests</b></dt>
<dd>in file tests.inc, class <a href="tools/toolTests.html">toolTests</a><br> Tests page</dd>
<dt><b>toString</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#methodtoString">Math_BigInteger::toString()</a><br> Converts a BigInteger to a base-10 number.</dd>
<dt><b>translateFieldIDToName</b></dt>
<dd>in file pdfpage.php, function <a href="PDF/_templates---pdfedit---pdfpage.php.html#functiontranslateFieldIDToName">translateFieldIDToName()</a><br> Translates a given field ID (e.g. inetOrgPerson_givenName) to its descriptive name.</dd>
<dt><b>TRANS_PRIMARY_OPTION_NAME</b></dt>
<dd>in file user.inc, class constant <a href="lists/lamUserList.html#constTRANS_PRIMARY_OPTION_NAME">lamUserList::TRANS_PRIMARY_OPTION_NAME</a><br> ID for config option</dd>
<dt><b>TRANS_PRIMARY_OPTION_NAME</b></dt>
<dd>in file group.inc, class constant <a href="lists/lamGroupList.html#constTRANS_PRIMARY_OPTION_NAME">lamGroupList::TRANS_PRIMARY_OPTION_NAME</a><br> ID for config option</dd>
<dt><b>Tree</b></dt>
<dd>in file Tree.php, class <a href="phpLDAPadmin/Tree/Tree.html">Tree</a><br> Abstract class which represents the LDAP tree view ; the draw() method must be implemented by subclasses</dd>
<dt><b>tree</b></dt>
<dd>in file page.php, method <a href="phpLDAPadmin/Page/page.html#methodtree">page::tree()</a></dd>
<dt><b>TreeItem</b></dt>
<dd>in file TreeItem.php, class <a href="phpLDAPadmin/Tree/TreeItem.html">TreeItem</a><br> Represents an item in the tree.</dd>
<dt><b>types</b></dt>
<dd>in file export_functions.php, method <a href="phpLDAPadmin/Export/Exporter.html#methodtypes">Exporter::types()</a></dd>
<dt><b>types</b></dt>
<dd>in file import_functions.php, method <a href="phpLDAPadmin/Import/Importer.html#methodtypes">Importer::types()</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="u"></a>
<div>
<h2>u</h2>
<dl>
<dt><b>$underline</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$underline">FPDF::$underline</a></dd>
<dt><b>$unique</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$unique">Attribute::$unique</a></dd>
<dt><b>$usage</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$usage">AttributeType::$usage</a><br> The usage string set by the LDAP schema</dd>
<dt><b>$used_by_attrs</b></dt>
<dd>in file schema.inc, variable <a href="lib/MatchingRuleUse.html#var$used_by_attrs">MatchingRuleUse::$used_by_attrs</a><br> An array of attributeType names who make use of the mathingRule</dd>
<dt><b>$used_by_attrs</b></dt>
<dd>in file schema.inc, variable <a href="lib/MatchingRule.html#var$used_by_attrs">MatchingRule::$used_by_attrs</a><br> An array of attribute names who use this MatchingRule</dd>
<dt><b>$used_in_object_classes</b></dt>
<dd>in file schema.inc, variable <a href="lib/AttributeType.html#var$used_in_object_classes">AttributeType::$used_in_object_classes</a><br> An array of objectClasses which use this attributeType (must be set by caller)</dd>
<dt><b>$useTLS</b></dt>
<dd>in file selfService.inc, variable <a href="selfService/selfServiceProfile.html#var$useTLS">selfServiceProfile::$useTLS</a><br> use TLS</dd>
<dt><b>user.inc</b></dt>
<dd>procedural page <a href="types/_lib---types---user.inc.html">user.inc</a></dd>
<dt><b>ufpdf.php</b></dt>
<dd>procedural page <a href="PDF/_lib---ufpdf.php.html">ufpdf.php</a></dd>
<dt><b>update.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---update.php.html">update.php</a></dd>
<dt><b>update_confirm.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---update_confirm.php.html">update_confirm.php</a></dd>
<dt><b>unserialize.php</b></dt>
<dd>procedural page <a href="main/_templates---3rdParty---pla---tools---unserialize.php.html">unserialize.php</a></dd>
<dt><b>userlink.php</b></dt>
<dd>procedural page <a href="lists/_templates---lists---userlink.php.html">userlink.php</a></dd>
<dt><b>UFPDF</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#methodUFPDF">UFPDF::UFPDF()</a><br> *****************************************************************************</dd>
<dt><b>UFPDF</b></dt>
<dd>in file ufpdf.php, class <a href="PDF/UFPDF.html">UFPDF</a><br> Main UFPDF class for creating Unicode PDF documents</dd>
<dt><b>UFPDF_VERSION</b></dt>
<dd>in file ufpdf.php, constant <a href="PDF/_lib---ufpdf.php.html#defineUFPDF_VERSION">UFPDF_VERSION</a><br> *****************************************************************************</dd>
<dt><b>unsetSizeLimited</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#methodunsetSizeLimited">TreeItem::unsetSizeLimited()</a><br> Clear the size limited flag.</dd>
<dt><b>untested</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#methoduntested">DS::untested()</a><br> Return the untested config items</dd>
<dt><b>untested</b></dt>
<dd>in file config_default.php, method <a href="phpLDAPadmin/Tree/Config.html#methoduntested">Config::untested()</a><br> Return the untested config items</dd>
<dt><b>user</b></dt>
<dd>in file user.inc, class <a href="types/user.html">user</a><br> The account type for user accounts (e.g. Unix, Samba and Kolab).</dd>
<dt><b>userIsAllowedLogin</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methoduserIsAllowedLogin">myldap::userIsAllowedLogin()</a><br> This function will determine if the user is allowed to login based on a filter</dd>
<dt><b>userIsMember</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#methoduserIsMember">myldap::userIsMember()</a><br> This function will test if a user is a member of a group.</dd>
<dt><b>utf8_substr</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#methodutf8_substr">UFPDF::utf8_substr()</a></dd>
<dt><b>utf8_to_codepoints</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#methodutf8_to_codepoints">UFPDF::utf8_to_codepoints()</a></dd>
<dt><b>utf8_to_utf16be</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#methodutf8_to_utf16be">UFPDF::utf8_to_utf16be()</a></dd>
<dt><b>utime</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#functionutime">utime()</a><br> Returns the current time as a double (including micro-seconds).</dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="v"></a>
<div>
<h2>v</h2>
<dl>
<dt><b>$value</b></dt>
<dd>in file html.inc, variable <a href="metaHTML/htmlButton.html#var$value">htmlButton::$value</a><br> button text or image</dd>
<dt><b>$values</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$values">Attribute::$values</a></dd>
<dt><b>$verify</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$verify">Attribute::$verify</a></dd>
<dt><b>$visible</b></dt>
<dd>in file Attribute.php, variable <a href="phpLDAPadmin/Templates/Attribute.html#var$visible">Attribute::$visible</a></dd>
<dt><b>vera.php</b></dt>
<dd>procedural page <a href="PDF/_lib---font---vera.php.html">vera.php</a></dd>
<dt><b>verab.php</b></dt>
<dd>procedural page <a href="PDF/_lib---font---verab.php.html">verab.php</a></dd>
<dt><b>verabi.php</b></dt>
<dd>procedural page <a href="PDF/_lib---font---verabi.php.html">verabi.php</a></dd>
<dt><b>verai.php</b></dt>
<dd>procedural page <a href="PDF/_lib---font---verai.php.html">verai.php</a></dd>
<dt><b>view_jpeg_photo.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/Page/_templates---3rdParty---pla---htdocs---view_jpeg_photo.php.html">view_jpeg_photo.php</a></dd>
<dt><b>Visitor.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---Visitor.php.html">Visitor.php</a></dd>
<dt><b>VALIDATE_NUMERIC</b></dt>
<dd>in file html.inc, class constant <a href="metaHTML/htmlElement.html#constVALIDATE_NUMERIC">htmlElement::VALIDATE_NUMERIC</a><br> validation rule to allow only numbers ([0-9]+)</dd>
<dt><b>verify</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#methodverify">Crypt_RSA::verify()</a><br> Verifies a signature</dd>
<dt><b>visitAttribute</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#methodvisitAttribute">PageRender::visitAttribute()</a><br> Dummy method...</dd>
<dt><b>Visitor</b></dt>
<dd>in file Visitor.php, class <a href="phpLDAPadmin/Templates/Visitor.html">Visitor</a><br> Abstract Visitor class</dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="w"></a>
<div>
<h2>w</h2>
<dl>
<dt><b>$w</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$w">FPDF::$w</a></dd>
<dt><b>$wPt</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$wPt">FPDF::$wPt</a></dd>
<dt><b>$ws</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$ws">FPDF::$ws</a></dd>
<dt><b>Write</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#methodWrite">UFPDF::Write()</a></dd>
<dt><b>write</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#methodwrite">Net_SSH2::write()</a><br> Inputs a command into an interactive shell.</dd>
<dt><b>Write</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#methodWrite">FPDF::Write()</a></dd>
<dt><b>write</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#methodwrite">Net_SSH1::write()</a><br> Inputs a command into an interactive shell.</dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="x"></a>
<div>
<h2>x</h2>
<dl>
<dt><b>$x</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$x">FPDF::$x</a></dd>
<dt><b>xml_parser.inc</b></dt>
<dd>procedural page <a href="PDF/_lib---xml_parser.inc.html">xml_parser.inc</a></dd>
<dt><b>xml2array.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---xml2array.php.html">xml2array.php</a></dd>
<dt><b>xmlTemplates.php</b></dt>
<dd>procedural page <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---xmlTemplates.php.html">xmlTemplates.php</a></dd>
<dt><b>xml2array</b></dt>
<dd>in file xml2array.php, class <a href="phpLDAPadmin/XML/xml2array.html">xml2array</a><br> XML Parser</dd>
<dt><b>xmlParser</b></dt>
<dd>in file xml_parser.inc, class <a href="PDF/xmlParser.html">xmlParser</a></dd>
<dt><b>xmlTemplate</b></dt>
<dd>in file xmlTemplates.php, class <a href="phpLDAPadmin/Templates/xmlTemplate.html">xmlTemplate</a><br> XML Template Class</dd>
<dt><b>xmlTemplates</b></dt>
<dd>in file xmlTemplates.php, class <a href="phpLDAPadmin/Templates/xmlTemplates.html">xmlTemplates</a><br> XML Templates Class</dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="y"></a>
<div>
<h2>y</h2>
<dl>
<dt><b>$y</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$y">FPDF::$y</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="z"></a>
<div>
<h2>z</h2>
<dl>
<dt><b>$ZoomMode</b></dt>
<dd>in file fpdf.php, variable <a href="main/FPDF.html#var$ZoomMode">FPDF::$ZoomMode</a></dd>
</dl>
</div>
<a href="elementindex.html#top">top</a><br>
<hr />
<a name="_"></a>
<div>
<h2>_</h2>
<dl>
<dt><b>$_app</b></dt>
<dd>in file page.php, variable <a href="phpLDAPadmin/Page/page.html#var$_app">page::$_app</a></dd>
<dt><b>$_default</b></dt>
<dd>in file page.php, variable <a href="phpLDAPadmin/Page/page.html#var$_default">page::$_default</a></dd>
<dt><b>$_head</b></dt>
<dd>in file page.php, variable <a href="phpLDAPadmin/Page/page.html#var$_head">page::$_head</a></dd>
<dt><b>$_pageheader</b></dt>
<dd>in file page.php, variable <a href="phpLDAPadmin/Page/page.html#var$_pageheader">page::$_pageheader</a></dd>
<dt><b>$_rounds</b></dt>
<dd>in file blowfish.php, variable <a href="horde-cipher/Horde_Cipher_blowfish.html#var$_rounds">Horde_Cipher_blowfish::$_rounds</a></dd>
<dt><b>_</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#function_">_()</a><br> If gettext is not available in PHP, then this will provide compatibility for it.</dd>
<dt><b>_beginpage</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_beginpage">FPDF::_beginpage()</a></dd>
<dt><b>_checkoutput</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_checkoutput">FPDF::_checkoutput()</a></dd>
<dt><b>_closeMCrypt</b></dt>
<dd>in file RC4.php, method <a href="Crypt_RC4/Crypt_RC4.html#method_closeMCrypt">Crypt_RC4::_closeMCrypt()</a><br> Properly close the MCrypt objects.</dd>
<dt><b>_dochecks</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_dochecks">FPDF::_dochecks()</a><br> *****************************************************************************</dd>
<dt><b>_dounderline</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_dounderline">FPDF::_dounderline()</a></dd>
<dt><b>_dounderlineU</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#method_dounderlineU">UFPDF::_dounderlineU()</a></dd>
<dt><b>_encryptBlock</b></dt>
<dd>in file blowfish.php, method <a href="horde-cipher/Horde_Cipher_blowfish.html#method_encryptBlock">Horde_Cipher_blowfish::_encryptBlock()</a><br> Encrypt a block on data.</dd>
<dt><b>_enddoc</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_enddoc">FPDF::_enddoc()</a></dd>
<dt><b>_endpage</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_endpage">FPDF::_endpage()</a></dd>
<dt><b>_escape</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_escape">FPDF::_escape()</a></dd>
<dt><b>_escapetext</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#method_escapetext">UFPDF::_escapetext()</a></dd>
<dt><b>_formatKey</b></dt>
<dd>in file blowfish.php, method <a href="horde-cipher/Horde_Cipher_blowfish.html#method_formatKey">Horde_Cipher_blowfish::_formatKey()</a><br> Converts a text key into an array.</dd>
<dt><b>_generate_xor</b></dt>
<dd>in file DES.php, method <a href="Crypt_DES/Crypt_DES.html#method_generate_xor">Crypt_DES::_generate_xor()</a><br> Generate CTR XOR encryption key</dd>
<dt><b>_generate_xor</b></dt>
<dd>in file Rijndael.php, method <a href="Crypt_Rijndael/Crypt_Rijndael.html#method_generate_xor">Crypt_Rijndael::_generate_xor()</a><br> Generate CTR XOR encryption key</dd>
<dt><b>_getpagesize</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_getpagesize">FPDF::_getpagesize()</a></dd>
<dt><b>_get_raw_schema</b></dt>
<dd>in file schema.inc, function <a href="lib/_lib---schema.inc.html#function_get_raw_schema">_get_raw_schema()</a><br> Fetches the raw schema array for the subschemaSubentry of the server. Note, this function has grown many hairs to accomodate more LDAP servers. It is needfully complicated as it now supports many popular LDAP servers that don't necessarily expose their schema "the right way".</dd>
<dt><b>_get_schema_dn</b></dt>
<dd>in file schema.inc, function <a href="lib/_lib---schema.inc.html#function_get_schema_dn">_get_schema_dn()</a><br> Helper for _get_raw_schema() which fetches the DN of the schema object</dd>
<dt><b>_loadfont</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_loadfont">FPDF::_loadfont()</a></dd>
<dt><b>_newobj</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_newobj">FPDF::_newobj()</a></dd>
<dt><b>_out</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_out">FPDF::_out()</a></dd>
<dt><b>_parsegif</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_parsegif">FPDF::_parsegif()</a></dd>
<dt><b>_parsejpg</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_parsejpg">FPDF::_parsejpg()</a></dd>
<dt><b>_parsepng</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_parsepng">FPDF::_parsepng()</a></dd>
<dt><b>_parsepngstream</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_parsepngstream">FPDF::_parsepngstream()</a></dd>
<dt><b>_putcatalog</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_putcatalog">FPDF::_putcatalog()</a></dd>
<dt><b>_putfonts</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_putfonts">FPDF::_putfonts()</a></dd>
<dt><b>_putheader</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_putheader">FPDF::_putheader()</a></dd>
<dt><b>_putimage</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_putimage">FPDF::_putimage()</a></dd>
<dt><b>_putimages</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_putimages">FPDF::_putimages()</a></dd>
<dt><b>_putinfo</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_putinfo">FPDF::_putinfo()</a></dd>
<dt><b>_putinfo</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#method_putinfo">UFPDF::_putinfo()</a></dd>
<dt><b>_putpages</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#method_putpages">UFPDF::_putpages()</a></dd>
<dt><b>_putpages</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_putpages">FPDF::_putpages()</a></dd>
<dt><b>_putresourcedict</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_putresourcedict">FPDF::_putresourcedict()</a></dd>
<dt><b>_putresources</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_putresources">FPDF::_putresources()</a></dd>
<dt><b>_putstream</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_putstream">FPDF::_putstream()</a></dd>
<dt><b>_puttrailer</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_puttrailer">FPDF::_puttrailer()</a></dd>
<dt><b>_puttruetypeunicode</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#method_puttruetypeunicode">UFPDF::_puttruetypeunicode()</a><br> *****************************************************************************</dd>
<dt><b>_putxobjectdict</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_putxobjectdict">FPDF::_putxobjectdict()</a></dd>
<dt><b>_random</b></dt>
<dd>in file RSA.php, method <a href="Crypt_RSA/Crypt_RSA.html#method_random">Crypt_RSA::_random()</a><br> Generates a random string x bytes long</dd>
<dt><b>_readint</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_readint">FPDF::_readint()</a></dd>
<dt><b>_readstream</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_readstream">FPDF::_readstream()</a></dd>
<dt><b>_textstring</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#method_textstring">UFPDF::_textstring()</a></dd>
<dt><b>_textstring</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_textstring">FPDF::_textstring()</a></dd>
<dt><b>_UTF8toUTF16</b></dt>
<dd>in file fpdf.php, method <a href="main/FPDF.html#method_UTF8toUTF16">FPDF::_UTF8toUTF16()</a></dd>
<dt><b>__autoload</b></dt>
<dd>in file functions.php, function <a href="phpLDAPadmin/_templates---3rdParty---pla---lib---functions.php.html#function__autoload">__autoload()</a><br> Loads class definition</dd>
<dt><b>__call</b></dt>
<dd>in file Visitor.php, method <a href="phpLDAPadmin/Templates/Visitor.html#method__call">Visitor::__call()</a></dd>
<dt><b>__clone</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#method__clone">Math_BigInteger::__clone()</a><br> __clone() magic method</dd>
<dt><b>__clone</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#method__clone">Template::__clone()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file netgroup.inc, method <a href="types/netgroup.html#method__construct">netgroup::__construct()</a><br> Constructs a new group type object.</dd>
<dt><b>__construct</b></dt>
<dd>in file netgroup.inc, method <a href="lists/lamNetgroupList.html#method__construct">lamNetgroupList::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplate.html#method__construct">xmlTemplate::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#method__construct">Ldap::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file import_functions.php, method <a href="phpLDAPadmin/Import/Importer.html#method__construct">Importer::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file xml_parser.inc, method <a href="PDF/xmlParser.html#method__construct">xmlParser::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file xmlTemplates.php, method <a href="phpLDAPadmin/Templates/xmlTemplates.html#method__construct">xmlTemplates::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file mailAlias.inc, method <a href="types/mailAlias.html#method__construct">mailAlias::__construct()</a><br> Constructs a new alias type object.</dd>
<dt><b>__construct</b></dt>
<dd>in file mailAlias.inc, method <a href="lists/lamMailAliasList.html#method__construct">lamMailAliasList::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file lists.inc, method <a href="lists/lamSelectListOption.html#method__construct">lamSelectListOption::__construct()</a><br> Creates a new selection list option.</dd>
<dt><b>__construct</b></dt>
<dd>in file lists.inc, method <a href="lists/lamListTool.html#method__construct">lamListTool::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file lists.inc, method <a href="lists/lamListOption.html#method__construct">lamListOption::__construct()</a><br> Creates a new config option.</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 page.php, method <a href="phpLDAPadmin/Page/page.html#method__construct">page::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file lists.inc, method <a href="lists/lamList.html#method__construct">lamList::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file lamPDF.inc, method <a href="PDF/lamPDF.html#method__construct">lamPDF::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file lists.inc, method <a href="lists/lamBooleanListOption.html#method__construct">lamBooleanListOption::__construct()</a><br> Creates a new boolean option.</dd>
<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 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 selfService.inc, method <a href="selfService/selfServiceProfile.html#method__construct">selfServiceProfile::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file SelectionAttribute.php, method <a href="phpLDAPadmin/Templates/SelectionAttribute.html#method__construct">SelectionAttribute::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file smbDomain.inc, method <a href="lists/lamSmbDomainList.html#method__construct">lamSmbDomainList::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file smbDomain.inc, method <a href="types/smbDomain.html#method__construct">smbDomain::__construct()</a><br> Constructs a new domain type object.</dd>
<dt><b>__construct</b></dt>
<dd>in file Tree.php, method <a href="phpLDAPadmin/Tree/Tree.html#method__construct">Tree::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file import_functions.php, method <a href="phpLDAPadmin/Import/Import.html#method__construct">Import::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file Template.php, method <a href="phpLDAPadmin/Templates/Template.html#method__construct">Template::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/Syntax.html#method__construct">Syntax::__construct()</a><br> Creates a new Syntax object from a raw LDAP syntax string.</dd>
<dt><b>__construct</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass_ObjectClassAttribute.html#method__construct">ObjectClass_ObjectClassAttribute::__construct()</a><br> Creates a new ObjectClass_ObjectClassAttribute with specified name and source objectClass.</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 user.inc, method <a href="lists/lamUserList.html#method__construct">lamUserList::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file user.inc, method <a href="types/user.html#method__construct">user::__construct()</a><br> Constructs a new user type object.</dd>
<dt><b>__construct</b></dt>
<dd>in file TreeItem.php, method <a href="phpLDAPadmin/Tree/TreeItem.html#method__construct">TreeItem::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/AttributeType.html#method__construct">AttributeType::__construct()</a><br> Creates a new AttributeType object from a raw LDAP AttributeType string.</dd>
<dt><b>__construct</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/MatchingRuleUse.html#method__construct">MatchingRuleUse::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/ObjectClass.html#method__construct">ObjectClass::__construct()</a><br> Creates a new ObjectClass object given a raw LDAP objectClass string.</dd>
<dt><b>__construct</b></dt>
<dd>in file schema_functions.php, method <a href="phpLDAPadmin/Schema/MatchingRule.html#method__construct">MatchingRule::__construct()</a><br> Creates a new MatchingRule object from a raw LDAP MatchingRule string.</dd>
<dt><b>__construct</b></dt>
<dd>in file PageRender.php, method <a href="phpLDAPadmin/Templates/PageRender.html#method__construct">PageRender::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputFileUpload.html#method__construct">htmlInputFileUpload::__construct()</a><br> Constructor.</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 export_functions.php, method <a href="phpLDAPadmin/Export/Exporter.html#method__construct">Exporter::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file ds_myldap.php, method <a href="phpLDAPadmin/DataStore/myldap.html#method__construct">myldap::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#method__construct">ldap_pla::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/Datastore.html#method__construct">Datastore::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file ds.php, method <a href="phpLDAPadmin/DataStore/DS.html#method__construct">DS::__construct()</a></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 group.inc, method <a href="types/group.html#method__construct">group::__construct()</a><br> Constructs a new group type object.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTitle.html#method__construct">htmlTitle::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlAccountPageButton.html#method__construct">htmlAccountPageButton::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file host.inc, method <a href="lists/lamHostList.html#method__construct">lamHostList::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file host.inc, method <a href="types/host.html#method__construct">host::__construct()</a><br> Constructs a new host type object.</dd>
<dt><b>__construct</b></dt>
<dd>in file group.inc, method <a href="lists/lamGroupList.html#method__construct">lamGroupList::__construct()</a><br> Constructor</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 dhcp.inc, method <a href="lists/lamDHCPList.html#method__construct">lamDHCPList::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file Attribute.php, method <a href="phpLDAPadmin/Templates/Attribute.html#method__construct">Attribute::__construct()</a></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>__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 asteriskExt.inc, method <a href="lists/lamAsteriskExtList.html#method__construct">lamAsteriskExtList::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file asteriskExt.inc, method <a href="types/asteriskExt.html#method__construct">asteriskExt::__construct()</a><br> Constructs a new domain type 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 baseType.inc, method <a href="types/baseType.html#method__construct">baseType::__construct()</a><br> Creates a new type object.</dd>
<dt><b>__construct</b></dt>
<dd>in file config_default.php, method <a href="phpLDAPadmin/Tree/Config.html#method__construct">Config::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file dhcp.inc, method <a href="types/dhcp.html#method__construct">dhcp::__construct()</a><br> Constructs a new DHCP type object.</dd>
<dt><b>__construct</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#method__construct">LAMConfig::__construct()</a><br> Loads preferences from config file</dd>
<dt><b>__construct</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMCfgMain.html#method__construct">LAMCfgMain::__construct()</a><br> Loads preferences from config file</dd>
<dt><b>__construct</b></dt>
<dd>in file BinaryAttribute.php, method <a href="phpLDAPadmin/Templates/BinaryAttribute.html#method__construct">BinaryAttribute::__construct()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlButton.html#method__construct">htmlButton::__construct()</a><br> Constructor.</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 html.inc, method <a href="metaHTML/htmlTableExtendedInputFileUpload.html#method__construct">htmlTableExtendedInputFileUpload::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlRadio.html#method__construct">htmlRadio::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTableExtendedInputTextarea.html#method__construct">htmlTableExtendedInputTextarea::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTableExtendedRadio.html#method__construct">htmlTableExtendedRadio::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlFieldset.html#method__construct">htmlFieldset::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSelect.html#method__construct">htmlSelect::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTableExtendedInputCheckbox.html#method__construct">htmlTableExtendedInputCheckbox::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSubTitle.html#method__construct">htmlSubTitle::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlStatusMessage.html#method__construct">htmlStatusMessage::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlSpacer.html#method__construct">htmlSpacer::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlOutputText.html#method__construct">htmlOutputText::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTableExtendedSelect.html#method__construct">htmlTableExtendedSelect::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlImage.html#method__construct">htmlImage::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlHiddenInput.html#method__construct">htmlHiddenInput::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlTableRow.html#method__construct">htmlTableRow::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlHelpLink.html#method__construct">htmlHelpLink::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputCheckbox.html#method__construct">htmlInputCheckbox::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputField.html#method__construct">htmlInputField::__construct()</a><br> Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlLink.html#method__construct">htmlLink::__construct()</a><br> Constructor.</dd>
<dt><b>__construct</b></dt>
<dd>in file html.inc, method <a href="metaHTML/htmlInputTextarea.html#method__construct">htmlInputTextarea::__construct()</a><br> Constructor.</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 html.inc, method <a href="metaHTML/htmlTableExtendedInputField.html#method__construct">htmlTableExtendedInputField::__construct()</a><br> Constructor</dd>
<dt><b>__destruct</b></dt>
<dd>in file SSH2.php, method <a href="Net_SSH2/Net_SSH2.html#method__destruct">Net_SSH2::__destruct()</a><br> Destructor.</dd>
<dt><b>__destruct</b></dt>
<dd>in file RC4.php, method <a href="Crypt_RC4/Crypt_RC4.html#method__destruct">Crypt_RC4::__destruct()</a><br> Class destructor.</dd>
<dt><b>__destruct</b></dt>
<dd>in file SSH1.php, method <a href="Net_SSH1/Net_SSH1.html#method__destruct">Net_SSH1::__destruct()</a><br> Destructor.</dd>
<dt><b>__get</b></dt>
<dd>in file ds_ldap_pla.php, method <a href="phpLDAPadmin/DataStore/ldap_pla.html#method__get">ldap_pla::__get()</a></dd>
<dt><b>__sleep</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#method__sleep">Ldap::__sleep()</a><br> Closes connection to LDAP server before serialization</dd>
<dt><b>__sleep</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#method__sleep">Math_BigInteger::__sleep()</a><br> __sleep() magic method</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>__toString</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#method__toString">Math_BigInteger::__toString()</a><br> __toString() magic method</dd>
<dt><b>__wakeup</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#method__wakeup">Ldap::__wakeup()</a><br> Reconnects to LDAP server when deserialized</dd>
<dt><b>__wakeup</b></dt>
<dd>in file BigInteger.php, method <a href="Math_BigInteger/Math_BigInteger.html#method__wakeup">Math_BigInteger::__wakeup()</a><br> __wakeup() magic method</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.html#top">top</a><br>
<div class="credit">
<hr />
Documentation generated on Sun, 25 Mar 2012 19:35:20 +0200 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.1</a>
</div>
</td></tr></table>
</td>
</tr>
</table>
</body>
</html>
|