示例#1
0
 /**
  * Event called to display Dashboard notices in the notification queue
  *
  * @internal
  */
 public final function _onAdminNotices()
 {
     $queue = $this->internal_options->delayed_notices;
     if (!empty($queue)) {
         foreach ($queue as $notice) {
             AdminNotice::add($notice[0], $notice[1]);
         }
         $this->clearDelayedNotices();
     }
     AdminNotice::display();
 }