Projet

Général

Profil

Paste
Télécharger (2,67 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / ldap / ldap_help / ldap_help.resources.inc @ 91af538d

1
<?php
2

    
3
/**
4
 * @file
5
 * The ldap_help resources are just links.
6
 */
7

    
8
/**
9
 *
10
 */
11
function ldap_help_main() {
12

    
13
  $text = <<<EOT
14

    
15
  <h3>LDAP Module Resources</h3>
16
  <ul>
17
    <li>The <a href="http://drupal.org/node/997082">Drupal.org Documentation</a> covers basics of the module.</li>
18
    <li>Search the <a href="http://drupal.org/project/issues/search/ldap"> issue queue</a>;  For best results,
19
    select version and category before searching.</li>
20
    <li><a href="http://drupal.org/project/issues/ldap">View all issues</a></li>
21
    <li><a href="http://docs.moodle.org/20/en/LDAP_authentication">Moodle LDAP module documentation</a> is
22
    well done and provides insight into LDAP in a PHP environment.</li>
23
  </ul>
24

    
25
  <h3>Your local LDAP Documentation and Administrators</h3>
26
  <p>You would be surprised how much is documented about your local LDAP.  Find your organization's LDAP documentation and
27
     support staff before you struggle blindly.  Know whether LDAP or LDAPS is used.  Know if an odd port is used.
28
     A sample email to an LDAP Administrator is available at <a href="http://drupal.org/node/1925794">http://drupal.org/node/1925794</a>
29
     Know how service accounts are expected to be used.
30
     Below are examples of ldap implementation documentation:</p>
31
  <ul>
32
  <li><a href="http://www.it.northwestern.edu/bin/docs/CentralAuthenticationServicesThroughLDAP.pdf">Northwestern University</li>
33
  <li><a href="http://www.netid.washington.edu/documentation/ldapConfig.aspx">University of Washington</a></li>
34
  <li><a href="https://wiki.uchicago.edu/display/idm/LDAP">University of Chicago</a></li>
35
  <li><a href="https://www.icts.uiowa.edu/confluence/display/ICTSit/Drupal+LDAP+Integration+Against+Active+Directory">UIOWA</a></li>
36
  </ul>
37

    
38
  <h3>General Drupal Support Help</h3>
39
  <ul>
40
  <li><a href="http://drupal.org/node/314185">How to report a problem in Drupal</a></li>
41
  <li><a href="http://drupal.org/node/19279">How to report bugs in Drupal</a></li>
42
  <li><a href="http://drupal.org/Troubleshooting-FAQ">Drupal Troubleshooting FAQ</a></li>
43
  </ul>
44

    
45
  <h3>General LDAP Resources</h3>
46
  <ul>
47
  <li><a href="http://us.php.net/manual/en/book.ldap.php">PHP LDAP</a></li>
48
  <li><a href="http://directory.apache.org/studio/">Apache Directory Studio</a> LDAP Browser and Directory Client.</li>
49
  <li><a href="http://www.novell.com/documentation/edir873/index.html?page=/documentation/edir873/edir873/data/h0000007.html">Novell Edirectory</a></li>
50
  <li><a href="http://images.apple.com/server/macosx/docs/Open_Directory_Admin_v10.5_3rd_Ed.pdf">Apple Open Directory</a></li>
51
  <li><a href="http://msdn.microsoft.com/en-us/library/aa705886(VS.85).aspx">Microsoft Active Directory LDAP</a></li>
52
  </ul>
53

    
54
EOT;
55

    
56
  return $text;
57
}