summaryrefslogtreecommitdiff
path: root/themes/example/example.theme
blob: bf4b780ef62b23f05072777b05b581e7f19e8855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
// $Id$

function example_help($section) {

  $output = "";

  switch ($section) {
    case 'admin/system/themes#description':
      $output = t("Internet explorer, Netscape, Opera, Lynx");
      break;
  }

  return $output;
}


?>