Variables.php in Express 8
Contains \Drupal\bootstrap\Utility\Variables.
Namespace
Drupal\bootstrap\UtilityFile
themes/contrib/bootstrap/src/Utility/Variables.phpView source
<?php
/**
* @file
* Contains \Drupal\bootstrap\Utility\Variables.
*/
namespace Drupal\bootstrap\Utility;
/**
* Class to help modify template variables.
*
* @ingroup utility
*/
class Variables extends DrupalAttributes {
/**
* An element object.
*
* @var \Drupal\bootstrap\Utility\Element|FALSE
*/
public $element = FALSE;
/**
* Element constructor.
*
* @param array $variables
* A theme hook variables array.
*/
public function __construct(array &$variables) {
$this->array =& $variables;
if (isset($variables['element']) && Element::isRenderArray($variables['element'])) {
$this->element = Element::create($variables['element']);
}
elseif (isset($variables['elements']) && Element::isRenderArray($variables['elements'])) {
$this->element = Element::create($variables['elements']);
}
}
/**
* Creates a new \Drupal\bootstrap\Utility\Variables instance.
*
* @param array $variables
* A theme hook variables array.
*
* @return \Drupal\bootstrap\Utility\Variables
* The newly created variables instance.
*/
public static function create(array &$variables) {
return new self($variables);
}
/**
* Retrieves a context value from the variables array or its element, if any.
*
* @param string $name
* The name of the context key to retrieve.
* @param mixed $default
* Optional. The default value to use if the context $name isn't set.
*
* @return mixed|NULL
* The context value or the $default value if not set.
*/
public function &getContext($name, $default = NULL) {
$context =& $this
->offsetGet($this->attributePrefix . 'context', []);
if (!isset($context[$name])) {
// If there is no context on the variables array but there is an element
// present, proxy the method to the element.
if ($this->element) {
return $this->element
->getContext($name, $default);
}
$context[$name] = $default;
}
return $context[$name];
}
/**
* Maps an element's properties to the variables attributes array.
*
* @param array $map
* An associative array whose keys are element property names and whose
* values are the variable names to set in the variables array; e.g.,
* array('#property_name' => 'variable_name'). If both names are identical
* except for the leading '#', then an attribute name value is sufficient
* and no property name needs to be specified.
* @param bool $overwrite
* If the variable exists, it will be overwritten. This does not apply to
* attribute arrays, they will always be merged recursively.
*
* @return $this
*/
public function map(array $map, $overwrite = TRUE) {
// Immediately return if there is no element in the variable array.
if (!$this->element) {
return $this;
}
// Iterate over each map item.
foreach ($map as $property => $variable) {
// If the key is numeric, the attribute name needs to be taken over.
if (is_int($property)) {
$property = $variable;
}
// Merge attributes from the element.
if (strpos($property, 'attributes') !== FALSE) {
$this
->setAttributes($this->element
->getAttributes($property)
->getArrayCopy(), $variable);
}
elseif ($overwrite || !$this
->offsetExists($variable)) {
$this
->offsetSet($variable, $this->element
->getProperty($property));
}
}
return $this;
}
}