Index: typo3/sysext/scheduler/mod1/locallang_csh_scheduler.xml =================================================================== --- typo3/sysext/scheduler/mod1/locallang_csh_scheduler.xml (revision 6334) +++ typo3/sysext/scheduler/mod1/locallang_csh_scheduler.xml (working copy) @@ -33,11 +33,13 @@ Index: typo3/sysext/scheduler/mod1/locallang.xml =================================================================== --- typo3/sysext/scheduler/mod1/locallang.xml (revision 6334) +++ typo3/sysext/scheduler/mod1/locallang.xml (working copy) @@ -37,6 +37,7 @@ + @@ -78,6 +79,8 @@ + + Index: typo3/sysext/scheduler/mod1/index.php =================================================================== --- typo3/sysext/scheduler/mod1/index.php (revision 6334) +++ typo3/sysext/scheduler/mod1/index.php (working copy) @@ -499,6 +499,23 @@ } /** + * Display the current server's time along with a help text about server time + * usage in the Scheduler + * + * @return string HTML to display + */ + protected function displayServerTime() { + // Get the current time, formatted + $dateFormat = $GLOBALS['TYPO3_CONF_VARS']['SYS']['ddmmyy'] . ' ' . $GLOBALS['TYPO3_CONF_VARS']['SYS']['hhmm'] . ' T (e)'; + $now = date($dateFormat); + // Display the help text + $serverTime = '

' . $GLOBALS['LANG']->getLL('label.serverTime') . '

'; + $serverTime .= '

' . $GLOBALS['LANG']->getLL('msg.serverTimeHelp') . '

'; + $serverTime .= '

' . sprintf($GLOBALS['LANG']->getLL('msg.serverTime'), $now) . '

'; + return $serverTime; + } + + /** * Delete a task from the execution queue * * @return void @@ -830,6 +847,9 @@ $content .= ' ' . ''; + // Display information about server time usage + $content .= $this->displayServerTime(); + return $content; } @@ -1117,8 +1137,9 @@ . '" /> ' . $GLOBALS['LANG']->getLL('action.add') . '

'; // Display legend, if there's at least one registered task + // Also display information about the usage of server time if ($numRows > 0) { - $content .= '

' . $GLOBALS['LANG']->getLL('status.legend') . ':

+ $content .= '

' . $GLOBALS['LANG']->getLL('status.legend') . '

'; + $content .= $this->displayServerTime(); } Index: typo3/sysext/scheduler/doc/manual.sxw =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream