2013-08-21 03:02:15 +04:00
|
|
|
<?php
|
2020-07-17 11:17:18 +03:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2013-08-31 03:41:24 +04:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2013-08-31 03:41:24 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-08-31 03:41:24 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2013-08-31 03:41:24 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-08-31 03:41:24 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-08-31 03:41:24 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-08-31 03:41:24 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-08-21 03:02:15 +04:00
|
|
|
namespace OCP\AppFramework;
|
|
|
|
|
2013-08-31 23:34:29 +04:00
|
|
|
use OCP\IContainer;
|
2020-07-17 11:17:18 +03:00
|
|
|
use Psr\Container\ContainerInterface;
|
2013-08-21 03:02:15 +04:00
|
|
|
|
|
|
|
/**
|
2020-07-17 11:17:18 +03:00
|
|
|
* This is a tagging interface for a container that belongs to an app
|
|
|
|
*
|
|
|
|
* The interface currently extends IContainer, but this interface is deprecated as of Nextcloud 20,
|
|
|
|
* thus this interface won't extend it anymore once that was removed. So migrate to the ContainerInterface
|
|
|
|
* only.
|
2013-08-21 03:02:15 +04:00
|
|
|
*
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-08-21 03:02:15 +04:00
|
|
|
*/
|
2020-07-17 11:17:18 +03:00
|
|
|
interface IAppContainer extends ContainerInterface, IContainer {
|
2013-08-21 03:02:15 +04:00
|
|
|
|
2013-09-25 12:30:48 +04:00
|
|
|
/**
|
|
|
|
* used to return the appname of the set application
|
|
|
|
* @return string the name of your application
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2020-07-13 12:18:14 +03:00
|
|
|
* @deprecated 20.0.0
|
2013-09-25 12:30:48 +04:00
|
|
|
*/
|
2017-07-22 22:10:16 +03:00
|
|
|
public function getAppName();
|
2013-09-25 12:30:48 +04:00
|
|
|
|
2013-08-21 03:02:15 +04:00
|
|
|
/**
|
2013-08-31 23:34:29 +04:00
|
|
|
* @return \OCP\IServerContainer
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2020-07-13 12:18:14 +03:00
|
|
|
* @deprecated 20.0.0
|
2013-08-21 03:02:15 +04:00
|
|
|
*/
|
2017-07-22 22:10:16 +03:00
|
|
|
public function getServer();
|
2013-09-25 12:30:48 +04:00
|
|
|
|
|
|
|
/**
|
2014-04-10 01:59:57 +04:00
|
|
|
* @param string $middleWare
|
2013-09-25 12:30:48 +04:00
|
|
|
* @return boolean
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2020-07-13 12:18:14 +03:00
|
|
|
* @deprecated 20.0.0 use \OCP\AppFramework\Bootstrap\IRegistrationContext::registerMiddleware
|
2013-09-25 12:30:48 +04:00
|
|
|
*/
|
2017-07-22 22:10:16 +03:00
|
|
|
public function registerMiddleWare($middleWare);
|
2013-10-07 02:33:54 +04:00
|
|
|
|
2015-07-22 14:04:56 +03:00
|
|
|
/**
|
|
|
|
* Register a capability
|
|
|
|
*
|
|
|
|
* @param string $serviceName e.g. 'OCA\Files\Capabilities'
|
|
|
|
* @since 8.2.0
|
2020-07-13 12:18:14 +03:00
|
|
|
* @deprecated 20.0.0 use \OCP\AppFramework\Bootstrap\IRegistrationContext::registerCapability
|
2015-07-22 14:04:56 +03:00
|
|
|
*/
|
2020-04-10 15:19:56 +03:00
|
|
|
public function registerCapability($serviceName);
|
2013-08-21 03:02:15 +04:00
|
|
|
}
|