Browse Source

Change nested function MsnMondeExtractContent to member function

This fixes error "Using $this when not in object context"

Nested functions are not part of the object and therefore don't have
access to the object instance $this!
logmanoriginal 7 years ago
parent
commit
1d58809676
1 changed files with 7 additions and 8 deletions
  1. 7 8
      bridges/MsnMondeBridge.php

+ 7 - 8
bridges/MsnMondeBridge.php

@@ -11,14 +11,13 @@ class MsnMondeBridge extends BridgeAbstract{
 
 	}
 
-    public function collectData(array $param){
-
-    function MsnMondeExtractContent($url, &$item) {
-      $html2 = $this->file_get_html($url);
-      $item->content = $html2->find('#content', 0)->find('article', 0)->find('section', 0)->plaintext;
-      $item->timestamp = strtotime($html2->find('.authorinfo-txt', 0)->find('time', 0)->datetime);
-    }
+	function MsnMondeExtractContent($url, &$item) {
+		$html2 = $this->file_get_html($url);
+		$item->content = $html2->find('#content', 0)->find('article', 0)->find('section', 0)->plaintext;
+		$item->timestamp = strtotime($html2->find('.authorinfo-txt', 0)->find('time', 0)->datetime);
+	}
 
+    public function collectData(array $param){
       $html = $this->file_get_html('http://www.msn.com/fr-fr/actualite/monde') or $this->returnError('Could not request MsnMonde.', 404);
       $limit = 0;
       foreach($html->find('.smalla') as $article) {
@@ -26,7 +25,7 @@ class MsnMondeBridge extends BridgeAbstract{
          $item = new \Item();
          $item->title = utf8_decode($article->find('h4', 0)->innertext);
          $item->uri = "http://www.msn.com" . utf8_decode($article->find('a', 0)->href);
-         MsnMondeExtractContent($item->uri, $item);
+         $this->MsnMondeExtractContent($item->uri, $item);
          $this->items[] = $item;
          $limit++;
        }