You are here

function hook_tmgmt_file_text_processor_plugin_info in Translation Management Tool 7

Same name and namespace in other branches
  1. 8 translators/tmgmt_file/tmgmt_file.api.php \hook_tmgmt_file_text_processor_plugin_info()

Provide information about available text processors.

Return value

array An array of available text processor definitions. The key is the text processor name.

1 function implements hook_tmgmt_file_text_processor_plugin_info()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

tmgmt_test_tmgmt_file_text_processor_plugin_info in tests/tmgmt_test.module
Implements hook_tmgmt_fle_text_processor_plugin_info().

File

translators/file/tmgmt_file.api.php, line 41

Code

function hook_tmgmt_file_text_processor_plugin_info() {
  return array(
    'mask_html_for_xliff' => array(
      'label' => t('Escape HTML'),
      'processor class' => 'TMGMTFileXLIFFMaskHTMLProcessor',
    ),
  );
}