You are here

function i18ncontent_node_help_source in Internationalization 6

Fetch default source for node type help

2 calls to i18ncontent_node_help_source()
i18ncontent_form_alter in i18ncontent/i18ncontent.module
Implementation of hook_form_alter().
i18ncontent_help in i18ncontent/i18ncontent.module
Implementation of hook_help().

File

i18ncontent/i18ncontent.module, line 221
Internationalization (i18n) package - translatable content type parameters

Code

function i18ncontent_node_help_source($type) {
  $context = i18nstrings_context("nodetype:type:{$type}:help");
  $source = i18nstrings_get_source($context);
  return $source;
}