diff options
Diffstat (limited to 'docs/skeleton/appinfo/app.sample.php')
-rw-r--r-- | docs/skeleton/appinfo/app.sample.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/skeleton/appinfo/app.sample.php b/docs/skeleton/appinfo/app.sample.php index 12db7154c2b..ce310996b05 100644 --- a/docs/skeleton/appinfo/app.sample.php +++ b/docs/skeleton/appinfo/app.sample.php @@ -4,12 +4,12 @@ */ // Hello, we are here -OC_APP::register( array( "id" => "skeleton", "name" => "Files", "order" => 1000 )); +OC_App::register( array( "id" => "skeleton", "name" => "Files", "order" => 1000 )); // Add application to navigation -OC_UTIL::addNavigationEntry( array( "id" => "skeleton_index", "order" => 1000, "href" => OC_HELPER::linkTo( "skeleton", "index.php" ), "icon" => OC_HELPER::imagePath( "skeleton", "app.png" ), "name" => "Example app" )); +OC_Util::addNavigationEntry( array( "id" => "skeleton_index", "order" => 1000, "href" => OC_Helper::linkTo( "skeleton", "index.php" ), "icon" => OC_Helper::imagePath( "skeleton", "app.png" ), "name" => "Example app" )); // Add an admin page -OC_UTIL::addAdminPage( array( "order" => 1, "href" => OC_HELPER::linkTo( "skeleton", "admin.php" ), "name" => "Example app options" )); +OC_Util::addAdminPage( array( "order" => 1, "href" => OC_Helper::linkTo( "skeleton", "admin.php" ), "name" => "Example app options" )); ?> |