本文整理汇总了PHP中DatabaseManager::getValues方法的典型用法代码示例。如果您正苦于以下问题:PHP DatabaseManager::getValues方法的具体用法?PHP DatabaseManager::getValues怎么用?PHP DatabaseManager::getValues使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DatabaseManager
的用法示例。
在下文中一共展示了DatabaseManager::getValues方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addServerNotification
public function addServerNotification($pNotification, $forceReload = true)
{
if ($pNotification instanceof Notification) {
require_once dirname(__FILE__) . '/DatabaseManager.php';
$pNotification->setServerMessage(TRUE);
$databaseManager = new DatabaseManager();
$databaseManager->openTable('user_permissions', json_decode(DatabaseManager::$table3));
$notifications = $databaseManager->getValues(array("server_notify" => array("operator" => "=", "value" => "1")));
if (!empty($notifications) && is_array($notifications)) {
foreach ($notifications as $user) {
$userId = $user['userid'];
$this->addNotification($pNotification, $userId, false);
// reload will be called later
}
}
if ($forceReload) {
$this->forceReload();
}
}
}
示例2: getJwtInfoBySignature
public function getJwtInfoBySignature($signature, $userid)
{
$databaseAuthtokens = new DatabaseManager();
$json = json_decode(DatabaseManager::$table11);
$databaseAuthtokens->openTable("jwt", $json);
$arrayToken['user'] = array('operator' => '=', 'value' => $userid, 'type' => 'i');
$arrayToken['signature'] = array('operator' => '=', 'value' => $signature, 'type' => 's');
$resultToken1 = $databaseAuthtokens->getValues($arrayToken, 1);
return $resultToken1;
}
示例3: getSimpleStorage
function getSimpleStorage($name, $default = "", $device = TRUE, $timestamp = FALSE)
{
global $loginManager;
$databaseManager = new DatabaseManager();
$databaseManager->openTable("plugin_settings", DatabaseManager::$table8);
$pluginId = $this->getPluginName();
$authtoken = $loginManager->getAuthtoken();
$where = array("name" => array("value" => $name), "plugin" => array("value" => $pluginId));
if ($device) {
$where["authtoken"] = array("value" => $authtoken);
}
$result = $databaseManager->getValues($where, 1);
if (!empty($result) && !empty($result['value'])) {
return $result['value'];
}
return $default;
}