Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
ultimate_cron
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
ultimate_cron
Merge requests
!21
Issue
#3306546
: Add job titles for more modules
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3306546
: Add job titles for more modules
issue/ultimate_cron-3306546:3306546-add-job-titles
into
8.x-2.x
Overview
0
Commits
6
Pipelines
3
Changes
2
Merged
Dieter Holvoet
requested to merge
issue/ultimate_cron-3306546:3306546-add-job-titles
into
8.x-2.x
2 years ago
Overview
0
Commits
6
Pipelines
3
Changes
2
Expand
0
0
Merge request reports
Compare
8.x-2.x
version 7
75432b90
6 months ago
version 6
75432b90
6 months ago
version 5
57701cf1
1 year ago
version 4
4312cbf4
1 year ago
version 3
5057a2e7
1 year ago
version 2
5d1a485d
1 year ago
version 1
982af1c5
2 years ago
8.x-2.x (base)
and
latest version
latest version
75432b90
6 commits,
6 months ago
version 7
75432b90
6 commits,
6 months ago
version 6
75432b90
6 commits,
6 months ago
version 5
57701cf1
6 commits,
1 year ago
version 4
4312cbf4
6 commits,
1 year ago
version 3
5057a2e7
5 commits,
1 year ago
version 2
5d1a485d
2 commits,
1 year ago
version 1
982af1c5
2 commits,
2 years ago
2 files
+
39
−
13
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/CronJobDiscovery.php
+
35
−
9
Options
@@ -130,19 +130,45 @@ class CronJobDiscovery {
protected
function
getJobTitle
(
$id
)
{
$titles
=
array
();
$titles
[
'aggregator_cron'
]
=
t
(
'Refresh feeds'
);
$titles
[
'comment_cron'
]
=
t
(
'Store the maximum possible comments per thread'
);
$titles
[
'dblog_cron'
]
=
t
(
'Remove expired log messages and flood control events'
);
$titles
[
'field_cron'
]
=
t
(
'Purges deleted Field API data'
);
$titles
[
'file_cron'
]
=
t
(
'Deletes temporary files'
);
$titles
[
'history_cron'
]
=
t
(
'Deletes history'
);
$titles
[
'search_cron'
]
=
t
(
'Updates indexable active search pages'
);
$titles
[
'system_cron'
]
=
t
(
'Cleanup (caches, batch, flood, temp-files, etc.)'
);
$titles
[
'update_cron'
]
=
t
(
'Check for updates'
);
$titles
[
'node_cron'
]
=
t
(
'Updates search rankings for nodes'
);
$titles
[
'aggregator_cron'
]
=
t
(
'Refresh feeds'
);
$titles
[
'ultimate_cron_cron'
]
=
t
(
'Runs internal cleanup operations'
);
$titles
[
'field_cron'
]
=
t
(
'Purge deleted Field API data'
);
$titles
[
'file_cron'
]
=
t
(
'Delete temporary files'
);
$titles
[
'history_cron'
]
=
t
(
'Delete history'
);
$titles
[
'layout_builder_cron'
]
=
t
(
'Remove unused inline block entity operations'
);
$titles
[
'locale_cron'
]
=
t
(
'Update translations'
);
$titles
[
'node_cron'
]
=
t
(
'Update search rankings for nodes'
);
$titles
[
'search_cron'
]
=
t
(
'Update indexable active search pages'
);
$titles
[
'statistics_cron'
]
=
t
(
'Reset counts and clean up'
);
$titles
[
'system_cron'
]
=
t
(
'Cleanup (caches, batch, flood, temp-files, etc.)'
);
$titles
[
'tracker_cron'
]
=
t
(
'Update tracker index'
);
$titles
[
'update_cron'
]
=
t
(
'Check for updates'
);
$titles
[
'workspaces_cron'
]
=
t
(
'Purge deleted workspaces'
);
// Contrib modules.
$titles
[
'backup_migrate_cron'
]
=
t
(
'Run scheduled backups'
);
$titles
[
'captcha_cron'
]
=
t
(
'Remove old sessions'
);
$titles
[
'content_lock_timeout_cron'
]
=
t
(
'Release stale locks'
);
$titles
[
'core_event_dispatcher_cron'
]
=
t
(
'Dispatch cron events'
);
$titles
[
'flysystem_cron'
]
=
t
(
'Check the sanity of installed filesystems'
);
$titles
[
'hook_event_dispatcher_cron'
]
=
t
(
'Dispatch cron events'
);
$titles
[
'mailchimp_cron'
]
=
t
(
'Send queued (un)subscribe actions to Mailchimp'
);
$titles
[
'password_policy_cron'
]
=
t
(
'Indicate expired passwords for users'
);
$titles
[
'preview_link_cron'
]
=
t
(
'Delete expired preview links'
);
$titles
[
'purge_processor_cron_cron'
]
=
t
(
'Invalidate cache items'
);
$titles
[
'redirect_404_cron'
]
=
t
(
'Delete old 404 errors'
);
$titles
[
'scheduler_cron'
]
=
t
(
'(Un)publish scheduled entities'
);
$titles
[
'search_api_cron'
]
=
t
(
'Execute pending server tasks and update indexes'
);
$titles
[
'search_api_solr_cron'
]
=
t
(
'Optimize Solr servers'
);
$titles
[
'simple_oauth_cron'
]
=
t
(
'Delete expired tokens'
);
$titles
[
'simple_sitemap_cron'
]
=
t
(
'Generate sitemaps'
);
$titles
[
'simple_sitemap_engines_cron'
]
=
t
(
'Submit sitemaps to search engines'
);
$titles
[
'ultimate_cron_cron'
]
=
t
(
'Run internal cleanup operations'
);
$titles
[
'webform_cron'
]
=
t
(
'Purge old submissions'
);
$titles
[
'webform_scheduled_email_cron'
]
=
t
(
'Sends scheduled emails for submissions'
);
$titles
[
'xmlsitemap_cron'
]
=
t
(
'Regenerate XML sitemaps'
);
$titles
[
'xmlsitemap_engines_cron'
]
=
t
(
'Submit XML sitemaps to search engines'
);
if
(
isset
(
$titles
[
$id
]))
{
return
$titles
[
$id
];
Loading