mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-22 21:36:09 +01:00
30 lines
No EOL
816 B
PHP
30 lines
No EOL
816 B
PHP
<?php
|
|
namespace Wrm\Events\Command;
|
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
use TYPO3\CMS\Core\Core\Bootstrap;
|
|
use TYPO3\CMS\Extbase\Object\ObjectManager;
|
|
|
|
use Wrm\Events\Service\CleanupService;
|
|
|
|
class CleanupCommand extends Command {
|
|
|
|
public function configure()
|
|
{
|
|
$this->setDescription('Cleanup Events');
|
|
$this->setHelp('Events are cleaned up');
|
|
}
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
{
|
|
Bootstrap::initializeBackendAuthentication();
|
|
|
|
return GeneralUtility::makeInstance(ObjectManager::class)
|
|
->get(CleanupService::class)
|
|
->doClean();
|
|
}
|
|
} |