You are here

function dropdown_theme in Open Social 8.4

Same name and namespace in other branches
  1. 8.9 modules/custom/dropdown/dropdown.module \dropdown_theme()
  2. 8 modules/custom/dropdown/dropdown.module \dropdown_theme()
  3. 8.2 modules/custom/dropdown/dropdown.module \dropdown_theme()
  4. 8.3 modules/custom/dropdown/dropdown.module \dropdown_theme()
  5. 8.5 modules/custom/dropdown/dropdown.module \dropdown_theme()
  6. 8.6 modules/custom/dropdown/dropdown.module \dropdown_theme()
  7. 8.7 modules/custom/dropdown/dropdown.module \dropdown_theme()
  8. 8.8 modules/custom/dropdown/dropdown.module \dropdown_theme()
  9. 10.3.x modules/custom/dropdown/dropdown.module \dropdown_theme()
  10. 10.0.x modules/custom/dropdown/dropdown.module \dropdown_theme()
  11. 10.1.x modules/custom/dropdown/dropdown.module \dropdown_theme()
  12. 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;
}