* @param stdClass $args An object of wp_nav_menu() arguments.
* @param int $depth Depth of menu item. Used for padding.
*/
$title = apply_filters( 'nav_menu_item_title', $title, $menu_item, $args, $depth );
$item_output = $args->before;
$item_output .= '<a' . $attributes . '>';
$item_output .= $args->link_before . $title . $args->link_after;
$item_output .= '</a>';
$item_output .= $args->after;
// 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
<body>
<noscript><iframe defer src="https://www.googletagmanager.com/ns.html?id=GTM-WQT6VXZ" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<?php wp_body_open(); ?>
<?php do_action('get_header'); ?>
<?= \Roots\view(\Roots\app('sage.view'), \Roots\app('sage.data'))->render(); ?>
<?php do_action('get_footer'); ?>
<?php wp_footer(); ?>
</body>
</html>
*
* @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';
}
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
* @param stdClass $args An object of wp_nav_menu() arguments.
* @param int $depth Depth of menu item. Used for padding.
*/
$title = apply_filters( 'nav_menu_item_title', $title, $menu_item, $args, $depth );
$item_output = $args->before;
$item_output .= '<a' . $attributes . '>';
$item_output .= $args->link_before . $title . $args->link_after;
$item_output .= '</a>';
$item_output .= $args->after;
// 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('partials.content-page', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/resources/views/front-page.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
<body>
<noscript><iframe defer src="https://www.googletagmanager.com/ns.html?id=GTM-WQT6VXZ" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<?php wp_body_open(); ?>
<?php do_action('get_header'); ?>
<?= \Roots\view(\Roots\app('sage.view'), \Roots\app('sage.data'))->render(); ?>
<?php do_action('get_footer'); ?>
<?php wp_footer(); ?>
</body>
</html>
*
* @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';
}
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
* @param stdClass $args An object of wp_nav_menu() arguments.
* @param int $depth Depth of menu item. Used for padding.
*/
$title = apply_filters( 'nav_menu_item_title', $title, $menu_item, $args, $depth );
$item_output = $args->before;
$item_output .= '<a' . $attributes . '>';
$item_output .= $args->link_before . $title . $args->link_after;
$item_output .= '</a>';
$item_output .= $args->after;
// 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
<html <?php echo get_language_attributes(); ?>>
<?php echo $__env->make('partials.head', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<body <?php if(get_field('hide_header')): ?> class="no-padding" <?php endif; ?>>
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WQT6VXZ" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<?php if(!get_field('hide_header')): ?>
<?php echo $__env->make('partials.header', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endif; ?>
<?php echo $__env->yieldContent('content'); ?>
<?php echo $__env->make('partials.footer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php echo $__env->make('partials.copyright', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
$__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('partials.content-page', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/resources/views/front-page.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
<body>
<noscript><iframe defer src="https://www.googletagmanager.com/ns.html?id=GTM-WQT6VXZ" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<?php wp_body_open(); ?>
<?php do_action('get_header'); ?>
<?= \Roots\view(\Roots\app('sage.view'), \Roots\app('sage.data'))->render(); ?>
<?php do_action('get_footer'); ?>
<?php wp_footer(); ?>
</body>
</html>
*
* @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';
}
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
* @param stdClass $args An object of wp_nav_menu() arguments.
* @param int $depth Depth of menu item. Used for padding.
*/
$title = apply_filters( 'nav_menu_item_title', $title, $menu_item, $args, $depth );
$item_output = $args->before;
$item_output .= '<a' . $attributes . '>';
$item_output .= $args->link_before . $title . $args->link_after;
$item_output .= '</a>';
$item_output .= $args->after;
* @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;
}
* @param stdClass $args An object of wp_nav_menu() arguments.
* @param int $depth Depth of menu item. Used for padding.
*/
$title = apply_filters( 'nav_menu_item_title', $title, $menu_item, $args, $depth );
$item_output = $args->before;
$item_output .= '<a' . $attributes . '>';
$item_output .= $args->link_before . $title . $args->link_after;
$item_output .= '</a>';
$item_output .= $args->after;
$this->has_children = ! empty( $children_elements[ $id ] );
if ( isset( $args[0] ) && is_array( $args[0] ) ) {
$args[0]['has_children'] = $this->has_children; // Back-compat.
}
$this->start_el( $output, $element, $depth, ...array_values( $args ) );
// Descend only when the depth is right and there are children for this element.
if ( ( 0 === $max_depth || $max_depth > $depth + 1 ) && isset( $children_elements[ $id ] ) ) {
foreach ( $children_elements[ $id ] as $child ) {
if ($element->is_active) {
$element->classes[] = 'active';
}
parent::display_element($element, $children_elements, $max_depth, $depth, $args, $output);
}
// @codingStandardsIgnoreEnd
public function cssClasses($classes, $item) {
$slug = sanitize_title($item->title);
}
}
}
foreach ( $top_level_elements as $e ) {
$this->display_element( $e, $children_elements, $max_depth, 0, $args, $output );
}
/*
* If we are displaying all levels, and remaining children_elements is not empty,
* then we got orphans, which should be displayed regardless.
if ( $page->post_parent ) {
$args['pages_with_children'][ $page->post_parent ] = true;
}
}
return $walker->walk( $pages, $depth, $args, $current_page );
}
/**
* Retrieves HTML dropdown (select) content for page list.
*
if ( is_post_type_hierarchical( $queried_object->post_type ) ) {
$current_page = $queried_object->ID;
}
}
$output .= walk_page_tree( $pages, $parsed_args['depth'], $current_page, $parsed_args );
if ( $parsed_args['title_li'] ) {
$output .= '</ul></li>';
}
}
}
}
$list_args['echo'] = false;
$list_args['title_li'] = '';
$menu .= wp_list_pages( $list_args );
$container = sanitize_text_field( $args['container'] );
// Fallback in case `wp_nav_menu()` was called without a container.
if ( empty( $container ) ) {
* - Fall back, but only if no theme location was specified.
* - Otherwise, bail.
*/
if ( ( ! $menu || is_wp_error( $menu ) || ( isset( $menu_items ) && empty( $menu_items ) && ! $args->theme_location ) )
&& isset( $args->fallback_cb ) && $args->fallback_cb && is_callable( $args->fallback_cb ) ) {
return call_user_func( $args->fallback_cb, (array) $args );
}
if ( ! $menu || is_wp_error( $menu ) ) {
return false;
}
<span class="menu__button--stripe menu__button--one"></span>
<span class="menu__button--stripe menu__button--two"></span>
<span class="menu__button--stripe menu__button--three"></span>
<span class="menu__button--stripe menu__button--four"></span>
</div>
<?php echo wp_nav_menu(['theme_location' => 'primary', 'menu_class' => 'menu__nav animated fadeIn fast']); ?>
</div>
</div>
<div class="col-5 col-md-2 d-flex justify-content-end">
$__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
<html <?php echo get_language_attributes(); ?>>
<?php echo $__env->make('partials.head', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<body <?php if(get_field('hide_header')): ?> class="no-padding" <?php endif; ?>>
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WQT6VXZ" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<?php if(!get_field('hide_header')): ?>
<?php echo $__env->make('partials.header', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endif; ?>
<?php echo $__env->yieldContent('content'); ?>
<?php echo $__env->make('partials.footer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php echo $__env->make('partials.copyright', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
$__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('partials.content-page', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/resources/views/front-page.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
<body>
<noscript><iframe defer src="https://www.googletagmanager.com/ns.html?id=GTM-WQT6VXZ" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<?php wp_body_open(); ?>
<?php do_action('get_header'); ?>
<?= \Roots\view(\Roots\app('sage.view'), \Roots\app('sage.data'))->render(); ?>
<?php do_action('get_footer'); ?>
<?php wp_footer(); ?>
</body>
</html>
*
* @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';
}
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
[4/4]
ViewException
|
---|
Illuminate\View\ViewException: Attempt to read property "before" on array (View: /home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/resources/views/partials/header.blade.php) (View: /home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/resources/views/partials/header.blade.php) (View: /home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/resources/views/partials/header.blade.php) at /home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/class-walker-nav-menu.php:273 at Illuminate\View\Engines\CompilerEngine->handleViewException() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/index.php:34) at include('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/index.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/template-loader.php:106) at require_once('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/template-loader.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-blog-header.php:19) at require('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-blog-header.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/index.php:17) |
[3/4]
ViewException
|
---|
Illuminate\View\ViewException: Attempt to read property "before" on array (View: /home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/resources/views/partials/header.blade.php) (View: /home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/resources/views/partials/header.blade.php) at /home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/class-walker-nav-menu.php:273 at Illuminate\View\Engines\CompilerEngine->handleViewException() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/cache/acorn/framework/views/d5d5481f1813b837e20d4bb39eeaa100468703d8.php:7) at require('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/cache/acorn/framework/views/d5d5481f1813b837e20d4bb39eeaa100468703d8.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/index.php:34) at include('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/index.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/template-loader.php:106) at require_once('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/template-loader.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-blog-header.php:19) at require('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-blog-header.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/index.php:17) |
[2/4]
ViewException
|
---|
Illuminate\View\ViewException: Attempt to read property "before" on array (View: /home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/resources/views/partials/header.blade.php) at /home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/class-walker-nav-menu.php:273 at Illuminate\View\Engines\CompilerEngine->handleViewException() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/cache/acorn/framework/views/3b81b386bfbbcdcdce6fd4a912d304da6d103303.php:7) at require('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/cache/acorn/framework/views/3b81b386bfbbcdcdce6fd4a912d304da6d103303.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/cache/acorn/framework/views/d5d5481f1813b837e20d4bb39eeaa100468703d8.php:7) at require('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/cache/acorn/framework/views/d5d5481f1813b837e20d4bb39eeaa100468703d8.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/index.php:34) at include('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/index.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/template-loader.php:106) at require_once('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/template-loader.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-blog-header.php:19) at require('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-blog-header.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/index.php:17) |
[1/4]
ErrorException
|
---|
ErrorException: Attempt to read property "before" on array at /home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/class-walker-nav-menu.php:273 at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/roots/acorn/src/Roots/Acorn/Bootstrap/HandleExceptions.php:54) at Roots\Acorn\Bootstrap\HandleExceptions->handleError() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/class-walker-nav-menu.php:273) at Walker_Nav_Menu->start_el() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/class-wp-walker.php:150) at Walker->display_element() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/plugins/soil/modules/nav-walker.php:55) at Roots\Soil\Nav\NavWalker->display_element() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/class-wp-walker.php:252) at Walker->walk() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/post-template.php:1571) at walk_page_tree() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/post-template.php:1354) at wp_list_pages() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/post-template.php:1486) at wp_page_menu() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/nav-menu-template.php:164) at wp_nav_menu() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/cache/acorn/framework/views/b78d8602062e6f35501a03de64948f538423ee45.php:24) at require('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/cache/acorn/framework/views/b78d8602062e6f35501a03de64948f538423ee45.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/cache/acorn/framework/views/3b81b386bfbbcdcdce6fd4a912d304da6d103303.php:7) at require('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/cache/acorn/framework/views/3b81b386bfbbcdcdce6fd4a912d304da6d103303.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/cache/acorn/framework/views/d5d5481f1813b837e20d4bb39eeaa100468703d8.php:7) at require('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/cache/acorn/framework/views/d5d5481f1813b837e20d4bb39eeaa100468703d8.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/index.php:34) at include('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-content/themes/sage/index.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/template-loader.php:106) at require_once('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-includes/template-loader.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-blog-header.php:19) at require('/home/u28096p21991/domains/imc-nederland.nl/public_html/wp-blog-header.php') (/home/u28096p21991/domains/imc-nederland.nl/public_html/index.php:17) |