nextcloud/settings/appinfo/app.php

7 lines
299 B
PHP
Raw Normal View History

<?php
OC_APP::register( array( "id" => "settings", "name" => "Settings" ));
2011-04-17 22:00:07 +04:00
OC_APP::addSettingsPage( array( "id" => "settings", "order" => -1000, "href" => OC_HELPER::linkTo( "settings", "index.php" ), "name" => "Information", "icon" => OC_HELPER::imagePath( "settings", "information.png" )));
?>