Projet

Général

Profil

Paste
Télécharger (1,52 ko) Statistiques
| Branche: | Révision:

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

1
<?php
2

    
3
/**
4
 * @file
5
 * The ldap_help issues provides a filtered watchdog view for ldap issues.
6
 */
7

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

    
13
  $text = '<h3>' . t('LDAP Help Module') . '</h3><p>' .
14
  t('How to report bugs in LDAP Project.') . '</p>';
15
  ldap_servers_module_load_include('inc', 'ldap_help', 'ldap_help.status');
16
  $ldap_config = ldap_help_status('html');
17

    
18
  $path = drupal_get_path("module", "ldap_servers");
19

    
20
  $text .= <<<EOT
21

    
22
  <ol>
23
  <li>Search for existing issues. Include all statuses and versions
24
      in you search; a closed issue may be relevant.
25
<a href="http://drupal.org/project/issues/search/ldap">http://drupal.org/project/issues/search/ldap</a>
26
</li>
27

    
28
  </ul>
29
</li>
30

    
31

    
32
<li>Look for common problems/solutions at: <a href="http://drupal.org/node/997082">http://drupal.org/node/997082</a>.
33
This is editable, so actively participate in updateing this documentation.
34

    
35
</li>
36
<li>
37
Additional directions are at the beginning of the add issue form at
38
<a href="http://drupal.org/node/add/project-issue/ldap">http://drupal.org/node/add/project-issue/ldap.</a>
39

    
40
</li>
41

    
42
</ul>
43

    
44
</li>
45

    
46

    
47
</ol>
48

    
49
<div style="border: 1px solid #000000; padding: 10px; margin: 10px; text-align: center;">
50
  <p>Cut and past the html below into a file called<code>ldap_config.html</code> and attach it when reporting errors.
51
  <br/>The table below is the same.  Check that no sensitive data is in it.</p>
52
  <form>
53
  <textarea rows=10 cols=120 border=1 style="border: 1px solid #000000">$ldap_config</textarea>
54
  </form>
55
</div>
56
$ldap_config
57
EOT;
58

    
59
  return $text;
60
}