Exemple #1
0
 /**
  * Show TopMessage if shop was recently restored to restore point
  *
  * @return void
  */
 protected function checkRestorationFlag()
 {
     $restored = \Includes\Decorator\Utils\PersistentInfo::get('restoredTo');
     \Includes\Decorator\Utils\PersistentInfo::discard('restoredTo');
     if (!empty($restored)) {
         \XLite\Core\TopMessage::addInfo('The system has been restored to the selected snapshot of X', array('date' => \XLite\Core\Converter::formatTime($restored)));
     }
 }