summaryrefslogtreecommitdiff
path: root/fs_selfservice/fri/modules.template/blank.module
diff options
context:
space:
mode:
Diffstat (limited to 'fs_selfservice/fri/modules.template/blank.module')
-rw-r--r--fs_selfservice/fri/modules.template/blank.module81
1 files changed, 0 insertions, 81 deletions
diff --git a/fs_selfservice/fri/modules.template/blank.module b/fs_selfservice/fri/modules.template/blank.module
deleted file mode 100644
index a3676c4..0000000
--- a/fs_selfservice/fri/modules.template/blank.module
+++ /dev/null
@@ -1,81 +0,0 @@
-<?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;
- }
-
-}
-
-?>