Feature #67332 ยป scheduler-description.aimeos.diff
typo3_src-7.2.0.new/typo3/sysext/scheduler/Classes/Controller/SchedulerModuleController.php 2015-06-06 18:40:57.701302340 +0200 | ||
---|---|---|
}
|
||
// Format the execution status,
|
||
// including failure feedback, if any
|
||
$desc = $taskDesc = '';
|
||
if ($schedulerRecord['description'] !== '') {
|
||
$taskName = '<span title="' . htmlspecialchars($schedulerRecord['description']) . '">' . $name . '</span>';
|
||
} else {
|
||
$taskName = $name;
|
||
$desc = htmlspecialchars($schedulerRecord['description']);
|
||
$taskDesc = '<div class="task-description">' . $desc . '</div>';
|
||
}
|
||
$taskName = '<span class="task-name" title="' . $desc . '">' . $name . '</span>';
|
||
$table[] =
|
||
'<tr class="' . ($showAsDisabled ? 'disabled' : '') . '">'
|
||
. '<td>' . $startExecutionElement . '</td>'
|
||
. '<td class="right">' . $schedulerRecord['uid'] . '</td>'
|
||
. '<td>' . $taskName . ' ' . $this->makeStatusLabel($labels) . '</td>'
|
||
. '<td>' . $taskName . $taskDesc . $this->makeStatusLabel($labels) . '</td>'
|
||
. '<td>' . $execType . '</td>'
|
||
. '<td>' . $frequency . '</td>'
|
||
. '<td>' . $multiple . '</td>'
|