You are here

public function Base::getDependencies in Openlayers 7.3

Return all the dependencies objects of the parent object.

Return value

ObjectInterface[] The dependencies objects.

Overrides ObjectInterface::getDependencies

1 call to Base::getDependencies()
Map::isAsynchronous in src/Types/Map.php
Whether or not this object has to be processed asynchronously.

File

src/Types/Base.php, line 486
Class Object.

Class

Base
Class Base.

Namespace

Drupal\openlayers\Types

Code

public function getDependencies() {
  $objects = $this
    ->getCollection()
    ->getFlatList();
  unset($objects[$this
    ->getType() . '_' . $this
    ->getMachineName()]);
  return $objects;
}