mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-11 16:35:38 +00:00
list frequency and all parameters of task
This commit is contained in:
parent
aa7daffe46
commit
31e1e48dea
|
@ -100,7 +100,13 @@ foreach($tasks as $task) {
|
|||
}
|
||||
echo " ".$task->getExtension()."::".$task->getTask()."";
|
||||
echo " ".$task->getNextRun();
|
||||
echo " ".$task->getFrequency();
|
||||
echo "\n";
|
||||
if($params = $task->getParameter()) {
|
||||
foreach($params as $key=>$value) {
|
||||
echo " ".$key.": ".$value."\n";
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user