server/lib/public/App.php

108 lines
3.3 KiB
PHP
Raw Normal View History

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>
* @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>
*
2015-03-26 10:44:34 +00:00
* @license AGPL-3.0
*
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.
*
2015-03-26 10:44:34 +00: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 10:44:34 +00:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
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/>
*
*/
/**
* 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
* @since 4.0.0
* @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
/**
* 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
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
/**
* 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 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
/**
* 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)
* @return array|null
* @deprecated 14.0.0 ise \OC::$server->getAppManager()->getAppInfo($appId)
* @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
/**
* checks whether or not an app is enabled
* @param string $app
* @return boolean
2012-09-08 13:54:30 +00: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 13:54:30 +00:00
*/
public static function isEnabled( $app ) {
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
* @param string $app
* @return string
* @since 4.0.0
* @deprecated 14.0.0 use \OC::$server->getAppManager()->getAppVersion($appId)
2012-09-08 13:54:30 +00:00
*/
public static function getAppVersion( $app ) {
return \OC::$server->getAppManager()->getAppVersion($app);
2012-09-08 13:54:30 +00:00
}
2012-05-01 22:50:26 +00:00
}