Created
June 26, 2016 13:00
-
-
Save greg606/fd7594099f1f0367c666b701b3a0e87a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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