* @author Jörn Friedrich Dreyer * @author Morris Jobke * @author Thomas Müller * * @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 * */ 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); }