16 lines
498 B
PHP
16 lines
498 B
PHP
<?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",
|
|
"order" => 10,
|
|
"href" => OC_Helper::linkTo( "files_sharing", "list.php" ),
|
|
"name" => "Shared"));
|
|
|
|
?>
|