You are here

function swftools_api_elements in SWF Tools 6.3

Implementation of hook_elements().

File

api/swftools_api.module, line 105
A lightweight API to allow other modules to access SWF Tools embedding methods.

Code

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

  // Return the type
  return $type;
}