nextcloud/admin/appinfo/app.php

13 lines
969 B
PHP
Raw Normal View History

<?php
2011-03-04 01:08:11 +03:00
OC_APP::register( array( "order" => 1, "id" => "admin", "name" => "Administration" ));
2011-04-16 19:49:57 +04:00
2011-07-28 23:05:49 +04:00
// OC_APP::addAdminPage( array( "id" => "core_system", "order" => 1, "href" => OC_HELPER::linkTo( "admin", "system.php" ), "name" =>"System", "icon" => OC_HELPER::imagePath( "admin", "administration.png" )));
2011-04-17 22:11:28 +04:00
OC_APP::addAdminPage( array( "id" => "core_users", "order" => 2, "href" => OC_HELPER::linkTo( "admin", "users.php" ), "name" => "Users", "icon" => OC_HELPER::imagePath( "admin", "users.png" )));
OC_APP::addAdminPage( array( "id" => "core_apps", "order" => 3, "href" => OC_HELPER::linkTo( "admin", "apps.php?installed" ), "name" => "Apps", "icon" => OC_HELPER::imagePath( "admin", "apps.png" )));
2011-04-17 21:38:04 +04:00
// Add subentries for App installer
OC_APP::addNavigationSubEntry( "core_apps", array( "id" => "core_apps_get", "order" => 4, "href" => OC_HELPER::linkTo( "admin", "apps.php" ), "name" => "Get new apps", "icon" => OC_HELPER::imagePath( "admin", "navicon.png" )));
2011-04-17 21:38:04 +04:00
?>