Move classes from outside lib/ to PSR-4
This commit is contained in:
parent
c5ade48c04
commit
5001036fd4
|
@ -26,15 +26,13 @@
|
|||
*
|
||||
*/
|
||||
|
||||
namespace OCA\Files_Sharing\Appinfo;
|
||||
|
||||
$l = \OC::$server->getL10N('files_sharing');
|
||||
|
||||
\OC::$CLASSPATH['OC_Share_Backend_File'] = 'files_sharing/lib/share/file.php';
|
||||
\OC::$CLASSPATH['OC_Share_Backend_Folder'] = 'files_sharing/lib/share/folder.php';
|
||||
\OC::$CLASSPATH['OC\Files\Storage\Shared'] = 'files_sharing/lib/sharedstorage.php';
|
||||
|
||||
$application = new Application();
|
||||
$application = new \OCA\Files_Sharing\AppInfo\Application();
|
||||
$application->registerMountProviders();
|
||||
|
||||
\OCA\Files_Sharing\Helper::registerHooks();
|
||||
|
|
|
@ -21,6 +21,8 @@ Turning the feature off removes shared files and folders on the server for all s
|
|||
<files>public.php</files>
|
||||
</public>
|
||||
|
||||
<namespace>Files_Sharing</namespace>
|
||||
|
||||
<background-jobs>
|
||||
<job>OCA\Files_sharing\Lib\DeleteOrphanedSharesJob</job>
|
||||
<job>OCA\Files_sharing\ExpireSharesJob</job>
|
||||
|
|
|
@ -24,11 +24,10 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
namespace OCA\Files_Sharing\AppInfo;
|
||||
|
||||
use OCP\API;
|
||||
|
||||
$application = new Application();
|
||||
$application = new \OCA\Files_Sharing\AppInfo\Application();
|
||||
$application->registerRoutes($this, [
|
||||
'resources' => [
|
||||
'ExternalShares' => ['url' => '/api/externalShares'],
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace OCA\Files_Sharing\Tests;
|
|||
|
||||
use OC\Files\Filesystem;
|
||||
use OCA\Files\Share;
|
||||
use OCA\Files_Sharing\Appinfo\Application;
|
||||
use OCA\Files_Sharing\AppInfo\Application;
|
||||
|
||||
/**
|
||||
* Class Test_Files_Sharing_Base
|
||||
|
|
Loading…
Reference in New Issue