nextcloud/settings/appinfo/app.php

7 lines
293 B
PHP
Raw Normal View History

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