byu_news-8.x-1.x-dev/byu_news.module
byu_news.module
<?php /** * @file * Contains byu_news.module. */ /** * Implements hook_theme(). */ function byu_news_theme() { $variables = [ 'byu_news' => [ 'variables' => [ //defined in /src/Plugin/Block/ByuNewsBlock.php 'category' => NULL, 'maxDate' => NULL, 'minDate' => NULL, 'newsTags' => NULL, 'storyLimit' => NULL ], 'template' => 'byu-news' ] ]; return $variables; }