You are here

function system_swftools_methods in SWF Tools 6.3

Implementation of hook_swftools_methods().

Note that we use a trick here as this method is always available. We implement system_swftools_methods() as we know the system module will always be present so we can be sure this gets reported.

File

includes/swftools.core.inc, line 238
Implements SWF Tools core functions that are common to the main module and the API module.

Code

function system_swftools_methods() {
  $methods['swftools_embed_method']['swftools_direct'] = array(
    'module' => 'swftools',
    'title' => t('Direct embedding'),
  );
  return $methods;
}