You are here

public function SWFObject::minimumVersion in SWF Embed 7

Same name and namespace in other branches
  1. 6 swfembed.module \SWFObject::minimumVersion()

Set the minimum version of the Flash player. This will check the client flash player to make sure it is at least at the minimum version. A version number can be of any of these three forms:

  • Major: 9
  • Major.Minor: 9.1
  • Major.Minor.Release: 9.1.124

Parameters

$version: The version string.

Return value

The called object.

File

./swfembed.module, line 431
The main file for swfembed.

Class

SWFObject
Generic data object for describing an SWF configuration.

Code

public function minimumVersion($version) {
  $this->minimumVersion = $version;
  return $this;
}