diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-04 17:40:13 +0000 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-04 17:40:13 +0000 |
| commit | 6d11acc713d4f95375b06a6ee94d72d5bd0218cf (patch) | |
| tree | 71619a17b544390cc675fbae6fbcdfbae5006e18 /classes/Pref_System.php | |
| parent | d4faf2d3690592e64bd40c2d15d69897a63600a0 (diff) | |
| parent | 4cc40ddaa4552b2be9b696dc7b74e5c5c64fa372 (diff) | |
Merge branch 'plugin-cringe' into 'master'
expose scheduled tasks to plugins, switch cache_starred_images plugin to use...
See merge request tt-rss/tt-rss!129
Diffstat (limited to 'classes/Pref_System.php')
| -rw-r--r-- | classes/Pref_System.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/classes/Pref_System.php b/classes/Pref_System.php index c5d7ab606..7946dc293 100644 --- a/classes/Pref_System.php +++ b/classes/Pref_System.php @@ -33,6 +33,7 @@ class Pref_System extends Handler_Administrative { <table width='100%' class='event-log'> <tr> <th><?= __("Task name") ?></th> + <th><?= __("Schedule") ?></th> <th><?= __("Last executed") ?></th> <th><?= __("Duration (seconds)") ?></th> <th><?= __("Return code") ?></th> @@ -40,6 +41,7 @@ class Pref_System extends Handler_Administrative { <?php $task_records = ORM::for_table('ttrss_scheduled_tasks') + ->order_by_asc(['last_cron_expression', 'task_name']) ->find_many(); foreach ($task_records as $task) { @@ -48,6 +50,7 @@ class Pref_System extends Handler_Administrative { ?> <tr> <td class="<?= $row_style ?>"><?= $task->task_name ?></td> + <td><?= $task->last_cron_expression ?></td> <td><?= TimeHelper::make_local_datetime($task->last_run) ?></td> <td><?= $task->last_duration ?></td> <td><?= $task->last_rc ?></td> |