.htaccess
1 year ago
Progress.php
1 year ago
Queue.php
5 months ago
QueueItem.php
2 days ago
QueueItemBackup.php
5 months ago
QueueItemDownload.php
1 year ago
QueueItemExport.php
1 year ago
QueueItemExtract.php
1 year ago
QueueItemReindex.php
1 year ago
QueueItemRestore.php
1 year ago
QueueItemRetentionCleanup.php
1 year ago
QueueItemSystem.php
1 year ago
aQueueItem.php
1 year ago
index.html
1 year ago
web.config
1 year 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 |