2011-06-11 20:14:24 +00:00
|
|
|
<?php
|
|
|
|
|
2011-07-18 20:36:34 +00:00
|
|
|
require_once('apps/files_sharing/lib_share.php');
|
2011-08-01 14:58:15 +00:00
|
|
|
require_once('apps/files_sharing/sharedstorage.php');
|
2011-07-18 20:36:34 +00:00
|
|
|
|
2011-08-01 14:58:15 +00:00
|
|
|
OC_Filesystem::registerStorageType("shared", "OC_Filestorage_Shared", array("datadir"=>"string"));
|
2011-07-30 23:40:19 +00:00
|
|
|
OC_Util::addScript("files_sharing", "share");
|
2011-08-02 17:30:18 +00:00
|
|
|
OC_Util::addStyle( 'files_sharing', 'sharing' );
|
2011-07-30 23:40:19 +00:00
|
|
|
OC_App::addNavigationSubEntry("files_index", array(
|
2011-07-29 16:20:01 +00:00
|
|
|
"id" => "files_sharing_list",
|
2011-06-11 20:14:24 +00:00
|
|
|
"order" => 10,
|
2011-07-30 23:40:19 +00:00
|
|
|
"href" => OC_Helper::linkTo( "files_sharing", "list.php" ),
|
2011-07-30 12:40:10 +00:00
|
|
|
"name" => "Shared"));
|
2011-06-11 20:14:24 +00:00
|
|
|
|
2011-07-30 12:40:10 +00:00
|
|
|
?>
|