You are here

function mp3player_theme in MP3 Player 7.2

Same name and namespace in other branches
  1. 6.2 mp3player.module \mp3player_theme()
  2. 6 mp3player.module \mp3player_theme()

Implementation of hook_theme().

File

./mp3player.module, line 626
mp3player main module file.

Code

function mp3player_theme() {
  return array(
    'mp3player' => array(
      'variables' => array(
        'player' => 1,
        'file' => NULL,
        'title' => '',
      ),
    ),
  );
}