thierry-b
6/8/2017 - 2:34 PM

Tip: Build render array with cache tags

Tip: Build render array with cache tags

<?php
$nodes = $this->nodeStorage->loadMultiple($node_ids);

if (!empty($nodes)) {
	$build['content'] = $this->viewBuilder->viewMultiple($nodes, 'booking_line');
}
$build['#cache'] = [
	'tags' => ['node_list'],
	'max-age' => 86400,
];