You are here

function _classified_get_notify_kinds in Classified Ads 6.3

Same name and namespace in other branches
  1. 7.3 classified.module \_classified_get_notify_kinds()

Domain definition for notification kinds.

Return value

array The array of known notification kinds.

See also

classified_notify_kind_load()

4 calls to _classified_get_notify_kinds()
ClassifiedNotificationsTest::test1491880 in tests/classified_notifications.test
Issue 1491880.
classified_cron in ./classified.module
Implements hook_cron().
classified_notify_kind_load in ./classified.module
Menu loader for check notify kind
drush_classified_notify in ./classified.drush.inc
Command callback for classified-notify

File

./classified.module, line 299
A pure D6 classified ads module inspired by the ed_classified module.

Code

function _classified_get_notify_kinds() {
  $ret = array(
    'pre-purge',
    'pre-expire',
    'half-life',
  );
  return $ret;
}