© Ufolep - CNS Sports Aériens & Modélisme CLAP - 2023/2024
Catégorie: ModAero
Fichiers: Page 1 sur 2
Fichiers: 11
(0 votes)
Date 2018-11-16
Taille du fichier 214.89 KB
Téléchargement 520
Date 2018-11-16
Taille du fichier 305.84 KB
Téléchargement 498
pdf226_fuseesPOPULAIRE
(0 votes)
Date 2018-11-16
Taille du fichier 272.67 KB
Téléchargement 482
(0 votes)
Date 2018-11-16
Taille du fichier 904.48 KB
Téléchargement 545
(0 votes)
Date 2018-11-16
Taille du fichier 323.97 KB
Téléchargement 504
(0 votes)
Date 2018-11-16
Taille du fichier 496.86 KB
Téléchargement 515
pdf625_avions_rcPOPULAIRE
(0 votes)
Date 2018-11-16
Taille du fichier 327.56 KB
Téléchargement 507
(0 votes)
Date 2018-11-16
Taille du fichier 339.39 KB
Téléchargement 483
pdf823_vcc_groupePOPULAIRE
(0 votes)
Date 2018-11-16
Taille du fichier 369.09 KB
Téléchargement 491
pdf921_vol_librePOPULAIRE
(0 votes)
Date 2018-11-16
Taille du fichier 307.86 KB
Téléchargement 504
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)