You are here

function simplenews_format_options in Simplenews 7

Same name and namespace in other branches
  1. 8.2 simplenews.module \simplenews_format_options()
  2. 8 simplenews.module \simplenews_format_options()
  3. 7.2 simplenews.module \simplenews_format_options()
  4. 3.x simplenews.module \simplenews_format_options()

Returns simplenews format options.

2 calls to simplenews_format_options()
simplenews_admin_category_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.

File

./simplenews.module, line 2148
Simplenews node handling, sent email, newsletter block and general hooks

Code

function simplenews_format_options() {
  return array(
    'plain' => t('Plain'),
    'html' => t('HTML'),
  );
}