IcingaTemplateResolver: separate concerns...
...and make helper accessible
This commit is contained in:
parent
4a75804d86
commit
40ff51e487
|
@ -223,9 +223,13 @@ class IcingaTemplateResolver
|
||||||
|
|
||||||
public function listInheritancePathIds($objectId = null)
|
public function listInheritancePathIds($objectId = null)
|
||||||
{
|
{
|
||||||
$full = $this->listFullInheritancePathIds($objectId);
|
return $this->uniquePathIds($this->listFullInheritancePathIds($objectId));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function uniquePathIds(array $ids)
|
||||||
|
{
|
||||||
$single = array();
|
$single = array();
|
||||||
foreach (array_reverse($full) as $id) {
|
foreach (array_reverse($ids) as $id) {
|
||||||
if (array_key_exists($id, $single)) {
|
if (array_key_exists($id, $single)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue