Initial commit - Typo3 11.5.41
This commit is contained in:
24
typo3conf/ext/news/Classes/Jobs/ImportJobInterface.php
Normal file
24
typo3conf/ext/news/Classes/Jobs/ImportJobInterface.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace GeorgRinger\News\Jobs;
|
||||
|
||||
/**
|
||||
* This file is part of the "news" Extension for TYPO3 CMS.
|
||||
*
|
||||
* For the full copyright and license information, please read the
|
||||
* LICENSE.txt file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Import job interface
|
||||
*/
|
||||
interface ImportJobInterface
|
||||
{
|
||||
public function getNumberOfRecordsPerRun();
|
||||
|
||||
public function getInfo();
|
||||
|
||||
public function isEnabled();
|
||||
|
||||
public function run($offset);
|
||||
}
|
||||
Reference in New Issue
Block a user