You are here

function _notifications_ui_type_options in Notifications 5

Allowed options for content types

1 call to _notifications_ui_type_options()
notifications_ui_form_alter in notifications_ui/notifications_ui.module
Implementation of hook_form_alter()

File

notifications_ui/notifications_ui.module, line 348
User Interface for subscriptions modules

Code

function _notifications_ui_type_options() {
  return array(
    'form' => t('Display in node form'),
    'comment' => t('Display in comment form'),
    'links' => t('Display as node links'),
    'block' => t('Display in block'),
  );
}