1.20.x common.inc backdrop_http_header_attributes(array $attributes = array())

Formats an attribute string for an HTTP header.

Parameters

$attributes: An associative array of attributes such as 'rel'.

Return value

A ; separated string ready for insertion in a HTTP header. No escaping is: performed for HTML entities, so this string is not safe to be printed.

See also

backdrop_add_http_header()

File

includes/common.inc, line 2785
Common functions that many Backdrop modules will need to reference.

Code

function backdrop_http_header_attributes(array $attributes = array()) {
  foreach ($attributes as $attribute => &$data) {
    if (is_array($data)) {
      $data = implode(' ', $data);
    }
    $data = $attribute . '="' . $data . '"';
  }
  return $attributes ? ' ' . implode('; ', $attributes) : '';
}