You are here

function swftools_swftools_methods in SWF Tools 6.3

Same name and namespace in other branches
  1. 6.2 swftools.module \swftools_swftools_methods()

Implementation of hook_swftools_methods().

File

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

Code

function swftools_swftools_methods() {

  // Module implements swf embedding (action swf)
  $methods['swf']['swf'] = array(
    'module' => 'swftools',
    'title' => t('Display the swf directly on the page'),
  );

  // Add on generic players (we have to call this hook manually as it isn't in a module)
  $methods += swftools_genericplayers_swftools_methods();

  // Return the methods that are native to SWF Tools
  return $methods;
}