added a simple method to allow all subclasses to easily relocate image links

This commit is contained in:
Nicolas Delsaux 2014-03-26 16:04:10 +01:00
parent e564559bda
commit 0fa32c7cf9

View file

@ -71,6 +71,17 @@ abstract class BridgeAbstract implements BridgeInterface{
return $this;
}
/**
* Set default image SRC attribute to point on given server when none is provided (that's to say when image src starts with '/'
*/
public function defaultImageSrcTo($content, $server) {
foreach($content->find('img') as $image) {
if(strpos($image->src, '/')==0) {
$image->src = $server.$image->src;
}
}
}
}
/**