function 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 tmgmt_test/tmgmt_test.module
Implements hook_tmgmt_fle_text_processor_plugin_info().

File

translators/tmgmt_file/tmgmt_file.api.php, line 23

Code

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