2017-06-01 09:37:23 -04:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2017-06-01 09:37:23 -04:00
|
|
|
/**
|
2024-06-06 03:55:47 -04:00
|
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2017-06-01 09:37:23 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCA\Files_External\Settings;
|
|
|
|
|
|
|
|
|
|
use OCA\Files_External\Service\BackendService;
|
|
|
|
|
use OCA\Files_External\Service\UserGlobalStoragesService;
|
|
|
|
|
use OCP\IL10N;
|
|
|
|
|
use OCP\IURLGenerator;
|
|
|
|
|
use OCP\IUserSession;
|
|
|
|
|
|
|
|
|
|
class PersonalSection extends Section {
|
|
|
|
|
public function __construct(
|
|
|
|
|
IURLGenerator $url,
|
|
|
|
|
IL10N $l,
|
2024-10-18 06:04:22 -04:00
|
|
|
private IUserSession $userSession,
|
|
|
|
|
private UserGlobalStoragesService $userGlobalStoragesService,
|
|
|
|
|
private BackendService $backendService,
|
2017-06-01 09:37:23 -04:00
|
|
|
) {
|
|
|
|
|
parent::__construct($url, $l);
|
|
|
|
|
}
|
2017-07-05 05:45:40 -04:00
|
|
|
}
|