Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • sebastian/MetaGer
  • cpietsch/MetaGer
  • kossow/MetaGer
  • jens/MetaGer
  • open-source/MetaGer
5 results
Show changes
Commits on Source (7)
...@@ -12,9 +12,9 @@ class Quicktips ...@@ -12,9 +12,9 @@ class Quicktips
{ {
use DispatchesJobs; use DispatchesJobs;
const QUICKTIP_URL = "https://quicktips.metager3.de/quicktips.xml"; //const QUICKTIP_URL = "https://quicktips.metager3.de/quicktips.xml";
//const QUICKTIP_URL = "http://localhost:63825/quicktips.xml"; const QUICKTIP_URL = "http://localhost:63825/quicktips.xml";
const QUICKTIP_NAME = "quicktips"; const QUICKTIP_NAME = "quicktips";
const CACHE_DURATION = 60; const CACHE_DURATION = 60;
private $hash; private $hash;
...@@ -69,7 +69,7 @@ class Quicktips ...@@ -69,7 +69,7 @@ class Quicktips
public function loadResults() public function loadResults()
{ {
$resultsRaw = $this->retrieveResults($this->hash); $resultsRaw = $this->retrieveResults($this->hash);
$results = $this->parseResults($resultsRaw); $results = $this->parseResults($resultsRaw);
return $results; return $results;
} }
...@@ -140,14 +140,14 @@ class Quicktips ...@@ -140,14 +140,14 @@ class Quicktips
$descr = $quicktip_xml->content->__toString(); $descr = $quicktip_xml->content->__toString();
// Details // Details
$details = []; $details = [];
$details_xpath = $quicktip_xml->xpath('mg:details'); $details_xpath = $quicktip_xml->xpath('mg:details');
if (sizeof($details_xpath) > 0) { if (sizeof($details_xpath) > 0) {
foreach ($details_xpath[0] as $detail_xml) { foreach ($details_xpath[0] as $detail_xml) {
$details_title = $detail_xml->title->__toString(); $details_title = $detail_xml->title->__toString();
$details_link = $detail_xml->url->__toString(); $details_link = $detail_xml->url->__toString();
$details_descr = $detail_xml->text->__toString(); $details_descr = $detail_xml->text->__toString();
$details[] = new \App\Models\Quicktips\Quicktip_detail( $details[] = new \App\Models\Quicktips\Quicktip_detail(
$details_title, $details_title,
$details_link, $details_link,
$details_descr $details_descr
......
...@@ -41,8 +41,8 @@ return [ ...@@ -41,8 +41,8 @@ return [
'about.3.1' => '', 'about.3.1' => '',
'lang.tooltip' => 'Ergebnissprache wählen', 'lang.tooltip' => 'Ergebnissprache wählen',
'key.placeholder' => 'Mitglieder Key eingeben', 'key.placeholder' => 'Mitglieder-Key eingeben',
'key.tooltip' => 'Mitglieder Key eingeben', 'key.tooltip' => 'Mitglieder-Key eingeben',
'placeholder' => 'MetaGer: Sicher suchen & finden, Privatsphäre schützen', 'placeholder' => 'MetaGer: Sicher suchen & finden, Privatsphäre schützen',
'plugin.open-modal' => 'MetaGer-Plugin hinzufügen', 'plugin.open-modal' => 'MetaGer-Plugin hinzufügen',
......