nextcloud/lib/public/App.php

112 lines
3.4 KiB
PHP
Raw Normal View History

2012-05-02 02:50:26 +04:00
<?php
/**
2016-07-21 18:07:57 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
2015-03-26 13:44:34 +03:00
* @author Bart Visscher <bartv@thisnet.nl>
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
2016-05-26 20:56:05 +03:00
* @author Frank Karlitschek <frank@karlitschek.de>
* @author Georg Ehrke <oc.list@georgehrke.com>
2016-07-21 18:07:57 +03:00
* @author Joas Schilling <coding@schilljs.com>
2015-03-26 13:44:34 +03:00
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
* @author Julius Härtl <jus@bitgrid.net>
2015-03-26 13:44:34 +03:00
* @author Morris Jobke <hey@morrisjobke.de>
2016-01-12 17:02:16 +03:00
* @author Robin McCorkell <robin@mccorkell.me.uk>
* @author Roeland Jago Douma <roeland@famdouma.nl>
2015-03-26 13:44:34 +03:00
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
2015-03-26 13:44:34 +03:00
* @license AGPL-3.0
*
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.
*
2015-03-26 13:44:34 +03:00
* This program is distributed in the hope that it will be useful,
* 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.
*
2015-03-26 13:44:34 +03:00
* 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/>
*
*/
/**
* Public interface of ownCloud for apps to use.
* App Class
*
*/
2012-08-29 10:38:33 +04:00
// use OCP namespace for all classes that are considered public.
2012-05-02 02:50:26 +04:00
// This means that they should be used by apps instead of the internal ownCloud classes
2012-05-02 02:50:26 +04:00
namespace OCP;
2012-05-19 12:36:57 +04:00
/**
* This class provides functions to manage apps in ownCloud
* @since 4.0.0
* @deprecated 14.0.0
2012-05-19 12:36:57 +04:00
*/
2012-05-02 02:50:26 +04:00
class App {
2012-09-08 17:52:29 +04:00
2012-09-08 17:54:30 +04:00
/**
* Register a Configuration Screen that should appear in the personal settings section.
* @param string $app appid
* @param string $page page to be included
* @return void
* @since 4.0.0
* @deprecated 14.0.0 Use settings section in appinfo.xml to register personal admin sections
*/
public static function registerPersonal($app, $page) {
\OC_App::registerPersonal($app, $page);
2012-09-08 17:54:30 +04:00
}
2012-09-08 17:52:29 +04:00
2012-09-08 17:54:30 +04:00
/**
* Register a Configuration Screen that should appear in the Admin section.
* @param string $app string appid
* @param string $page string page to be included
* @return void
* @since 4.0.0
* @deprecated 14.0.0 Use settings section in appinfo.xml to register admin sections
2012-09-08 17:54:30 +04:00
*/
public static function registerAdmin($app, $page) {
\OC_App::registerAdmin($app, $page);
2012-09-08 17:54:30 +04:00
}
2012-09-08 17:52:29 +04:00
2012-09-08 17:54:30 +04:00
/**
* Read app metadata from the info.xml file
2012-09-08 17:54:30 +04:00
* @param string $app id of the app or the path of the info.xml file
2013-09-20 23:43:17 +04:00
* @param boolean $path (optional)
* @return array|null
* @deprecated 14.0.0 ise \OC::$server->getAppManager()->getAppInfo($appId)
* @since 4.0.0
*/
public static function getAppInfo($app, $path = false) {
return \OC_App::getAppInfo($app, $path);
2012-09-08 17:54:30 +04:00
}
2012-09-08 17:52:29 +04:00
2012-09-08 17:54:30 +04:00
/**
* checks whether or not an app is enabled
* @param string $app
* @return boolean
2012-09-08 17:54:30 +04:00
*
* This function checks whether or not an app is enabled.
* @since 4.0.0
* @deprecated 13.0.0 use \OC::$server->getAppManager()->isEnabledForUser($appId)
2012-09-08 17:54:30 +04:00
*/
public static function isEnabled($app) {
return \OC::$server->getAppManager()->isEnabledForUser($app);
2012-09-08 17:54:30 +04:00
}
2012-09-08 17:52:29 +04:00
2012-09-08 17:54:30 +04:00
/**
2016-02-10 13:04:12 +03:00
* Get the last version of the app from appinfo/info.xml
* @param string $app
* @return string
* @since 4.0.0
* @deprecated 14.0.0 use \OC::$server->getAppManager()->getAppVersion($appId)
2012-09-08 17:54:30 +04:00
*/
public static function getAppVersion($app) {
return \OC::$server->getAppManager()->getAppVersion($app);
2012-09-08 17:54:30 +04:00
}
2012-05-02 02:50:26 +04:00
}