function getid3_theme in getID3() 7
Same name and namespace in other branches
- 7.2 getid3.module \getid3_theme()
Implements hook_theme().
File
- ./
getid3.module, line 35
Code
function getid3_theme($existing, $type, $theme, $path) {
return array(
'getid3_duration' => array(
'variables' => array(
'duration' => NULL,
),
),
'getid3_sample_rate' => array(
'variables' => array(
'sample_rate' => NULL,
),
),
'getid3_bitrate' => array(
'variables' => array(
'bitrate' => NULL,
),
),
);
}