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>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2017-11-06 22:15:27 +03:00
|
|
|
* @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>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @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>
|
2019-12-03 21:57:53 +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-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-11-03 16:51:39 +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-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-11-03 16:51:39 +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-11-03 16:51:39 +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-11-03 16:51:39 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
2019-11-22 22:52:10 +03:00
|
|
|
|
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
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 4.0.0
|
2018-01-29 15:32:11 +03:00
|
|
|
* @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
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Register a Configuration Screen that should appear in the personal settings section.
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $app appid
|
|
|
|
* @param string $page page to be included
|
2014-02-08 14:47:55 +04:00
|
|
|
* @return void
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 4.0.0
|
2018-01-29 15:32:11 +03:00
|
|
|
* @deprecated 14.0.0 Use settings section in appinfo.xml to register personal admin sections
|
2020-04-08 23:24:54 +03:00
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public static function registerPersonal($app, $page) {
|
2020-04-09 17:07:47 +03:00
|
|
|
\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
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Register a Configuration Screen that should appear in the Admin section.
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $app string appid
|
|
|
|
* @param string $page string page to be included
|
2014-02-08 14:47:55 +04:00
|
|
|
* @return void
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 4.0.0
|
2018-01-29 15:32:11 +03:00
|
|
|
* @deprecated 14.0.0 Use settings section in appinfo.xml to register admin sections
|
2012-09-08 17:54:30 +04:00
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public static function registerAdmin($app, $page) {
|
2020-04-09 17:07:47 +03:00
|
|
|
\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
|
|
|
/**
|
2013-10-17 02:07:29 +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)
|
2016-03-31 00:29:26 +03:00
|
|
|
* @return array|null
|
2018-01-29 15:09:32 +03:00
|
|
|
* @deprecated 14.0.0 ise \OC::$server->getAppManager()->getAppInfo($appId)
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 4.0.0
|
2020-04-08 23:24:54 +03:00
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public static function getAppInfo($app, $path=false) {
|
2020-04-09 17:07:47 +03:00
|
|
|
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
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* checks whether or not an app is enabled
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $app
|
2013-10-17 02:07:29 +04:00
|
|
|
* @return boolean
|
2012-09-08 17:54:30 +04:00
|
|
|
*
|
|
|
|
* This function checks whether or not an app is enabled.
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 4.0.0
|
2017-10-24 00:31:17 +03:00
|
|
|
* @deprecated 13.0.0 use \OC::$server->getAppManager()->isEnabledForUser($appId)
|
2012-09-08 17:54:30 +04:00
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public static function isEnabled($app) {
|
2020-04-09 17:07:47 +03:00
|
|
|
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
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $app
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return string
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 4.0.0
|
2018-01-29 15:09:32 +03:00
|
|
|
* @deprecated 14.0.0 use \OC::$server->getAppManager()->getAppVersion($appId)
|
2012-09-08 17:54:30 +04:00
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public static function getAppVersion($app) {
|
2018-01-29 15:09:32 +03:00
|
|
|
return \OC::$server->getAppManager()->getAppVersion($app);
|
2012-09-08 17:54:30 +04:00
|
|
|
}
|
2012-05-02 02:50:26 +04:00
|
|
|
}
|