ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
DomainService.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\Repository\Resources
;
22
23
use
ILIAS\DI\Container
;
24
use
ILIAS\Filesystem\Util\Archive\Archives
;
25
use
ILIAS\Filesystem\Util\Archive\LegacyArchives
;
26
27
class
DomainService
28
{
29
protected
LegacyArchives
$legacy_archives
;
30
protected
Archives
$archives
;
31
32
public
function
__construct
(
33
Archives
$archives,
34
LegacyArchives
$legacy_archives
35
) {
36
$this->archives =
$archives
;
37
$this->legacy_archives =
$legacy_archives
;
38
}
39
40
public
function
zip
():
ZipAdapter
41
{
42
return
new
ZipAdapter
(
43
$this->archives,
44
$this->legacy_archives
45
);
46
}
47
}
ILIAS\Repository\Resources\DomainService
Definition:
DomainService.php:27
Archives
ILIAS\Filesystem\Util\Archive\Archives
Definition:
Archives.php:33
ILIAS\Repository\Resources\DomainService\$archives
Archives $archives
Definition:
DomainService.php:30
ILIAS\Filesystem\Util\Archive\LegacyArchives
Definition:
LegacyArchives.php:35
Container
ILIAS\Repository\Resources
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
DomainService.php:21
ILIAS\Repository\Resources\DomainService\$legacy_archives
LegacyArchives $legacy_archives
Definition:
DomainService.php:29
ILIAS\Repository\Resources\DomainService\__construct
__construct(Archives $archives, LegacyArchives $legacy_archives)
Definition:
DomainService.php:32
ILIAS\Repository\Resources\DomainService\zip
zip()
Definition:
DomainService.php:40
LegacyArchives
ILIAS\Repository\Resources\ZipAdapter
Definition:
ZipAdapter.php:30
Services
Repository
Service
Resources
DomainService.php
Generated on Wed Sep 10 2025 14:11:13 for ILIAS by
1.8.13 (using
Doxyfile
)