2011-06-12 00:14:24 +04:00
|
|
|
<?php
|
|
|
|
|
2011-07-19 00:36:34 +04:00
|
|
|
require_once('apps/files_sharing/lib_share.php');
|
2011-08-01 18:58:15 +04:00
|
|
|
require_once('apps/files_sharing/sharedstorage.php');
|
2011-07-19 00:36:34 +04:00
|
|
|
|
2011-08-01 18:58:15 +04:00
|
|
|
OC_Filesystem::registerStorageType("shared", "OC_Filestorage_Shared", array("datadir"=>"string"));
|
2011-07-31 03:40:19 +04:00
|
|
|
OC_Util::addScript("files_sharing", "share");
|
|
|
|
OC_App::addNavigationSubEntry("files_index", array(
|
2011-07-29 20:20:01 +04:00
|
|
|
"id" => "files_sharing_list",
|
2011-06-12 00:14:24 +04:00
|
|
|
"order" => 10,
|
2011-07-31 03:40:19 +04:00
|
|
|
"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
|
|
|
?>
|