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

Breadcrumb

  1. Drupal Core 11.1.x

AttributeHelper.php

Same filename in this branch
  1. 11.1.x vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/AttributeHelper.php

Namespace

Drupal\Core\Template

File

core/lib/Drupal/Core/Template/AttributeHelper.php

View source
<?php

namespace Drupal\Core\Template;

use Drupal\Component\Utility\NestedArray;

/**
 * Helper class to deal with mixed array and Attribute operations.
 *
 * This class contains static methods only and is not meant to be instantiated.
 */
class AttributeHelper {
    
    /**
     * This class should not be instantiated.
     */
    private function __construct() {
    }
    
    /**
     * Checks if the given attribute collection has an attribute.
     *
     * @param string $name
     *   The name of the attribute to check for.
     * @param \Drupal\Core\Template\Attribute|array $collection
     *   An Attribute object or an array of attributes.
     *
     * @return bool
     *   TRUE if the attribute exists, FALSE otherwise.
     *
     * @throws \InvalidArgumentException
     *   When the input $collection is neither an Attribute object nor an array.
     */
    public static function attributeExists($name, $collection) {
        if ($collection instanceof Attribute) {
            return $collection->hasAttribute($name);
        }
        elseif (is_array($collection)) {
            return array_key_exists($name, $collection);
        }
        throw new \InvalidArgumentException('Invalid collection argument');
    }
    
    /**
     * Merges two attribute collections.
     *
     * @param \Drupal\Core\Template\Attribute|array $a
     *   First Attribute object or array to merge. The returned value type will
     *   be the same as the type of this argument.
     * @param \Drupal\Core\Template\Attribute|array $b
     *   Second Attribute object or array to merge.
     *
     * @return \Drupal\Core\Template\Attribute|array
     *   The merged attributes, as an Attribute object or an array.
     *
     * @throws \InvalidArgumentException
     *   If at least one collection argument is neither an Attribute object nor an
     *   array.
     */
    public static function mergeCollections($a, $b) {
        if (!($a instanceof Attribute || is_array($a)) || !($b instanceof Attribute || is_array($b))) {
            throw new \InvalidArgumentException('Invalid collection argument');
        }
        // If both collections are arrays, just merge them.
        if (is_array($a) && is_array($b)) {
            return NestedArray::mergeDeep($a, $b);
        }
        // If at least one collections is an Attribute object, merge through
        // Attribute::merge.
        $merge_a = $a instanceof Attribute ? $a : new Attribute($a);
        $merge_b = $b instanceof Attribute ? $b : new Attribute($b);
        $merge_a->merge($merge_b);
        return $a instanceof Attribute ? $merge_a : $merge_a->toArray();
    }

}

Classes

Title Deprecated Summary
AttributeHelper Helper class to deal with mixed array and Attribute operations.
RSS feed
Powered by Drupal