-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathAggregateCollection.php
More file actions
69 lines (58 loc) · 1.61 KB
/
Copy pathAggregateCollection.php
File metadata and controls
69 lines (58 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
declare(strict_types=1);
namespace IchHabRecht\MaskExport\Aggregate;
/*
* This file is part of the TYPO3 extension mask_export.
*
* (c) 2016 Nicole Cordes <typo3@cordes.co>, CPS-IT GmbH
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
use TYPO3\CMS\Core\Utility\GeneralUtility;
class AggregateCollection
{
/**
* @var array
*/
protected $aggregateClassNames;
/**
* @var AbstractAggregate[]
*/
protected $collection;
/**
* @var array
*/
protected $maskConfiguration;
public function __construct(array $aggregateClassNames, array $maskConfiguration)
{
$this->aggregateClassNames = $aggregateClassNames;
$this->maskConfiguration = $maskConfiguration;
}
/**
* @return AbstractAggregate[]
*/
public function getCollection(): array
{
if (null === $this->collection) {
$this->initializeCollection();
}
return $this->collection;
}
/**
* Initializes aggregate objects
*/
protected function initializeCollection(): void
{
$this->collection = [];
foreach ($this->aggregateClassNames as $className) {
if (class_exists($className)) {
$this->collection[$className] = GeneralUtility::makeInstance($className, $this->maskConfiguration);
}
}
}
}