diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/frontend.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/frontend.php b/lib/frontend.php index a5035b6..b002ee9 100644 --- a/lib/frontend.php +++ b/lib/frontend.php @@ -895,7 +895,8 @@ class frontend{ "yep" => "Yep", "mojeek" => "Mojeek", "marginalia" => "Marginalia", - "wiby" => "wiby" + "wiby" => "wiby", + "curlie" => "Curlie" ] ]; break; @@ -948,6 +949,7 @@ class frontend{ "display" => "Scraper", "option" => [ "sc" => "SoundCloud" + //"spotify" => "Spotify" ] ]; break; @@ -1022,6 +1024,11 @@ class frontend{ $lib = new wiby(); break; + case "curlie": + include "scraper/curlie.php"; + $lib = new curlie(); + break; + case "yep": include "scraper/yep.php"; $lib = new yep(); @@ -1032,6 +1039,11 @@ class frontend{ $lib = new sc(); break; + case "spotify": + include "scraper/spotify.php"; + $lib = new spotify(); + break; + case "pinterest": include "scraper/pinterest.php"; $lib = new pinterest(); |