diff options
Diffstat (limited to 'help/appinfo/app.php')
-rw-r--r-- | help/appinfo/app.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/help/appinfo/app.php b/help/appinfo/app.php index 952c57f9bc8..4743292ebb7 100644 --- a/help/appinfo/app.php +++ b/help/appinfo/app.php @@ -1,6 +1,14 @@ <?php OC_APP::register( array( "order" => 1, "id" => "help", "name" => "Help" )); -OC_APP::addSettingsPage( array( "id" => "help", "order" => 2, "href" => OC_HELPER::linkTo( "help", "index.php" ), "name" => "Help", "icon" => OC_HELPER::imagePath( "settings", "information.png" ))); + +// 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( "settings", "information.png" )); +if( OC_GROUP::inGroup( $_SESSION["user_id"], "admin" )){ + OC_APP::addAdminPage( $entry ); +} +else{ + OC_APP::addSettingsPage( $entry ); +} ?> |