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-06-12 00:14:24 +04:00
|
|
|
|
2011-08-18 01:44:10 +04:00
|
|
|
?>
|