Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / theme.twig
1 /**
2  * Implements hook_theme().
3  */
4 function {{ machine_name }}_theme($existing, $type, $theme, $path) {
5   return [
6     'forum_display' => [
7       'variables' => ['forums' => NULL, 'topics' => NULL, 'parents' => NULL, 'tid' => NULL, 'sortby' => NULL, 'forum_per_page' => NULL],
8     ],
9     'forum_list' => [
10       'variables' => ['forums' => NULL, 'parents' => NULL, 'tid' => NULL],
11     ],
12     'forum_icon' => [
13       'variables' => ['new_posts' => NULL, 'num_posts' => 0, 'comment_mode' => 0, 'sticky' => 0],
14     ],
15     'status_report' => [
16       'render element' => 'requirements',
17       'file' => 'system.admin.inc',
18     ],
19   ];
20 }