1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- /**
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @author Jörn Friedrich Dreyer <jfd@butonic.de>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- *
- * @copyright Copyright (c) 2015, ownCloud, Inc.
- * @license AGPL-3.0
- *
- * 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.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OCP\AppFramework;
- use OCP\AppFramework\IApi;
- use OCP\IContainer;
- /**
- * Class IAppContainer
- * @package OCP\AppFramework
- *
- * This container interface provides short cuts for app developers to access predefined app service.
- */
- interface IAppContainer extends IContainer {
- /**
- * used to return the appname of the set application
- * @return string the name of your application
- */
- function getAppName();
- /**
- * @deprecated implements only deprecated methods
- * @return IApi
- */
- function getCoreApi();
- /**
- * @return \OCP\IServerContainer
- */
- function getServer();
- /**
- * @param string $middleWare
- * @return boolean
- */
- function registerMiddleWare($middleWare);
- /**
- * @deprecated use IUserSession->isLoggedIn()
- * @return boolean
- */
- function isLoggedIn();
- /**
- * @deprecated use IGroupManager->isAdmin($userId)
- * @return boolean
- * @deprecated use the groupmanager instead to find out if the user is in
- * the admin group
- */
- function isAdminUser();
- /**
- * @deprecated use the ILogger instead
- * @param string $message
- * @param string $level
- * @return mixed
- */
- function log($message, $level);
- }
|