本文整理汇总了PHP中CSRFProtection::verifyRequest方法的典型用法代码示例。如果您正苦于以下问题:PHP CSRFProtection::verifyRequest方法的具体用法?PHP CSRFProtection::verifyRequest怎么用?PHP CSRFProtection::verifyRequest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CSRFProtection
的用法示例。
在下文中一共展示了CSRFProtection::verifyRequest方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: add_member_action
public function add_member_action()
{
CSRFProtection::verifyRequest();
$mp = MultiPersonSearch::load('settings_add_deputy');
$msg = array('error' => array(), 'success' => array());
foreach ($mp->getAddedUsers() as $_user_id) {
if (isDeputy($_user_id, $this->user->user_id)) {
$msg['error'][] = sprintf(_('%s ist bereits als Vertretung eingetragen.'), get_fullname($_user_id, 'full'));
} else {
if ($_user_id == $this->user->user_id) {
$msg['error'][] = _('Sie können sich nicht als Ihre eigene Vertretung eintragen!');
} else {
if (!addDeputy($_user_id, $this->user->user_id)) {
$msg['error'][] = _('Fehler beim Eintragen der Vertretung!');
} else {
$msg['success'][] = sprintf(_('%s wurde als Vertretung eingetragen.'), get_fullname($_user_id, 'full'));
}
}
}
}
// only show an error messagebox once.
if (!empty($msg['error'])) {
PageLayout::postMessage(MessageBox::error(_('Die gewünschte Operation konnte nicht ausgeführt werden.'), $msg['error']));
}
if (!empty($msg['success'])) {
PageLayout::postMessage(MessageBox::success(_('Die gewünschten Personen wurden als Ihre Vertretung eingetragen!'), $msg['success']));
}
$this->redirect('settings/deputies/index');
}
示例2: deleteGroup_action
function deleteGroup_action()
{
if (Request::submitted('delete')) {
CSRFProtection::verifyRequest();
$this->group->delete();
$this->redirect('contact/index');
}
}
示例3: deleteCycle_action
/**
* Deletes a cycle
*
* @param String $cycle_id Id of the cycle to be deleted
*/
public function deleteCycle_action($cycle_id)
{
CSRFProtection::verifyRequest();
$cycle = SeminarCycleDate::find($cycle_id);
if ($cycle !== null && $cycle->delete()) {
$this->course->createMessage(sprintf(_('Der regelmäßige Eintrag "%s" wurde gelöscht.'), '<b>' . $cycle->toString() . '</b>'));
}
$this->displayMessages();
$this->redirect('course/timesrooms/index');
}