| 1 | <?php |
||
| 7 | class FlowPlayer extends File |
||
|
|
|||
| 8 | { |
||
| 9 | protected static $swf_file = "flowplayer/thirdparty/flowplayer-3.2.5.swf"; |
||
| 10 | public static function set_swf_file($v) |
||
| 18 | |||
| 19 | protected static $flow_player_config_file = "flowplayer/javascript/FlowPlayerConfig.js"; |
||
| 20 | public static function set_flow_player_config_file($v) |
||
| 28 | |||
| 29 | public function AbsoluteLink($IDString = "FlowPlayer") |
||
| 37 | } |
||
| 38 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.