You are here

function flowplayer_theme in Flowplayer API 7.2

Same name and namespace in other branches
  1. 6 flowplayer.module \flowplayer_theme()
  2. 7 flowplayer.module \flowplayer_theme()

Implementation of hook_theme().

File

./flowplayer.module, line 212
Provides integration with FlowPlayer.

Code

function flowplayer_theme() {
  return array(
    'flowplayer' => array(
      'variables' => array(
        'config' => NULL,
        'id' => 'flowplayer',
        'attributes' => array(),
      ),
    ),
  );
}