summaryrefslogtreecommitdiff
path: root/themes/example/example.theme
blob: d9a040f3ed63110af602c61761cd87fb6007d5bc (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/themes#description':
      $output = t("Internet explorer, Netscape, Opera, Lynx");
      break;
  }

  return $output;
}


?>