2012-05-01 22:50:26 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 15:07:57 +00:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-05-26 17:56:05 +00:00
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2017-11-06 19:15:27 +00:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2016-07-21 15:07:57 +00:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-01-12 14:02:16 +00:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2013-11-03 12:51:39 +00:00
|
|
|
*
|
2015-03-26 10:44:34 +00:00
|
|
|
* @license AGPL-3.0
|
2013-11-03 12:51:39 +00:00
|
|
|
*
|
2015-03-26 10:44:34 +00: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 12:51:39 +00:00
|
|
|
*
|
2015-03-26 10:44:34 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-11-03 12:51:39 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 10:44:34 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-11-03 12:51:39 +00:00
|
|
|
*
|
2015-03-26 10:44:34 +00: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/>
|
2013-11-03 12:51:39 +00:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 10:37:37 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Public interface of ownCloud for apps to use.
|
|
|
|
* App Class
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-08-29 06:38:33 +00:00
|
|
|
// use OCP namespace for all classes that are considered public.
|
2012-05-01 22:50:26 +00:00
|
|
|
// This means that they should be used by apps instead of the internal ownCloud classes
|
|
|
|
namespace OCP;
|
|
|
|
|
2012-05-19 08:36:57 +00:00
|
|
|
/**
|
|
|
|
* This class provides functions to manage apps in ownCloud
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 4.0.0
|
2018-01-29 12:32:11 +00:00
|
|
|
* @deprecated 14.0.0
|
2012-05-19 08:36:57 +00:00
|
|
|
*/
|
2012-05-01 22:50:26 +00:00
|
|
|
class App {
|
2012-09-08 13:52:29 +00:00
|
|
|
|
|
|
|
|
2012-09-08 13:54:30 +00:00
|
|
|
/**
|
2013-10-16 22:07:29 +00:00
|
|
|
* Register a Configuration Screen that should appear in the personal settings section.
|
2014-05-11 20:51:30 +00:00
|
|
|
* @param string $app appid
|
|
|
|
* @param string $page page to be included
|
2014-02-08 10:47:55 +00:00
|
|
|
* @return void
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 4.0.0
|
2018-01-29 12:32:11 +00:00
|
|
|
* @deprecated 14.0.0 Use settings section in appinfo.xml to register personal admin sections
|
2012-09-08 13:54:30 +00:00
|
|
|
*/
|
|
|
|
public static function registerPersonal( $app, $page ) {
|
2013-01-06 22:57:27 +00:00
|
|
|
\OC_App::registerPersonal( $app, $page );
|
2012-09-08 13:54:30 +00:00
|
|
|
}
|
2012-09-08 13:52:29 +00:00
|
|
|
|
2012-09-08 13:54:30 +00:00
|
|
|
/**
|
2013-10-16 22:07:29 +00:00
|
|
|
* Register a Configuration Screen that should appear in the Admin section.
|
2014-02-06 15:30:58 +00:00
|
|
|
* @param string $app string appid
|
|
|
|
* @param string $page string page to be included
|
2014-02-08 10:47:55 +00:00
|
|
|
* @return void
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 4.0.0
|
2018-01-29 12:32:11 +00:00
|
|
|
* @deprecated 14.0.0 Use settings section in appinfo.xml to register admin sections
|
2012-09-08 13:54:30 +00:00
|
|
|
*/
|
|
|
|
public static function registerAdmin( $app, $page ) {
|
2013-01-06 22:57:27 +00:00
|
|
|
\OC_App::registerAdmin( $app, $page );
|
2012-09-08 13:54:30 +00:00
|
|
|
}
|
2012-09-08 13:52:29 +00:00
|
|
|
|
2012-09-08 13:54:30 +00:00
|
|
|
/**
|
2013-10-16 22:07:29 +00:00
|
|
|
* Read app metadata from the info.xml file
|
2012-09-08 13:54:30 +00:00
|
|
|
* @param string $app id of the app or the path of the info.xml file
|
2013-09-20 19:43:17 +00:00
|
|
|
* @param boolean $path (optional)
|
2016-03-30 21:29:26 +00:00
|
|
|
* @return array|null
|
2018-01-29 12:09:32 +00:00
|
|
|
* @deprecated 14.0.0 ise \OC::$server->getAppManager()->getAppInfo($appId)
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 4.0.0
|
2012-09-08 13:54:30 +00:00
|
|
|
*/
|
|
|
|
public static function getAppInfo( $app, $path=false ) {
|
|
|
|
return \OC_App::getAppInfo( $app, $path);
|
|
|
|
}
|
2012-09-08 13:52:29 +00:00
|
|
|
|
2012-09-08 13:54:30 +00:00
|
|
|
/**
|
2013-10-16 22:07:29 +00:00
|
|
|
* checks whether or not an app is enabled
|
2014-02-06 15:30:58 +00:00
|
|
|
* @param string $app
|
2013-10-16 22:07:29 +00:00
|
|
|
* @return boolean
|
2012-09-08 13:54:30 +00:00
|
|
|
*
|
|
|
|
* This function checks whether or not an app is enabled.
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 4.0.0
|
2017-10-23 21:31:17 +00:00
|
|
|
* @deprecated 13.0.0 use \OC::$server->getAppManager()->isEnabledForUser($appId)
|
2012-09-08 13:54:30 +00:00
|
|
|
*/
|
|
|
|
public static function isEnabled( $app ) {
|
2017-10-23 21:31:17 +00:00
|
|
|
return \OC::$server->getAppManager()->isEnabledForUser( $app );
|
2012-09-08 13:54:30 +00:00
|
|
|
}
|
2012-09-08 13:52:29 +00:00
|
|
|
|
2012-09-08 13:54:30 +00:00
|
|
|
/**
|
2016-02-10 10:04:12 +00:00
|
|
|
* Get the last version of the app from appinfo/info.xml
|
2014-02-08 10:47:55 +00:00
|
|
|
* @param string $app
|
2014-02-06 15:30:58 +00:00
|
|
|
* @return string
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 4.0.0
|
2018-01-29 12:09:32 +00:00
|
|
|
* @deprecated 14.0.0 use \OC::$server->getAppManager()->getAppVersion($appId)
|
2012-09-08 13:54:30 +00:00
|
|
|
*/
|
|
|
|
public static function getAppVersion( $app ) {
|
2018-01-29 12:09:32 +00:00
|
|
|
return \OC::$server->getAppManager()->getAppVersion($app);
|
2012-09-08 13:54:30 +00:00
|
|
|
}
|
2012-05-01 22:50:26 +00:00
|
|
|
}
|