В версию Друпал 8.7.0 внесено изменение, которое удаляет процедурную функцию drupal_http_header_attributes().
До
$attribute_string = drupal_http_header_attributes(['rel' => 'noreferrer']);После
use \Drupal\Core\Render\HtmlResponseAttachmentsProcessor;
$attribute_string = HtmlResponseAttachmentsProcessor::formatHttpHeaderAttributes(['rel' => 'noreferrer']);