function simplenews_locale in Simplenews 6.2
Implementation of hook_locale().
File
- ./
simplenews.module, line 2232 - Simplenews node handling, sent email, newsletter block and general hooks
Code
function simplenews_locale($op = 'groups', $group = NULL) {
switch ($op) {
case 'groups':
return array(
'simplenews' => t('Simplenews'),
);
break;
case 'info':
$info['simplenews']['refresh callback'] = 'simplenews_locale_refresh';
return $info;
break;
}
}