Skip to content

Instantly share code, notes, and snippets.

@greg606
Created June 26, 2016 13:00
Show Gist options
  • Save greg606/fd7594099f1f0367c666b701b3a0e87a to your computer and use it in GitHub Desktop.
Save greg606/fd7594099f1f0367c666b701b3a0e87a to your computer and use it in GitHub Desktop.
/**
* Implements hook_theme().
*/
function support_theme($existing, $type, $theme, $path)
{
$commentField = $existing['comment'];
$commentField['template'] = 'comment--field-support';
$commentField['path'] = 'modules/custom/support/templates';
$theme = [
'support' => [
'template' => 'support',
'variables' => ['node' => null],
],
'comment__field_support' => $commentField
];
return $theme;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment