Browse Source

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

Nicolas Delsaux 10 years ago
parent
commit
0fa32c7cf9
1 changed files with 11 additions and 0 deletions
  1. 11 0
      lib/Bridge.php

+ 11 - 0
lib/Bridge.php

@@ -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;
+            }
+        }
+    }
 }
 
 /**