diff options
Diffstat (limited to 'lib/frontend.php')
-rw-r--r-- | lib/frontend.php | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/lib/frontend.php b/lib/frontend.php index 4c5e232..97c8c5b 100644 --- a/lib/frontend.php +++ b/lib/frontend.php @@ -901,7 +901,11 @@ class frontend{ "ddg" => "DuckDuckGo", "yandex" => "Yandex", "brave" => "Brave", - "google" => "Google" + "google" => "Google", + "yep" => "Yep", + //"pinterest" => "Pinterest", + "imgur" => "Imgur", + "ftm" => "FindThatMeme" ] ]; break; @@ -1011,10 +1015,30 @@ class frontend{ $lib = new wiby(); break; + case "yep": + include "scraper/yep.php"; + $lib = new yep(); + break; + case "sc": include "scraper/sc.php"; $lib = new sc(); break; + + case "pinterest": + include "scraper/pinterest.php"; + $lib = new pinterest(); + break; + + case "imgur": + include "scraper/imgur.php"; + $lib = new imgur(); + break; + + case "ftm": + include "scraper/ftm.php"; + $lib = new ftm(); + break; } // set scraper on $_GET |