public function SWFObject::swfFallback in SWF Embed 7
Sets additional SWF files to use if we don't we have the minimum version of flash
Parameters
$version:
$file :
Return value
The called object
File
- ./
swfembed.module, line 452 - The main file for swfembed.
Class
- SWFObject
- Generic data object for describing an SWF configuration.
Code
public function swfFallback($version, $file) {
$this->swfFallbacks[] = array(
'file' => $file,
'version' => $version,
);
return $this;
}