mirror of
https://github.com/linuxserver/Heimdall-Apps.git
synced 2026-02-20 04:16:08 +08:00
12 lines
429 B
PHP
12 lines
429 B
PHP
<?php namespace App\SupportedApps\SearxMetasearchEngine;
|
|
|
|
class SearxMetasearchEngine extends \App\SupportedApps implements \App\SearchInterface {
|
|
public $type = 'external'; // Whether to go to the external site or display results locally
|
|
public function getResults($query, $provider)
|
|
{
|
|
$url = rtrim($provider->url, '/');
|
|
$q = urlencode($query);
|
|
return redirect($url.'/search?q='.$q);
|
|
}
|
|
}
|