You are here

function template_preprocess_panopoly_magic_preview in Panopoly Magic 8.2

Same name and namespace in other branches
  1. 7 panopoly_magic.module \template_preprocess_panopoly_magic_preview()

Default preprocess hook for panopoly-magic-theme.html.twig template.

File

./panopoly_magic.module, line 38
Hook implementations for panopoly_magic.

Code

function template_preprocess_panopoly_magic_preview(&$vars) {
  $preview =& $vars['preview'];
  $vars['title'] = $preview['#title'];
  $vars['add_link'] = $preview['add_link'];
  unset($preview['add_link']);
}