diff core/lib/Drupal/Core/Template/AttributeString.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/lib/Drupal/Core/Template/AttributeString.php	Wed Nov 29 16:09:58 2017 +0000
@@ -0,0 +1,31 @@
+<?php
+
+namespace Drupal\Core\Template;
+
+use Drupal\Component\Utility\Html;
+
+/**
+ * A class that represents most standard HTML attributes.
+ *
+ * To use with the Attribute class, set the key to be the attribute name
+ * and the value the attribute value.
+ * @code
+ *  $attributes = new Attribute(array());
+ *  $attributes['id'] = 'socks';
+ *  $attributes['style'] = 'background-color:white';
+ *  echo '<cat ' . $attributes . '>';
+ *  // Produces: <cat id="socks" style="background-color:white">.
+ * @endcode
+ *
+ * @see \Drupal\Core\Template\Attribute
+ */
+class AttributeString extends AttributeValueBase {
+
+  /**
+   * Implements the magic __toString() method.
+   */
+  public function __toString() {
+    return Html::escape($this->value);
+  }
+
+}