W3cubDocs

/Drupal 8

public function AttributeValueBase::render

public AttributeValueBase::render()

Returns a string representation of the attribute.

While __toString only returns the value in a string form, render() contains the name of the attribute as well.

Return value

string The string representation of the attribute.

File

core/lib/Drupal/Core/Template/AttributeValueBase.php, line 51

Class

AttributeValueBase
Defines the base class for an attribute type.

Namespace

Drupal\Core\Template

Code

public function render() {
  $value = (string) $this;
  if (isset($this->value) && static::RENDER_EMPTY_ATTRIBUTE || !empty($value)) {
    return Html::escape($this->name) . '="' . $value . '"';
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Template!AttributeValueBase.php/function/AttributeValueBase::render/8.1.x