{
public function __construct()
{
global $post;
$this->post = new PostCarreau($post->ID);
}
/**
* List of views served by this composer.
*
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
<?php
/** WordPress view bootstrapper */
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';
{
public function __construct()
{
global $post;
$this->post = new PostCarreau($post->ID);
}
/**
* List of views served by this composer.
*
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?php echo $__env->make('taxonomy-tempsforts', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php /**PATH /home/carreauf/staging/web/app/themes/lecarreau2k22/resources/views/taxonomy-location.blade.php ENDPATH**/ ?>
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
<?php
/** WordPress view bootstrapper */
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';
{
public function __construct()
{
global $post;
$this->post = new PostCarreau($post->ID);
}
/**
* List of views served by this composer.
*
* @throws \ErrorException
*/
public function handleError($level, $message, $file = '', $line = 0, $context = [])
{
try {
parent::handleError($level, $message, $file, $line, $context);
} catch (Throwable $e) {
if (! apply_filters('acorn/throw_error_exception', true, $e)) {
return false;
}
{
public function __construct()
{
global $post;
$this->post = new PostCarreau($post->ID);
}
/**
* List of views served by this composer.
*
throw $e;
}
array_pop($this->buildStack);
return $reflector->newInstanceArgs($instances);
}
/**
* Resolve all of the dependencies from the ReflectionParameters.
*
// We're ready to instantiate an instance of the concrete type registered for
// the binding. This will instantiate the types, as well as resolve any of
// its "nested" dependencies recursively until all have gotten resolved.
if ($this->isBuildable($concrete, $abstract)) {
$object = $this->build($concrete);
} else {
$object = $this->make($concrete);
}
// If we defined any extenders for this type, we'll need to spin through them
*/
protected function resolve($abstract, $parameters = [], $raiseEvents = true)
{
$this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));
return parent::resolve($abstract, $parameters, $raiseEvents);
}
/**
* Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
*
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
public function make($abstract, array $parameters = [])
{
return $this->resolve($abstract, $parameters);
}
/**
* {@inheritdoc}
*
*/
public function make($abstract, array $parameters = [])
{
$this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));
return parent::make($abstract, $parameters);
}
/**
* Resolve the given type from the container.
*
// Once we have the class and method name, we can build the Closure to resolve
// the instance out of the IoC container and call the method on it with the
// given arguments that are passed to the Closure as the composer's data.
return function () use ($class, $method) {
return $this->container->make($class)->{$method}(...func_get_args());
};
}
/**
* Parse a class based composer name.
return function ($event, $payload) use ($listener, $wildcard) {
if ($wildcard) {
return $listener($event, $payload);
}
return $listener(...array_values($payload));
};
}
/**
* Create a class based listener using the IoC container.
}
$responses = [];
foreach ($this->getListeners($event) as $listener) {
$response = $listener($event, $payload);
// If a response is returned from the listener and event halting is enabled
// we will just return this response, and not call the rest of the event
// listeners. Otherwise we will add the response on the response list.
if ($halt && ! is_null($response)) {
* @param \Illuminate\Contracts\View\View $view
* @return void
*/
public function callComposer(ViewContract $view)
{
$this->events->dispatch('composing: '.$view->name(), [$view]);
}
/**
* Call the creator for a given view.
*
// We will keep track of the amount of views being rendered so we can flush
// the section after the complete rendering operation is done. This will
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?php $__env->startSection('content'); ?>
<?php echo $__env->make('partials.headers.header-spectacle', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php if(isset($term->highlighttitle)): ?>
<div class="entrytext">
<div class="entrytext__inner">
<div class="entrytext__inner_text entry">
<h2><?php echo e($term->highlighttitle); ?></h2>
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?php echo $__env->make('taxonomy-tempsforts', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php /**PATH /home/carreauf/staging/web/app/themes/lecarreau2k22/resources/views/taxonomy-location.blade.php ENDPATH**/ ?>
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
<?php
/** WordPress view bootstrapper */
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';
[3/3]
ViewException
|
---|
Illuminate\View\ViewException: Trying to get property 'ID' of non-object (View: /home/carreauf/staging/web/app/themes/lecarreau2k22/resources/views/taxonomy-tempsforts.blade.php) (View: /home/carreauf/staging/web/app/themes/lecarreau2k22/resources/views/taxonomy-tempsforts.blade.php) at /home/carreauf/staging/web/app/themes/lecarreau2k22/app/View/Composers/SingleProgrammation.php:16 at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 3) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/carreauf/staging/web/app/cache/acorn/framework/views/9dd8946c1aa57f774aacc2f871301f26e2ea8e1e.php', array('__env' => object(Factory), 'app' => object(Application), 'isShow' => false, 'gallery' => object(Collection), 'term' => object(TermCarreau), 'shows' => object(Collection), 'displayDateSentence' => false, 'siteName' => 'Le Carreau', 'lien_billeterie' => object(stdClass), 'programme' => object(stdClass), 'intro_newsletter' => '<p style="text-align: center;">Bekommen Sie per Mail alle Neuigkeiten über die Vorstellungen und das Leben des Theaters: melden Sie sie an unserem Newsletter!</p>', 'contact' => object(stdClass), 'language_switcher' => array('fr' => array('code' => 'fr', 'id' => '4', 'native_name' => 'Français', 'major' => '1', 'active' => 0, 'default_locale' => 'fr_FR', 'encode_url' => '0', 'tag' => 'fr', 'missing' => 1, 'translated_name' => 'Französisch', 'url' => 'https://staging.carreau-forbach.com', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/fr.png', 'language_code' => 'fr'), 'de' => array('code' => 'de', 'id' => '3', 'native_name' => 'Deutsch', 'major' => '1', 'active' => '1', 'default_locale' => 'de_DE', 'encode_url' => '0', 'tag' => 'de', 'missing' => 0, 'translated_name' => 'Deutsch', 'url' => 'https://staging.carreau-forbach.com/de/lieux/ancienne-synagogue-forbach-de/', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/de.png', 'language_code' => 'de')), 'social_links' => array('medium' => array('url' => '', 'picto' => 'medium-m'), 'facebook' => array('url' => 'https://www.facebook.com/LeCarreauScenenationale/', 'picto' => 'facebook-f'), 'twitter' => array('url' => 'de', 'picto' => 'twitter'), 'instagram' => array('url' => 'https://www.instagram.com/lecarreau_scene_nationale/', 'picto' => 'instagram')), 'mentions_legales' => 'https://staging.carreau-forbach.com/mentions-legales/', 'season' => object(Season))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get('/home/carreauf/staging/web/app/themes/lecarreau2k22/resources/views/taxonomy-location.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'isShow' => false, 'gallery' => object(Collection), 'term' => object(TermCarreau), 'shows' => object(Collection), 'displayDateSentence' => false, 'siteName' => 'Le Carreau', 'lien_billeterie' => object(stdClass), 'programme' => object(stdClass), 'intro_newsletter' => '<p style="text-align: center;">Bekommen Sie per Mail alle Neuigkeiten über die Vorstellungen und das Leben des Theaters: melden Sie sie an unserem Newsletter!</p>', 'contact' => object(stdClass), 'language_switcher' => array('fr' => array('code' => 'fr', 'id' => '4', 'native_name' => 'Français', 'major' => '1', 'active' => 0, 'default_locale' => 'fr_FR', 'encode_url' => '0', 'tag' => 'fr', 'missing' => 1, 'translated_name' => 'Französisch', 'url' => 'https://staging.carreau-forbach.com', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/fr.png', 'language_code' => 'fr'), 'de' => array('code' => 'de', 'id' => '3', 'native_name' => 'Deutsch', 'major' => '1', 'active' => '1', 'default_locale' => 'de_DE', 'encode_url' => '0', 'tag' => 'de', 'missing' => 0, 'translated_name' => 'Deutsch', 'url' => 'https://staging.carreau-forbach.com/de/lieux/ancienne-synagogue-forbach-de/', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/de.png', 'language_code' => 'de')), 'social_links' => array('medium' => array('url' => '', 'picto' => 'medium-m'), 'facebook' => array('url' => 'https://www.facebook.com/LeCarreauScenenationale/', 'picto' => 'facebook-f'), 'twitter' => array('url' => 'de', 'picto' => 'twitter'), 'instagram' => array('url' => 'https://www.instagram.com/lecarreau_scene_nationale/', 'picto' => 'instagram')), 'mentions_legales' => 'https://staging.carreau-forbach.com/mentions-legales/', 'season' => object(Season))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/carreauf/staging/web/app/themes/lecarreau2k22/index.php:1) at include('/home/carreauf/staging/web/app/themes/lecarreau2k22/index.php') (/home/carreauf/staging/web/wp/wp-includes/template-loader.php:106) at require_once('/home/carreauf/staging/web/wp/wp-includes/template-loader.php') (/home/carreauf/staging/web/wp/wp-blog-header.php:19) at require('/home/carreauf/staging/web/wp/wp-blog-header.php') (/home/carreauf/staging/web/index.php:5) |
[2/3]
ViewException
|
---|
Illuminate\View\ViewException: Trying to get property 'ID' of non-object (View: /home/carreauf/staging/web/app/themes/lecarreau2k22/resources/views/taxonomy-tempsforts.blade.php) at /home/carreauf/staging/web/app/themes/lecarreau2k22/app/View/Composers/SingleProgrammation.php:16 at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ErrorException), 4) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/carreauf/staging/web/app/cache/acorn/framework/views/c0d436620cf04ed418d603e280821ad00e992f81.php', array('__env' => object(Factory), 'app' => object(Application), 'isShow' => false, 'gallery' => object(Collection), 'term' => object(TermCarreau), 'shows' => object(Collection), 'displayDateSentence' => false, 'siteName' => 'Le Carreau', 'lien_billeterie' => object(stdClass), 'programme' => object(stdClass), 'intro_newsletter' => '<p style="text-align: center;">Bekommen Sie per Mail alle Neuigkeiten über die Vorstellungen und das Leben des Theaters: melden Sie sie an unserem Newsletter!</p>', 'contact' => object(stdClass), 'language_switcher' => array('fr' => array('code' => 'fr', 'id' => '4', 'native_name' => 'Français', 'major' => '1', 'active' => 0, 'default_locale' => 'fr_FR', 'encode_url' => '0', 'tag' => 'fr', 'missing' => 1, 'translated_name' => 'Französisch', 'url' => 'https://staging.carreau-forbach.com', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/fr.png', 'language_code' => 'fr'), 'de' => array('code' => 'de', 'id' => '3', 'native_name' => 'Deutsch', 'major' => '1', 'active' => '1', 'default_locale' => 'de_DE', 'encode_url' => '0', 'tag' => 'de', 'missing' => 0, 'translated_name' => 'Deutsch', 'url' => 'https://staging.carreau-forbach.com/de/lieux/ancienne-synagogue-forbach-de/', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/de.png', 'language_code' => 'de')), 'social_links' => array('medium' => array('url' => '', 'picto' => 'medium-m'), 'facebook' => array('url' => 'https://www.facebook.com/LeCarreauScenenationale/', 'picto' => 'facebook-f'), 'twitter' => array('url' => 'de', 'picto' => 'twitter'), 'instagram' => array('url' => 'https://www.instagram.com/lecarreau_scene_nationale/', 'picto' => 'instagram')), 'mentions_legales' => 'https://staging.carreau-forbach.com/mentions-legales/', 'season' => object(Season))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get('/home/carreauf/staging/web/app/themes/lecarreau2k22/resources/views/taxonomy-tempsforts.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'isShow' => false, 'gallery' => object(Collection), 'term' => object(TermCarreau), 'shows' => object(Collection), 'displayDateSentence' => false, 'siteName' => 'Le Carreau', 'lien_billeterie' => object(stdClass), 'programme' => object(stdClass), 'intro_newsletter' => '<p style="text-align: center;">Bekommen Sie per Mail alle Neuigkeiten über die Vorstellungen und das Leben des Theaters: melden Sie sie an unserem Newsletter!</p>', 'contact' => object(stdClass), 'language_switcher' => array('fr' => array('code' => 'fr', 'id' => '4', 'native_name' => 'Français', 'major' => '1', 'active' => 0, 'default_locale' => 'fr_FR', 'encode_url' => '0', 'tag' => 'fr', 'missing' => 1, 'translated_name' => 'Französisch', 'url' => 'https://staging.carreau-forbach.com', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/fr.png', 'language_code' => 'fr'), 'de' => array('code' => 'de', 'id' => '3', 'native_name' => 'Deutsch', 'major' => '1', 'active' => '1', 'default_locale' => 'de_DE', 'encode_url' => '0', 'tag' => 'de', 'missing' => 0, 'translated_name' => 'Deutsch', 'url' => 'https://staging.carreau-forbach.com/de/lieux/ancienne-synagogue-forbach-de/', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/de.png', 'language_code' => 'de')), 'social_links' => array('medium' => array('url' => '', 'picto' => 'medium-m'), 'facebook' => array('url' => 'https://www.facebook.com/LeCarreauScenenationale/', 'picto' => 'facebook-f'), 'twitter' => array('url' => 'de', 'picto' => 'twitter'), 'instagram' => array('url' => 'https://www.instagram.com/lecarreau_scene_nationale/', 'picto' => 'instagram')), 'mentions_legales' => 'https://staging.carreau-forbach.com/mentions-legales/', 'season' => object(Season))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/carreauf/staging/web/app/cache/acorn/framework/views/9dd8946c1aa57f774aacc2f871301f26e2ea8e1e.php:1) at require('/home/carreauf/staging/web/app/cache/acorn/framework/views/9dd8946c1aa57f774aacc2f871301f26e2ea8e1e.php') (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire('/home/carreauf/staging/web/app/cache/acorn/framework/views/9dd8946c1aa57f774aacc2f871301f26e2ea8e1e.php', array('__env' => object(Factory), 'app' => object(Application), 'isShow' => false, 'gallery' => object(Collection), 'term' => object(TermCarreau), 'shows' => object(Collection), 'displayDateSentence' => false, 'siteName' => 'Le Carreau', 'lien_billeterie' => object(stdClass), 'programme' => object(stdClass), 'intro_newsletter' => '<p style="text-align: center;">Bekommen Sie per Mail alle Neuigkeiten über die Vorstellungen und das Leben des Theaters: melden Sie sie an unserem Newsletter!</p>', 'contact' => object(stdClass), 'language_switcher' => array('fr' => array('code' => 'fr', 'id' => '4', 'native_name' => 'Français', 'major' => '1', 'active' => 0, 'default_locale' => 'fr_FR', 'encode_url' => '0', 'tag' => 'fr', 'missing' => 1, 'translated_name' => 'Französisch', 'url' => 'https://staging.carreau-forbach.com', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/fr.png', 'language_code' => 'fr'), 'de' => array('code' => 'de', 'id' => '3', 'native_name' => 'Deutsch', 'major' => '1', 'active' => '1', 'default_locale' => 'de_DE', 'encode_url' => '0', 'tag' => 'de', 'missing' => 0, 'translated_name' => 'Deutsch', 'url' => 'https://staging.carreau-forbach.com/de/lieux/ancienne-synagogue-forbach-de/', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/de.png', 'language_code' => 'de')), 'social_links' => array('medium' => array('url' => '', 'picto' => 'medium-m'), 'facebook' => array('url' => 'https://www.facebook.com/LeCarreauScenenationale/', 'picto' => 'facebook-f'), 'twitter' => array('url' => 'de', 'picto' => 'twitter'), 'instagram' => array('url' => 'https://www.instagram.com/lecarreau_scene_nationale/', 'picto' => 'instagram')), 'mentions_legales' => 'https://staging.carreau-forbach.com/mentions-legales/', 'season' => object(Season))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/carreauf/staging/web/app/cache/acorn/framework/views/9dd8946c1aa57f774aacc2f871301f26e2ea8e1e.php', array('__env' => object(Factory), 'app' => object(Application), 'isShow' => false, 'gallery' => object(Collection), 'term' => object(TermCarreau), 'shows' => object(Collection), 'displayDateSentence' => false, 'siteName' => 'Le Carreau', 'lien_billeterie' => object(stdClass), 'programme' => object(stdClass), 'intro_newsletter' => '<p style="text-align: center;">Bekommen Sie per Mail alle Neuigkeiten über die Vorstellungen und das Leben des Theaters: melden Sie sie an unserem Newsletter!</p>', 'contact' => object(stdClass), 'language_switcher' => array('fr' => array('code' => 'fr', 'id' => '4', 'native_name' => 'Français', 'major' => '1', 'active' => 0, 'default_locale' => 'fr_FR', 'encode_url' => '0', 'tag' => 'fr', 'missing' => 1, 'translated_name' => 'Französisch', 'url' => 'https://staging.carreau-forbach.com', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/fr.png', 'language_code' => 'fr'), 'de' => array('code' => 'de', 'id' => '3', 'native_name' => 'Deutsch', 'major' => '1', 'active' => '1', 'default_locale' => 'de_DE', 'encode_url' => '0', 'tag' => 'de', 'missing' => 0, 'translated_name' => 'Deutsch', 'url' => 'https://staging.carreau-forbach.com/de/lieux/ancienne-synagogue-forbach-de/', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/de.png', 'language_code' => 'de')), 'social_links' => array('medium' => array('url' => '', 'picto' => 'medium-m'), 'facebook' => array('url' => 'https://www.facebook.com/LeCarreauScenenationale/', 'picto' => 'facebook-f'), 'twitter' => array('url' => 'de', 'picto' => 'twitter'), 'instagram' => array('url' => 'https://www.instagram.com/lecarreau_scene_nationale/', 'picto' => 'instagram')), 'mentions_legales' => 'https://staging.carreau-forbach.com/mentions-legales/', 'season' => object(Season))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get('/home/carreauf/staging/web/app/themes/lecarreau2k22/resources/views/taxonomy-location.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'isShow' => false, 'gallery' => object(Collection), 'term' => object(TermCarreau), 'shows' => object(Collection), 'displayDateSentence' => false, 'siteName' => 'Le Carreau', 'lien_billeterie' => object(stdClass), 'programme' => object(stdClass), 'intro_newsletter' => '<p style="text-align: center;">Bekommen Sie per Mail alle Neuigkeiten über die Vorstellungen und das Leben des Theaters: melden Sie sie an unserem Newsletter!</p>', 'contact' => object(stdClass), 'language_switcher' => array('fr' => array('code' => 'fr', 'id' => '4', 'native_name' => 'Français', 'major' => '1', 'active' => 0, 'default_locale' => 'fr_FR', 'encode_url' => '0', 'tag' => 'fr', 'missing' => 1, 'translated_name' => 'Französisch', 'url' => 'https://staging.carreau-forbach.com', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/fr.png', 'language_code' => 'fr'), 'de' => array('code' => 'de', 'id' => '3', 'native_name' => 'Deutsch', 'major' => '1', 'active' => '1', 'default_locale' => 'de_DE', 'encode_url' => '0', 'tag' => 'de', 'missing' => 0, 'translated_name' => 'Deutsch', 'url' => 'https://staging.carreau-forbach.com/de/lieux/ancienne-synagogue-forbach-de/', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/de.png', 'language_code' => 'de')), 'social_links' => array('medium' => array('url' => '', 'picto' => 'medium-m'), 'facebook' => array('url' => 'https://www.facebook.com/LeCarreauScenenationale/', 'picto' => 'facebook-f'), 'twitter' => array('url' => 'de', 'picto' => 'twitter'), 'instagram' => array('url' => 'https://www.instagram.com/lecarreau_scene_nationale/', 'picto' => 'instagram')), 'mentions_legales' => 'https://staging.carreau-forbach.com/mentions-legales/', 'season' => object(Season))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/carreauf/staging/web/app/themes/lecarreau2k22/index.php:1) at include('/home/carreauf/staging/web/app/themes/lecarreau2k22/index.php') (/home/carreauf/staging/web/wp/wp-includes/template-loader.php:106) at require_once('/home/carreauf/staging/web/wp/wp-includes/template-loader.php') (/home/carreauf/staging/web/wp/wp-blog-header.php:19) at require('/home/carreauf/staging/web/wp/wp-blog-header.php') (/home/carreauf/staging/web/index.php:5) |
[1/3]
ErrorException
|
---|
ErrorException: Trying to get property 'ID' of non-object at /home/carreauf/staging/web/app/themes/lecarreau2k22/app/View/Composers/SingleProgrammation.php:16 at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8, 'Trying to get property \'ID\' of non-object', '/home/carreauf/staging/web/app/themes/lecarreau2k22/app/View/Composers/SingleProgrammation.php', 16, array('post' => null)) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/roots/acorn/src/Roots/Acorn/Bootstrap/HandleExceptions.php:54) at Roots\Acorn\Bootstrap\HandleExceptions->handleError(8, 'Trying to get property \'ID\' of non-object', '/home/carreauf/staging/web/app/themes/lecarreau2k22/app/View/Composers/SingleProgrammation.php', 16, array('post' => null)) (/home/carreauf/staging/web/app/themes/lecarreau2k22/app/View/Composers/SingleProgrammation.php:16) at App\View\Composers\SingleProgrammation->__construct() at ReflectionClass->newInstanceArgs(array()) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/container/Container.php:917) at Illuminate\Container\Container->build('App\\View\\Composers\\SingleProgrammation') (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/container/Container.php:758) at Illuminate\Container\Container->resolve('App\\View\\Composers\\SingleProgrammation', array(), true) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/roots/acorn/src/Illuminate/Foundation/Application.php:851) at Illuminate\Foundation\Application->resolve('App\\View\\Composers\\SingleProgrammation', array()) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/container/Container.php:694) at Illuminate\Container\Container->make('App\\View\\Composers\\SingleProgrammation', array()) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/roots/acorn/src/Illuminate/Foundation/Application.php:836) at Illuminate\Foundation\Application->make('App\\View\\Composers\\SingleProgrammation') (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/Concerns/ManagesEvents.php:124) at Illuminate\View\Factory->Illuminate\View\Concerns\{closure}(object(View)) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/events/Dispatcher.php:404) at Illuminate\Events\Dispatcher->Illuminate\Events\{closure}('composing: partials.headers.header-spectacle', array(object(View))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/events/Dispatcher.php:249) at Illuminate\Events\Dispatcher->dispatch('composing: partials.headers.header-spectacle', array(object(View))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/Concerns/ManagesEvents.php:177) at Illuminate\View\Factory->callComposer(object(View)) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:120) at Illuminate\View\View->renderContents() (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/carreauf/staging/web/app/cache/acorn/framework/views/c0d436620cf04ed418d603e280821ad00e992f81.php:2) at require('/home/carreauf/staging/web/app/cache/acorn/framework/views/c0d436620cf04ed418d603e280821ad00e992f81.php') (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire('/home/carreauf/staging/web/app/cache/acorn/framework/views/c0d436620cf04ed418d603e280821ad00e992f81.php', array('__env' => object(Factory), 'app' => object(Application), 'isShow' => false, 'gallery' => object(Collection), 'term' => object(TermCarreau), 'shows' => object(Collection), 'displayDateSentence' => false, 'siteName' => 'Le Carreau', 'lien_billeterie' => object(stdClass), 'programme' => object(stdClass), 'intro_newsletter' => '<p style="text-align: center;">Bekommen Sie per Mail alle Neuigkeiten über die Vorstellungen und das Leben des Theaters: melden Sie sie an unserem Newsletter!</p>', 'contact' => object(stdClass), 'language_switcher' => array('fr' => array('code' => 'fr', 'id' => '4', 'native_name' => 'Français', 'major' => '1', 'active' => 0, 'default_locale' => 'fr_FR', 'encode_url' => '0', 'tag' => 'fr', 'missing' => 1, 'translated_name' => 'Französisch', 'url' => 'https://staging.carreau-forbach.com', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/fr.png', 'language_code' => 'fr'), 'de' => array('code' => 'de', 'id' => '3', 'native_name' => 'Deutsch', 'major' => '1', 'active' => '1', 'default_locale' => 'de_DE', 'encode_url' => '0', 'tag' => 'de', 'missing' => 0, 'translated_name' => 'Deutsch', 'url' => 'https://staging.carreau-forbach.com/de/lieux/ancienne-synagogue-forbach-de/', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/de.png', 'language_code' => 'de')), 'social_links' => array('medium' => array('url' => '', 'picto' => 'medium-m'), 'facebook' => array('url' => 'https://www.facebook.com/LeCarreauScenenationale/', 'picto' => 'facebook-f'), 'twitter' => array('url' => 'de', 'picto' => 'twitter'), 'instagram' => array('url' => 'https://www.instagram.com/lecarreau_scene_nationale/', 'picto' => 'instagram')), 'mentions_legales' => 'https://staging.carreau-forbach.com/mentions-legales/', 'season' => object(Season))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/carreauf/staging/web/app/cache/acorn/framework/views/c0d436620cf04ed418d603e280821ad00e992f81.php', array('__env' => object(Factory), 'app' => object(Application), 'isShow' => false, 'gallery' => object(Collection), 'term' => object(TermCarreau), 'shows' => object(Collection), 'displayDateSentence' => false, 'siteName' => 'Le Carreau', 'lien_billeterie' => object(stdClass), 'programme' => object(stdClass), 'intro_newsletter' => '<p style="text-align: center;">Bekommen Sie per Mail alle Neuigkeiten über die Vorstellungen und das Leben des Theaters: melden Sie sie an unserem Newsletter!</p>', 'contact' => object(stdClass), 'language_switcher' => array('fr' => array('code' => 'fr', 'id' => '4', 'native_name' => 'Français', 'major' => '1', 'active' => 0, 'default_locale' => 'fr_FR', 'encode_url' => '0', 'tag' => 'fr', 'missing' => 1, 'translated_name' => 'Französisch', 'url' => 'https://staging.carreau-forbach.com', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/fr.png', 'language_code' => 'fr'), 'de' => array('code' => 'de', 'id' => '3', 'native_name' => 'Deutsch', 'major' => '1', 'active' => '1', 'default_locale' => 'de_DE', 'encode_url' => '0', 'tag' => 'de', 'missing' => 0, 'translated_name' => 'Deutsch', 'url' => 'https://staging.carreau-forbach.com/de/lieux/ancienne-synagogue-forbach-de/', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/de.png', 'language_code' => 'de')), 'social_links' => array('medium' => array('url' => '', 'picto' => 'medium-m'), 'facebook' => array('url' => 'https://www.facebook.com/LeCarreauScenenationale/', 'picto' => 'facebook-f'), 'twitter' => array('url' => 'de', 'picto' => 'twitter'), 'instagram' => array('url' => 'https://www.instagram.com/lecarreau_scene_nationale/', 'picto' => 'instagram')), 'mentions_legales' => 'https://staging.carreau-forbach.com/mentions-legales/', 'season' => object(Season))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get('/home/carreauf/staging/web/app/themes/lecarreau2k22/resources/views/taxonomy-tempsforts.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'isShow' => false, 'gallery' => object(Collection), 'term' => object(TermCarreau), 'shows' => object(Collection), 'displayDateSentence' => false, 'siteName' => 'Le Carreau', 'lien_billeterie' => object(stdClass), 'programme' => object(stdClass), 'intro_newsletter' => '<p style="text-align: center;">Bekommen Sie per Mail alle Neuigkeiten über die Vorstellungen und das Leben des Theaters: melden Sie sie an unserem Newsletter!</p>', 'contact' => object(stdClass), 'language_switcher' => array('fr' => array('code' => 'fr', 'id' => '4', 'native_name' => 'Français', 'major' => '1', 'active' => 0, 'default_locale' => 'fr_FR', 'encode_url' => '0', 'tag' => 'fr', 'missing' => 1, 'translated_name' => 'Französisch', 'url' => 'https://staging.carreau-forbach.com', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/fr.png', 'language_code' => 'fr'), 'de' => array('code' => 'de', 'id' => '3', 'native_name' => 'Deutsch', 'major' => '1', 'active' => '1', 'default_locale' => 'de_DE', 'encode_url' => '0', 'tag' => 'de', 'missing' => 0, 'translated_name' => 'Deutsch', 'url' => 'https://staging.carreau-forbach.com/de/lieux/ancienne-synagogue-forbach-de/', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/de.png', 'language_code' => 'de')), 'social_links' => array('medium' => array('url' => '', 'picto' => 'medium-m'), 'facebook' => array('url' => 'https://www.facebook.com/LeCarreauScenenationale/', 'picto' => 'facebook-f'), 'twitter' => array('url' => 'de', 'picto' => 'twitter'), 'instagram' => array('url' => 'https://www.instagram.com/lecarreau_scene_nationale/', 'picto' => 'instagram')), 'mentions_legales' => 'https://staging.carreau-forbach.com/mentions-legales/', 'season' => object(Season))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/carreauf/staging/web/app/cache/acorn/framework/views/9dd8946c1aa57f774aacc2f871301f26e2ea8e1e.php:1) at require('/home/carreauf/staging/web/app/cache/acorn/framework/views/9dd8946c1aa57f774aacc2f871301f26e2ea8e1e.php') (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire('/home/carreauf/staging/web/app/cache/acorn/framework/views/9dd8946c1aa57f774aacc2f871301f26e2ea8e1e.php', array('__env' => object(Factory), 'app' => object(Application), 'isShow' => false, 'gallery' => object(Collection), 'term' => object(TermCarreau), 'shows' => object(Collection), 'displayDateSentence' => false, 'siteName' => 'Le Carreau', 'lien_billeterie' => object(stdClass), 'programme' => object(stdClass), 'intro_newsletter' => '<p style="text-align: center;">Bekommen Sie per Mail alle Neuigkeiten über die Vorstellungen und das Leben des Theaters: melden Sie sie an unserem Newsletter!</p>', 'contact' => object(stdClass), 'language_switcher' => array('fr' => array('code' => 'fr', 'id' => '4', 'native_name' => 'Français', 'major' => '1', 'active' => 0, 'default_locale' => 'fr_FR', 'encode_url' => '0', 'tag' => 'fr', 'missing' => 1, 'translated_name' => 'Französisch', 'url' => 'https://staging.carreau-forbach.com', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/fr.png', 'language_code' => 'fr'), 'de' => array('code' => 'de', 'id' => '3', 'native_name' => 'Deutsch', 'major' => '1', 'active' => '1', 'default_locale' => 'de_DE', 'encode_url' => '0', 'tag' => 'de', 'missing' => 0, 'translated_name' => 'Deutsch', 'url' => 'https://staging.carreau-forbach.com/de/lieux/ancienne-synagogue-forbach-de/', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/de.png', 'language_code' => 'de')), 'social_links' => array('medium' => array('url' => '', 'picto' => 'medium-m'), 'facebook' => array('url' => 'https://www.facebook.com/LeCarreauScenenationale/', 'picto' => 'facebook-f'), 'twitter' => array('url' => 'de', 'picto' => 'twitter'), 'instagram' => array('url' => 'https://www.instagram.com/lecarreau_scene_nationale/', 'picto' => 'instagram')), 'mentions_legales' => 'https://staging.carreau-forbach.com/mentions-legales/', 'season' => object(Season))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/carreauf/staging/web/app/cache/acorn/framework/views/9dd8946c1aa57f774aacc2f871301f26e2ea8e1e.php', array('__env' => object(Factory), 'app' => object(Application), 'isShow' => false, 'gallery' => object(Collection), 'term' => object(TermCarreau), 'shows' => object(Collection), 'displayDateSentence' => false, 'siteName' => 'Le Carreau', 'lien_billeterie' => object(stdClass), 'programme' => object(stdClass), 'intro_newsletter' => '<p style="text-align: center;">Bekommen Sie per Mail alle Neuigkeiten über die Vorstellungen und das Leben des Theaters: melden Sie sie an unserem Newsletter!</p>', 'contact' => object(stdClass), 'language_switcher' => array('fr' => array('code' => 'fr', 'id' => '4', 'native_name' => 'Français', 'major' => '1', 'active' => 0, 'default_locale' => 'fr_FR', 'encode_url' => '0', 'tag' => 'fr', 'missing' => 1, 'translated_name' => 'Französisch', 'url' => 'https://staging.carreau-forbach.com', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/fr.png', 'language_code' => 'fr'), 'de' => array('code' => 'de', 'id' => '3', 'native_name' => 'Deutsch', 'major' => '1', 'active' => '1', 'default_locale' => 'de_DE', 'encode_url' => '0', 'tag' => 'de', 'missing' => 0, 'translated_name' => 'Deutsch', 'url' => 'https://staging.carreau-forbach.com/de/lieux/ancienne-synagogue-forbach-de/', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/de.png', 'language_code' => 'de')), 'social_links' => array('medium' => array('url' => '', 'picto' => 'medium-m'), 'facebook' => array('url' => 'https://www.facebook.com/LeCarreauScenenationale/', 'picto' => 'facebook-f'), 'twitter' => array('url' => 'de', 'picto' => 'twitter'), 'instagram' => array('url' => 'https://www.instagram.com/lecarreau_scene_nationale/', 'picto' => 'instagram')), 'mentions_legales' => 'https://staging.carreau-forbach.com/mentions-legales/', 'season' => object(Season))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get('/home/carreauf/staging/web/app/themes/lecarreau2k22/resources/views/taxonomy-location.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'isShow' => false, 'gallery' => object(Collection), 'term' => object(TermCarreau), 'shows' => object(Collection), 'displayDateSentence' => false, 'siteName' => 'Le Carreau', 'lien_billeterie' => object(stdClass), 'programme' => object(stdClass), 'intro_newsletter' => '<p style="text-align: center;">Bekommen Sie per Mail alle Neuigkeiten über die Vorstellungen und das Leben des Theaters: melden Sie sie an unserem Newsletter!</p>', 'contact' => object(stdClass), 'language_switcher' => array('fr' => array('code' => 'fr', 'id' => '4', 'native_name' => 'Français', 'major' => '1', 'active' => 0, 'default_locale' => 'fr_FR', 'encode_url' => '0', 'tag' => 'fr', 'missing' => 1, 'translated_name' => 'Französisch', 'url' => 'https://staging.carreau-forbach.com', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/fr.png', 'language_code' => 'fr'), 'de' => array('code' => 'de', 'id' => '3', 'native_name' => 'Deutsch', 'major' => '1', 'active' => '1', 'default_locale' => 'de_DE', 'encode_url' => '0', 'tag' => 'de', 'missing' => 0, 'translated_name' => 'Deutsch', 'url' => 'https://staging.carreau-forbach.com/de/lieux/ancienne-synagogue-forbach-de/', 'country_flag_url' => 'https://staging.carreau-forbach.com/app/plugins/sitepress-multilingual-cms/res/flags/de.png', 'language_code' => 'de')), 'social_links' => array('medium' => array('url' => '', 'picto' => 'medium-m'), 'facebook' => array('url' => 'https://www.facebook.com/LeCarreauScenenationale/', 'picto' => 'facebook-f'), 'twitter' => array('url' => 'de', 'picto' => 'twitter'), 'instagram' => array('url' => 'https://www.instagram.com/lecarreau_scene_nationale/', 'picto' => 'instagram')), 'mentions_legales' => 'https://staging.carreau-forbach.com/mentions-legales/', 'season' => object(Season))) (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/home/carreauf/staging/web/app/themes/lecarreau2k22/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/carreauf/staging/web/app/themes/lecarreau2k22/index.php:1) at include('/home/carreauf/staging/web/app/themes/lecarreau2k22/index.php') (/home/carreauf/staging/web/wp/wp-includes/template-loader.php:106) at require_once('/home/carreauf/staging/web/wp/wp-includes/template-loader.php') (/home/carreauf/staging/web/wp/wp-blog-header.php:19) at require('/home/carreauf/staging/web/wp/wp-blog-header.php') (/home/carreauf/staging/web/index.php:5) |