© Ufolep - CNS Sports Aériens & Modélisme CLAP - 2023/2024
Catégorie: Lettres_de_SAM
Fichiers: Page 1 sur 5
Fichiers: 49
Date 2024-10-01
Taille du fichier 758.7 KB
Téléchargement 26
Date 2024-03-31
Taille du fichier 782.44 KB
Téléchargement 83
pdf2lettre_sam_49POPULAIRE
(0 votes)
Date 2023-10-14
Taille du fichier 1.18 MB
Téléchargement 106
pdf3lettre_sam_48POPULAIRE
(0 votes)
Date 2023-06-01
Taille du fichier 998.4 KB
Téléchargement 125
pdf4lettre_sam_47POPULAIRE
(0 votes)
Date 2023-03-07
Taille du fichier 929.85 KB
Téléchargement 126
pdf5lettre_sam_46POPULAIRE
(0 votes)
Date 2022-11-12
Taille du fichier 2.08 MB
Téléchargement 165
pdf6lettre_sam_45POPULAIRE
(0 votes)
Date 2022-05-18
Taille du fichier 1.05 MB
Téléchargement 223
pdf7lettre_sam_44POPULAIRE
(0 votes)
Date 2022-02-24
Taille du fichier 719.34 KB
Téléchargement 247
pdf8lettre_sam_43POPULAIRE
(0 votes)
Date 2021-10-26
Taille du fichier 1.18 MB
Téléchargement 294
pdf9lettre_sam_42POPULAIRE
(0 votes)
Date 2021-07-24
Taille du fichier 1.18 MB
Téléchargement 336
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)