You are here

function jplayer_style_plugin::option_definition in jPlayer 6

Same name and namespace in other branches
  1. 7.2 includes/jplayer_style_plugin.inc \jplayer_style_plugin::option_definition()

File

includes/jplayer_style_plugin.inc, line 14
Display style plugin for Views that renders rows as a jPlayer playlist.

Class

jplayer_style_plugin
Style plugin to display a jPlayer playlist.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['path_field'] = array(
    'default' => NULL,
  );
  $options['label_field'] = array(
    'default' => NULL,
  );
  return $options;
}