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");
|
2011-08-09 18:34:00 +04:00
|
|
|
OC_Util::addScript("3rdparty", "chosen/chosen.jquery.min");
|
2011-08-02 21:30:18 +04:00
|
|
|
OC_Util::addStyle( 'files_sharing', 'sharing' );
|
2011-08-09 18:34:00 +04:00
|
|
|
OC_Util::addStyle("3rdparty", "chosen/chosen");
|
2011-08-09 18:45:12 +04:00
|
|
|
OC_App::addNavigationEntry(array(
|
2011-07-29 20:20:01 +04:00
|
|
|
"id" => "files_sharing_list",
|
2011-08-09 18:45:12 +04:00
|
|
|
"order" => 2,
|
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
|
|
|
?>
|