mirror of
https://github.com/nextcloud/server.git
synced 2026-03-25 03:43:45 -04:00
6 lines
270 B
PHP
6 lines
270 B
PHP
<?php
|
|
|
|
OC_APP::register( array( "order" => 1, "id" => "help", "name" => "Help" ));
|
|
OC_APP::addSettingsPage( array( "order" => 2, "href" => OC_HELPER::linkTo( "help", "index.php" ), "name" => "Help", "icon" => OC_HELPER::imagePath( "settings", "information.png" )));
|
|
|
|
?>
|