function sbp_paths_locale in Search by Page 6
Implementation of hook_locale().
File
- ./
sbp_paths.module, line 239 - Module file for Search by Page Paths, a sub-module for Search by Page.
Code
function sbp_paths_locale($op = 'groups', $group = NULL) {
switch ($op) {
case 'groups':
return array(
'sbp_paths' => t('Search by Page Paths'),
);
case 'info':
$info = array();
$info['spb_paths']['refresh callback'] = '_sbp_paths_refresh_translations';
$info['sbp_paths']['format'] = FALSE;
return $info;
}
}