more work on doco search

This commit is contained in:
redmatrix
2015-08-30 22:39:33 -07:00
parent 7ba1217a13
commit e23f86faa9
5 changed files with 30 additions and 1 deletions

View File

@@ -1063,3 +1063,15 @@ function widget_tasklist($arr) {
}
function widget_helpindex($arr) {
$o .= '<div class="widget">' . '<h3>' . t('Documentation') . '</h3>';
$o .= '<ul class="nav nav-pills nav-stacked">';
$o .= '<li><a href="help/general">' . t('Project/Site Information') . '</li>';
$o .= '<li><a href="help/members">' . t('For Members') . '</li>';
$o .= '<li><a href="help/admins">' . t('For Administrators') . '</li>';
$o .= '<li><a href="help/develop">' . t('For Developers') . '</li>';
$o .= '</ul></div>';
return $o;
}