.htaccess
5 months ago
Progress.php
5 months ago
Queue.php
5 months ago
QueueItem.php
5 months ago
QueueItemBackup.php
5 months ago
QueueItemDownload.php
5 months ago
QueueItemExport.php
5 months ago
QueueItemExtract.php
5 months ago
QueueItemReindex.php
5 months ago
QueueItemRestore.php
5 months ago
QueueItemRetentionCleanup.php
5 months ago
QueueItemSystem.php
5 months ago
aQueueItem.php
5 months ago
index.html
5 months ago
web.config
5 months ago
aQueueItem.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace JetBackup\Queue; |
| 4 | |
| 5 | use JetBackup\Data\ArrayData; |
| 6 | |
| 7 | if (!defined( '__JETBACKUP__')) die('Direct access is not allowed'); |
| 8 | |
| 9 | abstract class aQueueItem extends ArrayData { |
| 10 | |
| 11 | public function __construct($data=[]) { |
| 12 | $this->setData($data); |
| 13 | } |
| 14 | |
| 15 | abstract public function getDisplay():array; |
| 16 | } |
| 17 |