function simplenews_format_options in Simplenews 7.2
Same name and namespace in other branches
- 8.2 simplenews.module \simplenews_format_options()
- 8 simplenews.module \simplenews_format_options()
- 7 simplenews.module \simplenews_format_options()
- 3.x simplenews.module \simplenews_format_options()
Returns simplenews format options.
2 calls to simplenews_format_options()
- simplenews_admin_newsletter_form in includes/
simplenews.admin.inc - Menu callback: newsletter admin form for newsletter add/edit.
- simplenews_admin_settings_newsletter in includes/
simplenews.admin.inc - Menu callback: Simplenews admin settings - Newsletter.
1 string reference to 'simplenews_format_options'
File
- ./
simplenews.module, line 2198 - Simplenews node handling, sent email, newsletter block and general hooks
Code
function simplenews_format_options() {
return array(
'plain' => t('Plain'),
'html' => t('HTML'),
);
}