You are here

function help_example_index_page in Lightweight Directory Access Protocol (LDAP) 6

Implements the help index.

Return value

Themed help index.

File

./ldap_api.help.inc, line 14
Advanced Help callbacks for the ldap_api module.

Code

function help_example_index_page() {
  $output = theme('advanced_help_topic', 'ldap_api', 'about-php');
  $output .= ' ' . t('Click the help icon to view some example help about the PHP programming language (from wikipedia.org). Be sure to run cron to update the index if you want to try out the search features.');
  return $output;
}