本文整理汇总了PHP中Token::search方法的典型用法代码示例。如果您正苦于以下问题:PHP Token::search方法的具体用法?PHP Token::search怎么用?PHP Token::search使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Token
的用法示例。
在下文中一共展示了Token::search方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: purge
public static function purge()
{
$whereClause = 'action_count=0 OR (action_count=-1 AND expiration<:time)';
$params = array(array('id' => ':time', 'value' => time()));
$tokens = Token::search($whereClause, $params);
foreach ($tokens as $token) {
$token->delete();
}
}
示例2: checkRights
public static function checkRights($page, $action, $token)
{
loadClass('status');
loadClass('token');
loadClass('action');
loadClass('right');
loadClass('customer');
if (is_null($action)) {
Functions::setResponse(400);
}
$pagename = str_replace('.php', '', basename($page));
$actionName = $pagename . '-' . $action;
$whereClause = 'name=:name';
$params = array(array('id' => ':name', 'value' => $actionName));
$result = Action::search($whereClause, $params);
if (!count($result)) {
echo 'Please update actions and rights!';
Functions::setResponse(500);
}
$action = $result[0];
define('LOGGED_OUT_STATUS', 'standard');
$loggedOut = false;
if (is_null($token) || strtolower($token) == 'none') {
$loggedOut = true;
} else {
$whereClause = 'value=:value';
$params = array(array('id' => ':value', 'value' => $token));
$result = Token::search($whereClause, $params);
if (!count($result)) {
Functions::setResponse(498);
} else {
$token = $result[0];
$customer = new Customer($token->get('customerId'));
$status = new Status($customer->get('statusId'));
}
}
if ($loggedOut) {
$whereClause = 'name=:name';
$params = array(array('id' => ':name', 'value' => LOGGED_OUT_STATUS));
$result = Status::search($whereClause, $params);
if (!count($result)) {
Functions::setResponse(500);
}
$status = $result[0];
}
$whereClause = 'action_id=:action_id AND status_id=:status_id';
$params = array(array('id' => ':action_id', 'value' => $action->get('id')), array('id' => ':status_id', 'value' => $status->get('id')));
$result = Right::search($whereClause, $params);
if (!count($result)) {
Functions::setResponse(401);
}
if ($result[0]->get('right') == 'deny') {
Functions::setResponse(401);
}
}
示例3: logoutUser
function logoutUser()
{
$data = Functions::getJSONData();
$tokenValue = Functions::elt($data, 'tokenValue');
if (is_null($tokenValue)) {
Functions::setResponse(400);
}
$whereClause = 'value=:tokenValue';
$params = array(array('id' => ':tokenValue', 'value' => $tokenValue));
$results = Token::search($whereClause, $params);
if (!count($results)) {
return true;
}
foreach ($results as $result) {
$result->delete();
}
return true;
}