Skip to content
Code-Schnipsel Gruppen Projekte
Commit 8dd63182 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

cron manager direkt ausführbar machen

Übergeordneter d5ecbba3
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
...@@ -29,6 +29,28 @@ class Console extends \QUI\System\Console\Tool ...@@ -29,6 +29,28 @@ class Console extends \QUI\System\Console\Tool
*/ */
public function execute() public function execute()
{ {
$run = $this->getArgument('--run');
$list = $this->getArgument('--list');
$listall = $this->getArgument('--list-all');
if ( $run )
{
$this->run();
return;
}
if ( $list )
{
$this->listCrons();
return;
}
if ( $listall )
{
$this->listAllCrons();
return;
}
$this->writeLn( 'Welcom to the Cron Manager' ); $this->writeLn( 'Welcom to the Cron Manager' );
$this->writeLn( 'Which Command would you execute?' ); $this->writeLn( 'Which Command would you execute?' );
$this->writeLn( '' ); $this->writeLn( '' );
...@@ -84,10 +106,13 @@ class Console extends \QUI\System\Console\Tool ...@@ -84,10 +106,13 @@ class Console extends \QUI\System\Console\Tool
{ {
$Manager = new \QUI\Cron\Manager(); $Manager = new \QUI\Cron\Manager();
$this->writeLn( '' );
$this->write('Execute all upcoming crons ...'); $this->write('Execute all upcoming crons ...');
$Manager->execute(); $Manager->execute();
$this->write('finish'); $this->write('finish');
$this->writeLn( '' );
} }
/** /**
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren