blob: a3676c4335cc40a66664a27778547f1fe8d124e0 (
plain)
| 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
 | <?php
/**
 * @file
 * Functions for the interface to the help page
 */
/**
  * Class for help
  */
class blank {
  /*
   * rank (for prioritizing modules)
   */
  function rank() {
    $rank = 8;
    return $rank;
  }
  /*
   * init
   */
  function init() {
  }
  /*
   * Adds menu item to nav menu
   *
   * @param $args
   *   Common arguments
   */
  function navMenu($args) {
    $ret .= "<p><small><small><a href='" . $_SESSION['ARI_ROOT'] . "?m=blank&f=display'>" . _("Blank") . "</a></small></small></p><br>";
    return $ret;
  }
  /*
   * Displays stats page
   *
   * @param $args
   *   Common arguments
   */
  function display($args) {
    global $ARI_HELP_FEATURE_CODES;
    $display = new Display();
    // args
    $m = getArgument($args,'m');
    $q = getArgument($args,'q');
    $displayname = $_SESSION['ari_user']['displayname'];
    $extension = $_SESSION['ari_user']['extension'];
    // build page content
    $ret .= checkErrorMessage();
	$header_text = _("Blank");
	if (!$_SESSION['ari_user']['admin_help']) {
		$header_text .= sprintf(_(" for %s (%s)"), $displayname, $extension);
	}
    // build page content
    $ret .= checkErrorMessage();
    $ret .= $display->displayHeaderText($header_text);
    $ret .= $display->displayLine();
    $ret .= 'Blank goes here';
    return $ret;
  }
}
?>
 |