You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/apps/test_db/appinfo/app.php

17 lines
338 B

<?php
OC_App::register( array(
'order' => 11,
'id' => 'test_db',
'name' => 'Test' ));
OC_App::addNavigationEntry( array(
'id' => 'test_db_index',
'order' => 11,
'href' => OC_Helper::linkTo( 'test_db', 'index.php' ),
/*
'icon' => OC_Helper::imagePath( 'openstreetgame', 'icon.svg' ),
*/
'name' => 'Test DB' ));
?>