nextcloud/apps/files_sharing/appinfo/app.php

16 lines
498 B
PHP
Raw Normal View History

2011-06-12 00:14:24 +04:00
<?php
require_once('apps/files_sharing/lib_share.php');
require_once('apps/files_sharing/sharedstorage.php');
OC_Filesystem::registerStorageType("shared", "OC_Filestorage_Shared", array("datadir"=>"string"));
OC_Util::addScript("files_sharing", "share");
OC_Util::addStyle( 'files_sharing', 'sharing' );
OC_App::addNavigationSubEntry("files_index", array(
"id" => "files_sharing_list",
2011-06-12 00:14:24 +04:00
"order" => 10,
"href" => OC_Helper::linkTo( "files_sharing", "list.php" ),
2011-07-30 16:40:10 +04:00
"name" => "Shared"));
2011-06-12 00:14:24 +04:00
2011-07-30 16:40:10 +04:00
?>