You are here

function swftools_elements in SWF Tools 6.3

Implementation of hook_elements().

File

./swftools.module, line 2073
The primary component of SWF Tools that enables comprehensive media handling.

Code

function swftools_elements() {
  $type['swftools'] = array(
    '#params' => array(),
    '#flashvars' => array(),
    '#othervars' => array(),
    '#methods' => array(),
    '#value' => '',
  );

  // Return the type
  return $type;
}