You are here

public static function NestedArray::mergeDeep in Blazy 7

Merges multiple arrays, recursively, and returns the merged array.

Parameters

array ...: Arrays to merge.

Return value

array The merged array.

See also

NestedArray::mergeDeepArray()

5 calls to NestedArray::mergeDeep()
Blazy::containerAttributes in src/Blazy.php
Provides container attributes for .blazy container: .field, .view, etc.
BlazyManager::preRenderBuild in src/BlazyManager.php
Builds the Blazy outputs as a structured array ready for ::renderer().
BlazyManager::setAttachments in src/BlazyManager.php
Provides attachment and cache for both theme_field() and theme_item_list().
BlazyManagerBase::buildSkins in src/BlazyManagerBase.php
Collects defined skins as registered via hook_MODULE_NAME_skins_info().
BlazyStyleBaseTrait::buildSettings in src/Dejavu/BlazyStyleBaseTrait.php
Provides commons settings for the style plugins.

File

src/Utility/NestedArray.php, line 154

Class

NestedArray
Provides helpers to perform operations on nested arrays, kidnapped from D8.

Namespace

Drupal\blazy\Utility

Code

public static function mergeDeep() {
  return self::mergeDeepArray(func_get_args());
}