diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-04-17 20:11:28 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-04-17 20:11:28 +0200 |
commit | 8c5831d95809543641497b05808254eaba5c792b (patch) | |
tree | a46c52bc03ac383f98c2981a2d5a12dc323b0089 /files/appinfo/app.php | |
parent | 21def39dacd2c452d401c7658b91c86087b5e8e1 (diff) | |
download | nextcloud-server-8c5831d95809543641497b05808254eaba5c792b.tar.gz nextcloud-server-8c5831d95809543641497b05808254eaba5c792b.zip |
shiny new symbolic icons, yay
Diffstat (limited to 'files/appinfo/app.php')
-rw-r--r-- | files/appinfo/app.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/files/appinfo/app.php b/files/appinfo/app.php index 851a774286d..c542f47b24f 100644 --- a/files/appinfo/app.php +++ b/files/appinfo/app.php @@ -3,7 +3,8 @@ OC_APP::register( array( "order" => 2, "id" => "files", "name" => "Files" )); OC_APP::addNavigationEntry( array( "id" => "files_index", "order" => 1, "href" => OC_HELPER::linkTo( "files", "index.php" ), "icon" => OC_HELPER::imagePath( "files", "navicon.png" ), "name" => "Files" )); -OC_APP::addSettingsPage( array( "id" => "files_administration", "order" => 1, "href" => OC_HELPER::linkTo( "files", "admin.php" ), "name" => "Files" )); +OC_APP::addSettingsPage( array( "id" => "files_administration", "order" => 1, "href" => OC_HELPER::linkTo( "files", "admin.php" ), "name" => "Files", "icon" => OC_HELPER::imagePath( "files", "folder.png" ))); + // To add navigation sub entries use // OC_APP::addNavigationSubEntry( "files_index", array( ... )); |