Update plugin.php

This commit is contained in:
Edi 2018-10-14 12:54:42 +02:00 committed by GitHub
parent 6a3609098f
commit 891f2542c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -34,11 +34,13 @@ class pluginSearch extends Plugin {
// HTML for sidebar // HTML for sidebar
public function siteSidebar() public function siteSidebar()
{ {
global $L;
$html = '<div class="plugin plugin-search">'; $html = '<div class="plugin plugin-search">';
$html .= '<h2 class="plugin-label">'.$this->getValue('label').'</h2>'; $html .= '<h2 class="plugin-label">'.$this->getValue('label').'</h2>';
$html .= '<div class="plugin-content">'; $html .= '<div class="plugin-content">';
$html .= '<input type="text" id="plugin-search-input" /> '; $html .= '<input type="text" id="plugin-search-input" /> ';
$html .= '<input type="button" value="Search" onClick="javascript: window.open(\''.DOMAIN_BASE.'search/\' + document.getElementById(\'plugin-search-input\').value, \'_self\');" />'; $html .= '<input type="button" value="'.$L->get('Search').'" onClick="javascript: window.open(\''.DOMAIN_BASE.'search/\' + document.getElementById(\'plugin-search-input\').value, \'_self\');" />';
$html .= '</div>'; $html .= '</div>';
$html .= '</div>'; $html .= '</div>';
@ -206,4 +208,4 @@ class pluginSearch extends Plugin {
return array_keys($found); return array_keys($found);
} }
} }