X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fsearchaction.php;h=450b04ba7a825140646f9e2a3a73eec9697761f4;hb=ebc8e2a0e7dde135aef73be7b3d96dff155fe091;hp=cc8966eeaed91800b83f2122e69532709e690a92;hpb=3b3bf7417625118c49afbb0f041d6de877965acd;p=quix0rs-gnu-social.git diff --git a/lib/searchaction.php b/lib/searchaction.php index cc8966eeae..450b04ba7a 100644 --- a/lib/searchaction.php +++ b/lib/searchaction.php @@ -51,12 +51,12 @@ class SearchAction extends Action * * @return boolean true */ - function isReadOnly($args) + function isReadOnly(array $args=array()) { return true; } - function handle($args) + function handle(array $args=array()) { parent::handle($args); $this->showPage(); @@ -84,10 +84,6 @@ class SearchAction extends Action return null; } - function showNoticeForm() { - // remote post notice form - } - function showContent() { $this->showTop(); $this->showForm(); @@ -113,7 +109,7 @@ class SearchAction extends Action // TRANS: for searching can be entered. $this->input('q', _('Keyword(s)'), $q); // TRANS: Button text for searching site. - $this->submit('search', _m('BUTTON','Search')); + $this->element('input', array('type'=>'submit', 'class'=>'submit', 'value'=>_m('BUTTON','Search'))); $this->elementEnd('li'); $this->elementEnd('ul'); $this->elementEnd('fieldset'); @@ -139,11 +135,11 @@ class SearchAction extends Action // TRANS: Standard search suggestions shown when a search does not give any results. $message .= sprintf(_("You can also try your search on other engines: -* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%site.server%%%%) -* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s) -* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s) -* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s) -* [Collecta](http://collecta.com/#q=%s)"), $qe, $qe, $qe, $qe, $qe); +* [DuckDuckGo](https://duckduckgo.com/?q=site%%3A%%%%site.server%%%%+%s) +* [Ixquick](https://ixquick.com/do/search?query=site%%3A%%%%site.server%%%%+%s) +* [Google](https://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s) +* [Yahoo!](https://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s) +"), $qe, $qe, $qe, $qe); $message .= "\n"; } $this->elementStart('div', 'help instructions');