Manual:$wgJobClasses

From MediaWiki.org

Jump to: navigation, search
Jobs: $wgJobClasses
Maps jobs to their handling classes.
Introduced in version: 1.11.0 (r23173)
Removed in version: still in use
Allowed values: (array)
Default value: (see below)

Other settings: Alphabetical | By Function


[edit] Details

Maps jobs to their handling classes; extensions can add to this to provide custom jobs

Default :

$wgJobClasses = array(
  'refreshLinks' => 'RefreshLinksJob',
  'htmlCacheUpdate' => 'HTMLCacheUpdateJob',
  'html_cache_update' => 'HTMLCacheUpdateJob', // backwards-compatible
  'sendMail' => 'EmaillingJob',
  'enotifNotify' => 'EnotifNotifyJob',
);