You are here

function minplayer_theme in MediaFront 7.2

Same name and namespace in other branches
  1. 7 players/minplayer/minplayer.module \minplayer_theme()

Implements hook_theme

File

players/minplayer/minplayer.module, line 24

Code

function minplayer_theme() {
  $theme = array();

  // Create a media player theme.
  $theme['minplayer'] = array(
    'render element' => 'element',
    'variables' => array(
      'params' => NULL,
    ),
  );
  return $theme;
}