summaryrefslogtreecommitdiffstats
path: root/help/index.php
blob: fe20c1c4ab5aa6d244f1592e5732c66a6d307cbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

require_once('../lib/base.php');
require( 'template.php' );
if( !OC_USER::isLoggedIn()){
    header( "Location: ".OC_HELPER::linkTo( "index.php" ));
    exit();
}

OC_APP::setActiveNavigationEntry( "help" );

$kbe=OC_OCSCLIENT::getKnownledgebaseEntries();


$tmpl = new OC_TEMPLATE( "help", "index", "user" );
$tmpl->assign( "kbe", $kbe );
$tmpl->printPage();

?>