You are here

public function SWFObject::render in SWF Embed 7

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

Render this flash object using the theme system.

The HTML returned from this method will be just the no-flash placeholder. The theme function also handles enquing the necessary Javascript to make the Flash swap-out work client-side.

Return value

unknown

File

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

Class

SWFObject
Generic data object for describing an SWF configuration.

Code

public function render() {
  return theme('swfembed_embed', array(
    'swf' => $this,
  ));
}