コード例 #1
0
 /**
  * The index notify action
  *
  * @param \DERHANSEN\SfEventMgt\Domain\Model\Event $event Event
  *
  * @return void
  */
 public function indexNotifyAction(Event $event)
 {
     $customNotifications = $this->settingsService->getCustomNotifications($this->settings);
     $logEntries = $this->customNotificationLogRepository->findByEvent($event);
     $this->view->assignMultiple(array('event' => $event, 'customNotifications' => $customNotifications, 'logEntries' => $logEntries));
 }