本文整理汇总了PHP中OC_Appconfig::getValues方法的典型用法代码示例。如果您正苦于以下问题:PHP OC_Appconfig::getValues方法的具体用法?PHP OC_Appconfig::getValues怎么用?PHP OC_Appconfig::getValues使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OC_Appconfig
的用法示例。
在下文中一共展示了OC_Appconfig::getValues方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getAppTypes
/**
* get the types of an app
*
* @param string $app
* @return array
*/
private static function getAppTypes($app)
{
//load the cache
if (count(self::$appTypes) == 0) {
self::$appTypes = OC_Appconfig::getValues(false, 'types');
}
if (isset(self::$appTypes[$app])) {
return explode(',', self::$appTypes[$app]);
} else {
return array();
}
}
示例2: testGetValues
public function testGetValues()
{
$this->assertFalse(\OC_Appconfig::getValues('testapp', 'enabled'));
$query = \OC_DB::prepare('SELECT `configkey`, `configvalue` FROM `*PREFIX*appconfig` WHERE `appid` = ?');
$query->execute(array('testapp'));
$expected = array();
while ($row = $query->fetchRow()) {
$expected[$row['configkey']] = $row['configvalue'];
}
$values = \OC_Appconfig::getValues('testapp', false);
$this->assertEquals($expected, $values);
$query = \OC_DB::prepare('SELECT `appid`, `configvalue` FROM `*PREFIX*appconfig` WHERE `configkey` = ?');
$query->execute(array('enabled'));
$expected = array();
while ($row = $query->fetchRow()) {
$expected[$row['appid']] = $row['configvalue'];
}
$values = \OC_Appconfig::getValues(false, 'enabled');
$this->assertEquals($expected, $values);
}