aboutsummaryrefslogtreecommitdiff
path: root/www/help.php
blob: 8ccdd69d0f6cc6965a1a2865afb1357818752f38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
namespace phorkie;
/**
 * Show help
 */
$reqWritePermissions = false;
require_once 'www-header.php';

render(
    'help',
    array(
        'htmlhelper' => new HtmlHelper(),
        'publicGitUrl' => @$GLOBALS['phorkie']['cfg']['git']['public'],
    )
);
?>