You are here

function _flowplayer_get_controls_swf_path in Flowplayer API 7.2

Get the path to the flowplayer.controls-X.X.X.swf file

File

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

Code

function _flowplayer_get_controls_swf_path() {
  $library_path = flowplayer_get_path();
  $files = glob($library_path . "/flowplayer.controls-*.swf");
  return isset($files[0]) ? $files[0] : false;
}