_color_import_stylesheet

Definition

_color_import_stylesheet($matches)
color/color.module, line 362

Description

Helper function for _color_rewrite_stylesheet.

Code

<?php
function _color_import_stylesheet($matches) {
  return preg_replace('/url\(([\'"]?)(?![a-z]+:)/i', 'url(\1'. dirname($matches[1]) .'/', file_get_contents($matches[1]));
}
?>