function audiofield_theme in AudioField 8
Same name and namespace in other branches
- 7 audiofield.module \audiofield_theme()
Implements hook_theme().
File
- ./
audiofield.module, line 62 - Drupal Module: Audiofield.
Code
function audiofield_theme($existing, $type, $theme, $path) {
return [
'audiofield_download_links' => [
'variables' => [
'links' => NULL,
],
],
'audioplayer' => [
'variables' => [
'plugin_id' => NULL,
'plugin_theme' => NULL,
'files' => NULL,
'settings' => NULL,
],
],
];
}