You are here

public function ResponseSubscriber::forceAbsolutePathsCallback in Advanced CSS/JS Aggregation 8.3

Same name and namespace in other branches
  1. 8.4 src/EventSubscriber/ResponseSubscriber.php \Drupal\advagg\EventSubscriber\ResponseSubscriber::forceAbsolutePathsCallback()

Callback to replace individual stylesheet links.

Parameters

array $matches: Array from matches from preg_replace_callback.

Return value

string Updated html string.

File

src/EventSubscriber/ResponseSubscriber.php, line 106

Class

ResponseSubscriber
Respond to event processes.

Namespace

Drupal\advagg\EventSubscriber

Code

public function forceAbsolutePathsCallback(array $matches) {
  global $base_root;
  return "{$matches[1]}{$base_root}{$matches[2]}";
}