summaryrefslogtreecommitdiffstats
path: root/help/appinfo/app.php
diff options
context:
space:
mode:
authorJakob Sack <kde@jakobsack.de>2011-07-29 21:36:03 +0200
committerJakob Sack <kde@jakobsack.de>2011-07-29 21:36:03 +0200
commitbafd684eb694ed0bd86b46ff7cd36382c1cebc34 (patch)
treec3bb1e013d563263002d052eb41032076a36a5f9 /help/appinfo/app.php
parent220132ca237f5077f5145bf327e8528a652ad559 (diff)
downloadnextcloud-server-bafd684eb694ed0bd86b46ff7cd36382c1cebc34.tar.gz
nextcloud-server-bafd684eb694ed0bd86b46ff7cd36382c1cebc34.zip
Renaming classes :-)
Diffstat (limited to 'help/appinfo/app.php')
-rw-r--r--help/appinfo/app.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/help/appinfo/app.php b/help/appinfo/app.php
index fd46085ef77..2e82c0cd181 100644
--- a/help/appinfo/app.php
+++ b/help/appinfo/app.php
@@ -1,14 +1,14 @@
<?php
-OC_APP::register( array( "order" => 1, "id" => "help", "name" => "Help" ));
+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 );
+$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 );
+ OC_App::addSettingsPage( $entry );
}
?>