blob: fd46085ef77f75e7ec4d3bab8e8226ba567ddb9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
OC_APP::register( array( "order" => 1, "id" => "help", "name" => "Help" ));
// Workaround for having help as the last entry always
$entry = array( "id" => "help", "order" => 1000, "href" => OC_HELPER::linkTo( "help", "index.php" ), "name" => "Help", "icon" => OC_HELPER::imagePath( "help", "help.png" ));
if( isset( $_SESSION["user_id"] ) && OC_GROUP::inGroup( $_SESSION["user_id"], "admin" )){
OC_APP::addAdminPage( $entry );
}
else{
OC_APP::addSettingsPage( $entry );
}
?>
|