mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
42 lines
1.5 KiB
PHP
42 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace Kanboard\Subscriber;
|
|
|
|
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
|
|
|
|
class BootstrapSubscriber extends BaseSubscriber implements EventSubscriberInterface
|
|
{
|
|
public static function getSubscribedEvents()
|
|
{
|
|
return array(
|
|
'app.bootstrap' => 'execute',
|
|
);
|
|
}
|
|
|
|
public function execute()
|
|
{
|
|
$this->logger->debug('Subscriber executed: '.__METHOD__);
|
|
$this->languageModel->loadCurrentLanguage();
|
|
$this->timezoneModel->setCurrentTimezone();
|
|
$this->actionManager->attachEvents();
|
|
|
|
if ($this->userSession->isLogged()) {
|
|
$this->sessionStorage->hasSubtaskInProgress = $this->subtaskModel->hasSubtaskInProgress($this->userSession->getId());
|
|
}
|
|
}
|
|
|
|
public function __destruct()
|
|
{
|
|
if (DEBUG) {
|
|
foreach ($this->db->getLogMessages() as $message) {
|
|
$this->logger->debug('SQL: ' . $message);
|
|
}
|
|
|
|
$this->logger->debug('APP: nb_queries={nb}', array('nb' => $this->db->getStatementHandler()->getNbQueries()));
|
|
$this->logger->debug('APP: rendering_time={time}', array('time' => microtime(true) - $this->request->getStartTime()));
|
|
$this->logger->debug('APP: memory_usage='.$this->helper->text->bytes(memory_get_usage()));
|
|
$this->logger->debug('APP: uri='.$this->request->getUri());
|
|
$this->logger->debug('###############################################');
|
|
}
|
|
}
|
|
}
|