add help to web interface

This commit is contained in:
Gilles Crettenand
2015-06-04 17:55:11 +02:00
parent e12dc5a3c7
commit f2bbf7093e
8 changed files with 124 additions and 3 deletions

13
help.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
namespace BSR;
use BSR\Lib\Formatter\Html;
use BSR\Lib\Help;
require_once('Lib/autoloader.php');
echo Html::template(array(
'title' => 'Help',
'content' => Help::content(new NetBiblio()),
));