Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ArrayElement.php

function ArrayElement::get

Overrides TypedConfigInterface::get

1 call to ArrayElement::get()
ArrayElement::getProperties in core/lib/Drupal/Core/Config/Schema/ArrayElement.php
Gets an array of property objects.

File

core/lib/Drupal/Core/Config/Schema/ArrayElement.php, line 75

Class

ArrayElement
Defines a generic configuration element that contains multiple properties.

Namespace

Drupal\Core\Config\Schema

Code

public function get($name) {
    $parts = explode('.', $name);
    $root_key = array_shift($parts);
    $elements = $this->getElements();
    if (isset($elements[$root_key])) {
        $element = $elements[$root_key];
        // If $property_name contained a dot recurse into the keys.
        while ($element && ($key = array_shift($parts)) !== NULL) {
            if ($element instanceof TypedConfigInterface) {
                $element = $element->get($key);
            }
            else {
                $element = NULL;
            }
        }
    }
    if (isset($element)) {
        return $element;
    }
    else {
        throw new \InvalidArgumentException("The configuration property {$name} doesn't exist.");
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal