You are here

function _notifications_content_type_options in Notifications 6

Same name and namespace in other branches
  1. 6.4 notifications_content/notifications_content.module \_notifications_content_type_options()
  2. 6.2 notifications_content/notifications_content.module \_notifications_content_type_options()
  3. 6.3 notifications_content/notifications_content.module \_notifications_content_type_options()
  4. 7 notifications_content/notifications_content.module \_notifications_content_type_options()

List subscription options for content types

3 calls to _notifications_content_type_options()
notifications_content_form_alter in notifications_content/notifications_content.module
Implementation of hook_form_alter().
notifications_content_settings_form in notifications_content/notifications_content.pages.inc
Admin settings form
theme_notifications_content_type_settings in notifications_content/notifications_content.pages.inc
Theme content type settings

File

notifications_content/notifications_content.module, line 615
Subscriptions to content events

Code

function _notifications_content_type_options() {
  return _notifications_subscription_types('long', array(
    'event_type' => 'node',
  ));
}