Realizované projekty

Za dobu existence realizoval Region Beskydy celou řadu úspěšných projektů. Níže si můžete prohlédnout, co se podařilo vytvořit. Děkujeme partnerům za spolupráci.

Projekty realizované Regionem Beskydy od roku 2008

Název projektu
Financování v rámci
Termín realizace
Přeshraniční spolupráce v BESKYDECH
OPPS CZ - PL Fond mikroprojektů
4/2015 – 6/2015
Cestovní ruch v Euroregionu Beskydy
OPPS SK – CZ Fond mikroprojektů
1/2015 - 5/2015
Budoucnost CZ-PL spolupráce v Euroregionu Beskydy
OPPS CZ - PL Fond mikroprojektů
9/2014 – 12/2014
Společně v Euroregionu Beskydy
OPPS SK – CZ Fond mikroprojektů
9/2014 – 12/2014
Slyšíme a vnímáme Euroregion Beskydy
OPPS SK – CZ Fond mikroprojektů
4/2014 – 12/2014

V české a slovenské části Beskyd se na vás těší herci Norbert Lichý a Marián Labuda. Oba pro vás připravili unikátního mluveného průvodce, ve kterém popisují třicet nádherných míst.

EUROREGION BESKYDY – energie bez hranic
OPPS SK – CZ Fond mikroprojektů
1/2014 – 9/2014
GOOO! EUROREGION BESKYDY
OPPS SK – CZ Fond mikroprojektů
10/2013 – 9/2014
EUREGIO PL – CZ
OPPS CZ - PL
1/2012 – 12/2014
Křížem krážem Euroregionem Beskydy
OPPS SK – CZ Fond mikroprojektů
9/2012 – 8/2013
Destinační management TO Beskydy-Valašsko v MSK
ROP Moravskoslezsko
9/2010 – 3/2012
Učíme se u sousedů v Polsku
OPPS CZ - PL Fond mikroprojektů
4/2012 – 10/2013
Vítejte v Euroregionu Beskydy
OPPS CZ - PL
6/2011 – 8/2014
Učíme se u sousedů na Slovensku
OPPS SK – CZ Fond mikroprojektů
4/2011 – 11/2011
Putování za tradicí a krásou československých Beskyd
OPPS SK – CZ Fond mikroprojektů
12/2010 – 8/2011
Informační kiosky
Dotace MSK
10/2009 - 8/2010
Kouzlo pohádky ve dřevě zakleté
OPPS SK – CZ Fond mikroprojektů
4/2010 – 10/2010
10 let Euroregionu Beskydy
OPPS SK – CZ Fond mikroprojektů
3/2010 – 11/2010
Cezhraničný turizmus v Euroregióne Beskydy
OPPS SK-CZ
5/2009 - 10/2010
Společně poznáváme Euroregion Beskydy a jeho sídelní města
OPPS CZ - PL
5/2009 – 1/2011
Dny CZ-PL partnerství v Euroregionu Beskydy
OPPS CZ - PL Fond mikroprojektů
10/2008 – 7/2009
Attempted to load class "CliDumper" from namespace "Symfony\Component\VarDumper\Dumper". 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 "CliDumper" from namespace "Symfony\Component\VarDumper\Dumper".
Did you forget a "use" statement for another namespace?

Exception

Symfony\Component\ErrorHandler\Error\ ClassNotFoundError

  1. * DataFormatter constructor.
  2. */
  3. public function __construct()
  4. {
  5. $this->cloner = new VarCloner();
  6. $this->dumper = new CliDumper();
  7. }
  8. /**
  9. * @param $data
  10. * @return string
  1. * @return DataFormatter
  2. */
  3. public static function getDefaultDataFormatter(): DataFormatter
  4. {
  5. if (self::$defaultDataFormatter === null) {
  6. self::$defaultDataFormatter = new DataFormatter();
  7. }
  8. return self::$defaultDataFormatter;
  9. }
