function dropdown_theme in Open Social 8
Same name and namespace in other branches
- 8.9 modules/custom/dropdown/dropdown.module \dropdown_theme()
- 8.2 modules/custom/dropdown/dropdown.module \dropdown_theme()
- 8.3 modules/custom/dropdown/dropdown.module \dropdown_theme()
- 8.4 modules/custom/dropdown/dropdown.module \dropdown_theme()
- 8.5 modules/custom/dropdown/dropdown.module \dropdown_theme()
- 8.6 modules/custom/dropdown/dropdown.module \dropdown_theme()
- 8.7 modules/custom/dropdown/dropdown.module \dropdown_theme()
- 8.8 modules/custom/dropdown/dropdown.module \dropdown_theme()
- 10.3.x modules/custom/dropdown/dropdown.module \dropdown_theme()
- 10.0.x modules/custom/dropdown/dropdown.module \dropdown_theme()
- 10.1.x modules/custom/dropdown/dropdown.module \dropdown_theme()
- 10.2.x modules/custom/dropdown/dropdown.module \dropdown_theme()
Implements hook_theme().
File
- modules/custom/ dropdown/ dropdown.module, line 30 
- Contains dropdown.module.
Code
function dropdown_theme() {
  $items = [
    'dropdown' => [
      'render element' => 'element',
    ],
  ];
  return $items;
}