You are here

function notifications_include in Notifications 6.4

Include module files as necessary.

The files must be in an 'includes' subfolder inside the module folder.

30 calls to notifications_include()
NotificationsBasicTests::testNotificationsQueryBuilder in tests/notifications_api.test
Test query builder
notifications_anonymous_destination_page in notifications_anonymous/notifications_anonymous.pages.inc
Page callback. Manage anonymous destinations.
notifications_anonymous_subscribe_links in notifications_anonymous/notifications_anonymous.module
Build subscription options as an array of links
notifications_custom_fields_form in notifications_custom/notifications_custom.admin.inc
Fields form: edit /add fields to custom subscription type
notifications_custom_fields_form_validate in notifications_custom/notifications_custom.admin.inc
Validate field values

... See full list

File

./notifications.module, line 2013
Notifications module

Code

function notifications_include($file, $module = 'notifications') {
  return messaging_include($file, $module);
}