Skip to content

Instantly share code, notes, and snippets.

@crosalot
Created March 19, 2014 07:28
Show Gist options
  • Save crosalot/9636998 to your computer and use it in GitHub Desktop.
Save crosalot/9636998 to your computer and use it in GitHub Desktop.
<?php
function relative_to_absolute ($text) {
$lang = language_default();
global $base_path;
$text = preg_replace(
'/(src|href)=(\'|")' . preg_quote($base_path, '/') . '/',
'$1=$2'. url('<front>', array('absolute' => TRUE, 'language' => $lang)),
$text
);
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment