You are here

function ldaphelp_main in LDAP integration 6

1 string reference to 'ldaphelp_main'
ldaphelp_menu in ldaphelp/ldaphelp.module
Implementation of hook_menu().

File

ldaphelp/ldaphelp.module, line 315
The ldaphelp module is a module to help admins debug ldap_integration modules.

Code

function ldaphelp_main() {
  $text = '<h3>' . t('LDAP Help Module') . '</h3><p>' . t('This module is meant to assist Drupal admins in configuring, debugging, sharing, and submitting
  support and bug request related to LDAP integration modules.') . '<strong><em> ' . t('LDAP Help Module should be disabled unless you are debugging or configuring ldap problems.') . '</em></strong> ' . t('It adds no functionality to the LDAP modules.') . '</p>';
  $path = drupal_get_path("module", "ldapauth");
  $text .= <<<EOT

  <h3>LDAP Integration Module Resources</h3>
  <ul>
  <li>The <a href="/{<span class="php-variable">$path</span>}/README.txt">readme file</a> covers basics of module.</li>
  <li><a href="http://drupal.org/node/62217">LDAP Integration Contributed Module Documentation</a>
  overviews ldapauth, ldapgroups, and ldapdata modules and their installation and configuration.
  Sometimes out of date.  Be sure that documentation matches the version you are using.  This
  is a great opportunity for new users to contribute to the module:  when  you first use the
  documentation take notes on what needs to be clarified.
  </li>
  <li>Search <a href="http://drupal.org/project/issues/search/ldap_integration">issue que</a>  For best results,
  select version and category before searching.</li>
  <li><a href="http://drupal.org/project/issues/ldap_integration">View all issues</a></li>
  </ul>

   <h3>General Drupal Support Help</h3>

  <ul>
  <li><a href="http://drupal.org/node/314185">How to report a problem in Drupal</a></li>
  <li><a href="http://drupal.org/node/19279">How to report bugs in Drupal</a></li>
  <li><a href="http://drupal.org/Troubleshooting-FAQ">Drupal Troubleshooting FAQ</a></li>
  </ul>

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

EOT;
  return $text;
}