function _language_sections_get_ids in Language Sections 7.2
Same name and namespace in other branches
- 6.2 language_sections.module \_language_sections_get_ids()
5 calls to _language_sections_get_ids()
File
- ./
language_sections.module, line 62
Code
function _language_sections_get_ids() {
$mod_id = 'language_sections';
$ids = array(
'mod_name' => 'Language Sections',
'mod_id' => $mod_id,
// In D6, $mod_prefix provided for different config per filter-format. Now we always use "shared".
'mod_prefix' => $mod_id . '_shared_',
'mod_config_path' => sprintf('admin/config/regional/%s', $mod_id),
);
return $ids;
}