2014-02-07 16:42:18 +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>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @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 <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2014-02-07 16:42:18 +04:00
|
|
|
*/
|
|
|
|
namespace OCP;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class provides an easy way for apps to store config values in the
|
|
|
|
* database.
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-02-07 16:42:18 +04:00
|
|
|
*/
|
|
|
|
interface IAppConfig {
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* check if a key is set in the appconfig
|
2014-02-07 16:42:18 +04:00
|
|
|
* @param string $app
|
|
|
|
* @param string $key
|
|
|
|
* @return bool
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-02-07 16:42:18 +04:00
|
|
|
*/
|
|
|
|
public function hasKey($app, $key);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get multiply values, either the app or key can be used as wildcard by setting it to false
|
|
|
|
*
|
2014-02-28 16:53:41 +04:00
|
|
|
* @param string|false $key
|
|
|
|
* @param string|false $app
|
2015-01-16 21:31:15 +03:00
|
|
|
* @return array|false
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-02-07 16:42:18 +04:00
|
|
|
*/
|
|
|
|
public function getValues($app, $key);
|
|
|
|
|
2017-01-11 13:42:36 +03:00
|
|
|
/**
|
|
|
|
* get all values of the app or and filters out sensitive data
|
|
|
|
*
|
|
|
|
* @param string $app
|
|
|
|
* @return array
|
|
|
|
* @since 12.0.0
|
|
|
|
*/
|
|
|
|
public function getFilteredValues($app);
|
|
|
|
|
2014-02-07 16:42:18 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get all apps using the config
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of app ids
|
2014-02-07 16:42:18 +04:00
|
|
|
*
|
|
|
|
* This function returns a list of all apps that have at least one
|
|
|
|
* entry in the appconfig table.
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-02-07 16:42:18 +04:00
|
|
|
*/
|
|
|
|
public function getApps();
|
|
|
|
}
|