We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PR w związku ze zmianą oryginału joomla/joomla-cms#37501 Poniżej zmiany w oryginale:
diff --git a/administrator/components/com_scheduler/forms/filter_tasks.xml b/administrator/components/com_scheduler/forms/filter_tasks.xml index 893a0b432cc8..fa34a07e8b0a 100644 --- a/administrator/components/com_scheduler/forms/filter_tasks.xml +++ b/administrator/components/com_scheduler/forms/filter_tasks.xml @@ -58,6 +58,8 @@ <option value="a.title DESC">JGLOBAL_TITLE_DESC</option> <option value="j.type_title ASC">COM_SCHEDULER_TASK_TYPE_ASC</option> <option value="j.type_title DESC">COM_SCHEDULER_TASK_TYPE_DESC</option> + <option value="a.last_execution ASC">COM_SCHEDULER_LAST_RUN_ASC</option> + <option value="a.last_execution DESC">COM_SCHEDULER_LAST_RUN_DESC</option> <option value="a.priority ASC">COM_SCHEDULER_TASK_PRIORITY_ASC</option> <option value="a.priority DESC">COM_SCHEDULER_TASK_PRIORITY_DESC</option> <option value="a.id ASC">JGRID_HEADING_ID_ASC</option> diff --git a/administrator/components/com_scheduler/tmpl/tasks/default.php b/administrator/components/com_scheduler/tmpl/tasks/default.php index ec377f9dc30a..927d48839012 100644 --- a/administrator/components/com_scheduler/tmpl/tasks/default.php +++ b/administrator/components/com_scheduler/tmpl/tasks/default.php @@ -129,7 +129,7 @@ class="visually-hidden"><?php echo Text::_('INFO'); ?></span> <!-- Last runs --> <th scope="col" class="d-none d-lg-table-cell"> - <?php echo Text::_('COM_SCHEDULER_LAST_RUN_DATE'); ?> + <?php echo HTMLHelper::_('searchtools.sort', 'COM_SCHEDULER_LAST_RUN_DATE', 'a.last_execution', $listDirn, $listOrder) ?> </th> <!-- Test task --> diff --git a/administrator/language/en-GB/com_scheduler.ini b/administrator/language/en-GB/com_scheduler.ini index 4b4a87817972..40fa725d8eea 100644 --- a/administrator/language/en-GB/com_scheduler.ini +++ b/administrator/language/en-GB/com_scheduler.ini @@ -77,7 +77,9 @@ COM_SCHEDULER_LABEL_TASK_PRIORITY_LOW="Low" COM_SCHEDULER_LABEL_TASK_PRIORITY_NORMAL="Normal" COM_SCHEDULER_LABEL_TIMES_EXEC="Times Executed" COM_SCHEDULER_LABEL_TIMES_FAIL="Times Failed" +COM_SCHEDULER_LAST_RUN_ASC="Last Run ascending" COM_SCHEDULER_LAST_RUN_DATE="Last Run Date" +COM_SCHEDULER_LAST_RUN_DESC="Last Run descending" COM_SCHEDULER_MANAGER_TASKS="Scheduled Tasks" COM_SCHEDULER_MANAGER_TASK_EDIT="Edit Task" COM_SCHEDULER_MANAGER_TASK_NEW="New Task"
The text was updated successfully, but these errors were encountered:
279d169
wojsmol
zwiastunsw
No branches or pull requests
PR w związku ze zmianą oryginału joomla/joomla-cms#37501 Poniżej zmiany w oryginale:
Click to expand the diff!
The text was updated successfully, but these errors were encountered: