当前位置: 首页>>代码示例>>PHP>>正文


PHP CSRFProtection::verifyRequest方法代码示例

本文整理汇总了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');
 }
开发者ID:ratbird,项目名称:hope,代码行数:29,代码来源:deputies.php

示例2: deleteGroup_action

 function deleteGroup_action()
 {
     if (Request::submitted('delete')) {
         CSRFProtection::verifyRequest();
         $this->group->delete();
         $this->redirect('contact/index');
     }
 }
开发者ID:ratbird,项目名称:hope,代码行数:8,代码来源:contact.php

示例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');
 }
开发者ID:ratbird,项目名称:hope,代码行数:15,代码来源:timesrooms.php


注:本文中的CSRFProtection::verifyRequest方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。