28 lines
731 B
PHP
28 lines
731 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace MyVendor\MyExtension\Task;
|
|
|
|
use MyVendor\MyExtension\BusinessLogic;
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
use TYPO3\CMS\Scheduler\Task\AbstractTask;
|
|
|
|
final class MyTask extends AbstractTask
|
|
{
|
|
/**
|
|
* MUST be implemented by all tasks
|
|
*/
|
|
public function execute(): bool
|
|
{
|
|
# Dependency injection cannot be used in scheduler tasks
|
|
$businessLogic = GeneralUtility::makeInstance(BusinessLogic::class);
|
|
return $businessLogic->run('arg1', 'arg2', '…');
|
|
}
|
|
|
|
public function getAdditionalInformation()
|
|
{
|
|
$this->getLanguageService()->sL('LLL:EXT:my_extension/Resources/Private/Language/locallang.xlf:myTaskInformation');
|
|
}
|
|
}
|