AbstractDataCollector::getDefaultDataFormatter() in /var/www/clients/client16/web101/web/plugins/system/debug/src/AbstractDataCollector.php (line 65)
  1. * @return DataFormatter
  2. */
  3. public function getDataFormatter(): DataFormatter
  4. {
  5. if ($this->dataFormater === null) {
  6. $this->dataFormater = self::getDefaultDataFormatter();
  7. }
  8. return $this->dataFormater;
  9. }
  1. $value = '***redacted***';
  2. });
  3. foreach ($data as $key => $value) {
  4. $this->sessionData[$key] = $this->getDataFormatter()->formatVar($value);
  5. }
  6. }
  7. return ['data' => $this->sessionData];
  8. }
  1. public function __construct($params, $collect = false)
  2. {
  3. parent::__construct($params);
  4. if ($collect) {
  5. $this->collect();
  6. }
  7. }
  8. /**
  9. * Called by the DebugBar when data needs to be collected
  1. if ($this->params->get('request', 1)) {
  2. $this->debugBar->addCollector(new RequestDataCollector());
  3. }
  4. if ($this->params->get('session', 1)) {
  5. $this->debugBar->addCollector(new SessionCollector($this->params, true));
  6. }
  7. if ($this->params->get('profile', 1)) {
  8. $this->debugBar->addCollector((new ProfileCollector($this->params))->setRequestEndTime($endTime));
  9. }
  1. foreach ($this->listeners[$event->getName()] as $listener) {
  2. if ($event->isStopped()) {
  3. return $event;
  4. }
  5. $listener($event);
  6. }
  7. }
  8. return $event;
  9. }
  1. $dispatcher = $this->getDispatcher();
  2. } catch (\UnexpectedValueException $exception) {
  3. return null;
  4. }
  5. return $dispatcher->dispatch($eventName, $event ?: new ApplicationEvent($eventName, $this));
  6. }
  7. /**
  8. * Method to run the application routines.
  9. *
  1. // Send the application response.
  2. $this->respond();
  3. // Trigger the onAfterRespond event.
  4. $this->dispatchEvent(
  5. 'onAfterRespond',
  6. new AfterRespondEvent('onAfterRespond', ['subject' => $this])
  7. );
  8. }
CMSApplication->execute() in /var/www/clients/client16/web101/web/includes/app.php (line 58)
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application = $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/var/www/clients/client16/web101/web/includes/app.php') in /var/www/clients/client16/web101/web/index.php (line 51)
  1. // ... die
  2. die();
  3. }
  4. // Run the application - All executable code should be triggered through this file
  5. require_once __DIR__ . '/includes/app.php';

Stack Trace

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

  at /var/www/clients/client16/web101/web/libraries/vendor/php-debugbar/php-debugbar/src/DebugBar/DataFormatter/DataFormatter.php:28
  at DebugBar\DataFormatter\DataFormatter->__construct()
     (/var/www/clients/client16/web101/web/plugins/system/debug/src/AbstractDataCollector.php:80)
  at Joomla\Plugin\System\Debug\AbstractDataCollector::getDefaultDataFormatter()
     (/var/www/clients/client16/web101/web/plugins/system/debug/src/AbstractDataCollector.php:65)
  at Joomla\Plugin\System\Debug\AbstractDataCollector->getDataFormatter()
     (/var/www/clients/client16/web101/web/plugins/system/debug/src/DataCollector/SessionCollector.php:87)
  at Joomla\Plugin\System\Debug\DataCollector\SessionCollector->collect()
     (/var/www/clients/client16/web101/web/plugins/system/debug/src/DataCollector/SessionCollector.php:58)
  at Joomla\Plugin\System\Debug\DataCollector\SessionCollector->__construct()
     (/var/www/clients/client16/web101/web/plugins/system/debug/src/Extension/Debug.php:307)
  at Joomla\Plugin\System\Debug\Extension\Debug->onAfterRespond()
     (/var/www/clients/client16/web101/web/libraries/vendor/joomla/event/src/Dispatcher.php:454)
  at Joomla\Event\Dispatcher->dispatch()
     (/var/www/clients/client16/web101/web/libraries/vendor/joomla/application/src/AbstractApplication.php:99)
  at Joomla\Application\AbstractApplication->dispatchEvent()
     (/var/www/clients/client16/web101/web/libraries/src/Application/CMSApplication.php:347)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/var/www/clients/client16/web101/web/includes/app.php:58)
  at require_once('/var/www/clients/client16/web101/web/includes/app.php')
     (/var/www/clients/client16/web101/web/index.php:51)