本文整理匯總了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;
}