© Ufolep - CNS Sports Aériens & Modélisme CLAP - 2023/2024
Catégorie: Lettres_de_SAM
Fichiers: Page 5 sur 5
Fichiers: 49
pdf0lettre_sam_11POPULAIRE
(0 votes)
Date 2018-11-26
Taille du fichier 1.34 MB
Téléchargement 472
pdf1lettre_sam_10POPULAIRE
(0 votes)
Date 2018-11-25
Taille du fichier 113.23 KB
Téléchargement 417
pdf2lettre_sam_09POPULAIRE
(0 votes)
Date 2018-11-16
Taille du fichier 177.36 KB
Téléchargement 480
pdf3lettre_sam_08POPULAIRE
(0 votes)
Date 2018-08-16
Taille du fichier 500.08 KB
Téléchargement 499
pdf4lettre_sam_07POPULAIRE
(0 votes)
Date 2018-07-16
Taille du fichier 483.31 KB
Téléchargement 479
pdf5lettre_sam_05POPULAIRE
(0 votes)
Date 2018-05-16
Taille du fichier 143.86 KB
Téléchargement 500
(0 votes)
Date 2018-03-16
Taille du fichier 298.98 KB
Téléchargement 495
pdf7lettre_sam_02POPULAIRE
(0 votes)
Date 2018-02-16
Taille du fichier 118.95 KB
Téléchargement 438
pdf8lettre_sam_01POPULAIRE
(0 votes)
Date 2018-01-16
Taille du fichier 980.64 KB
Téléchargement 469
l<#xpNl[,I8qNl}YݜprNlA,(p_Nl#Jv_NlstNhl"0\NpNPl^NlآM8l䂋pP N lL@*HwNl @4ߐTNllFXNl}_INlQz3xNlHQMNluVK@yNxlʶ{~{N`l12d}NHl9ϼ0~N0lvAjNlBwO@NlN`(GNl7㯋XHNlFJ9ѸxNlˎh0bg[Nl3Xr NlBFaZNpl4dЀNXlC娟N** * @return array */ public function getMessages() { $messages = $this->messages; foreach ($this->aggregates as $collector) { $msgs = array_map(function ($m) use ($collector) { $m['collector'] = $collector->getName(); return $m; }, $collector->getMessages()); $messages = array_merge($messages, $msgs); } // sort messages by their timestamp usort($messages, function ($a, $b) { if ($a['time'] === $b['time']) { return 0; } return $a['time'] < $b['time'] ? -1 : 1; }); return $messages; } /** * @param $level * @param $message * @param array $context */ public function log($level, $message, array $context = array()): void { // For string messages, interpolate the context following PSR-3 if (is_string($message)) { $message = $this->interpolate($message, $context); } $this->addMessage($message, $level); } /** * Interpolates context values into the message placeholders. * * @param $message * @param array $context * @return string */ function interpolate($message, array $context = array()) { // build a replacement array with braces around the context keys $replace = array(); foreach ($context as $key => $val) { // check that the value can be cast to string if (!is_array($val) && (!is_object($val) || method_exists($val, '__toString'))) { $replace['{' . $key . '}'] = $val; } } // interpolate replacement values into the message and return return strtr($message, $replace); } /** * Deletes all messages */ public function clear() { $this->messages = array(); } /** * @return array */ public function collect() { $messages = $this->getMessages(); return array( 'count' => count($messages), 'messages' => $messages ); } /** * @return string */ public function getName() { return $this->name; } /** * @return array */ public function getAssets() { return $this->isHtmlVarDumperUsed() ? $this->getVarDumper()->getAssets() : array(); } /** * @return array */ public function getWidgets() { $name = $this->getName(); return array( "$name" => array( 'icon' => 'list-alt', "widget" => "PhpDebugBar.Widgets.MessagesWidget", "map" => "$name.messages", "default" => "[]" ), "$name:badge" => array( "map" => "$name.count", "default" => "null" ) ); } } Attempted to load class "MessagesCollector" from namespace "DebugBar\DataCollector". Did you forget a "use" statement for another namespace? (500 Whoops, looks like something went wrong.)

ClassNotFoundError

HTTP 500 Whoops, looks like something went wrong.

Attempted to load class "MessagesCollector" from namespace "DebugBar\DataCollector".
Did you forget a "use" statement for another namespace?

Exception

Symfony\Component\ErrorHandler\Error\ ClassNotFoundError

  1.         }
  2.         $logDeprecated     $this->getApplication()->get('log_deprecated'0);
  3.         $logDeprecatedCore $this->params->get('log-deprecated-core'0);
  4.         $this->debugBar->addCollector(new MessagesCollector('log'));
  5.         if ($logDeprecated) {
  6.             $this->debugBar->addCollector(new MessagesCollector('deprecated'));
  7.             $this->debugBar->addCollector(new MessagesCollector('deprecation-notes'));
  8.         }
  1.                 $this->getDatabase()->disconnect();
  2.                 $this->debugBar->addCollector(new QueryCollector($this->params$this->queryMonitor$this->sqlShowProfileEach$this->explains));
  3.             }
  4.             if ($this->showLogs) {
  5.                 $this->collectLogs();
  6.             }
  7.         }
  8.         if ($this->debugLang) {
  9.             $this->debugBar->addCollector(new LanguageFilesCollector($this->params));
  1.                 if ($event->isStopped())
  2.                 {
  3.                     return $event;
  4.                 }
  5.                 $listener($event);
  6.             }
  7.         }
  8.         return $event;
  9.     }
  1.         // Send the application response.
  2.         $this->respond();
  3.         // Trigger the onAfterRespond event.
  4.         $this->getDispatcher()->dispatch('onAfterRespond');
  5.     }
  6.     /**
  7.      * Check if the user is required to reset their password.
  8.      *
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/includes/app.php') in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/index.php (line 32)
  1.  * define() is used rather than "const" to not error for PHP 5.2 and lower
  2.  */
  3. define('_JEXEC'1);
  4. // Run the application - All executable code should be triggered through this file
  5. require_once dirname(__FILE__) . '/includes/app.php';

Stack Trace

ClassNotFoundError
Symfony\Component\ErrorHandler\Error\ClassNotFoundError:
Attempted to load class "MessagesCollector" from namespace "DebugBar\DataCollector".
Did you forget a "use" statement for another namespace?

  at /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/plugins/system/debug/src/Extension/Debug.php:564
  at Joomla\Plugin\System\Debug\Extension\Debug->collectLogs()
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/plugins/system/debug/src/Extension/Debug.php:319)
  at Joomla\Plugin\System\Debug\Extension\Debug->onAfterRespond(object(Event))
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/event/src/Dispatcher.php:486)
  at Joomla\Event\Dispatcher->dispatch('onAfterRespond')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/CMSApplication.php:332)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/includes/app.php:61)
  at require_once('/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/includes/app.php')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/index.php:32)