You are here

function swftools_swftools_preprocess_generic_flv in SWF Tools 6.3

Implementation of hook_swftools_preprocess_[player]().

File

includes/swftools.genericplayers.inc, line 111
Enables SWF Tools support for built-in generic players.

Code

function swftools_swftools_preprocess_generic_flv(&$data) {

  // Attach file url of the content to display to flashvars
  $data['flashvars']['file_url'] = $data['othervars']['file_url'];
  $data['flashvars']['autostart'] = isset($data['flashvars']['autostart']) ? $data['flashvars']['autostart'] : variable_get('generic_flv_autostart', FALSE) ? 'true' : 'false';
}