ISGArchiveDelegate.php
3 years ago
SGBGArchive.php
3 years ago
SGBGArchiveCdr.php
3 years ago
SGBGArchiveHelper.php
3 years ago
SGBGCache.php
3 years ago
SGBGCacheableFile.php
3 years ago
SGBGDirectoryTreeFile.php
3 years ago
SGBGFile.php
3 years ago
SGBGFileHelper.php
3 years ago
SGBGJsonFile.php
3 years ago
SGBGLog.php
3 years ago
SGBGReloader.php
3 years ago
SGBGStateFile.php
3 years ago
SGBGTask.php
3 years ago
ISGArchiveDelegate.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | interface ISGArchiveDelegate |
| 4 | { |
| 5 | public function getCorrectCdrFilename($filename); |
| 6 | public function didCountFilesInsideArchive($count); |
| 7 | public function shouldExtractFile($filePath); |
| 8 | public function willExtractFile($filePath); |
| 9 | public function didExtractFile($filePath); |
| 10 | public function didFindExtractError($error); |
| 11 | public function didExtractArchiveHeaders($version, $extra); |
| 12 | |
| 13 | public function willAddFile($filename); |
| 14 | public function willAddFileChunk($filename); |
| 15 | public function didAddFileChunk($filename, $chunk); |
| 16 | public function didAddFile($filename); |
| 17 | public function didUpdateProgress($progress); |
| 18 | |
| 19 | public function getArchiveExtraData(); |
| 20 | } |
| 21 |