diff options
author | friendica <info@friendica.com> | 2013-12-09 21:20:55 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-09 21:20:55 -0800 |
commit | ed9f10872240231125007cf32b95007281558cac (patch) | |
tree | 06686896c308c5ad30becb62f3e236b311ab238b /include/text.php | |
parent | 251720bfd32541901b9e845651dbc037b34065e2 (diff) | |
download | volse-hubzilla-ed9f10872240231125007cf32b95007281558cac.tar.gz volse-hubzilla-ed9f10872240231125007cf32b95007281558cac.tar.bz2 volse-hubzilla-ed9f10872240231125007cf32b95007281558cac.zip |
comanchify the savedsearch widget
Diffstat (limited to 'include/text.php')
-rwxr-xr-x | include/text.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/text.php b/include/text.php index f425690ba..aa23f96b0 100755 --- a/include/text.php +++ b/include/text.php @@ -741,6 +741,20 @@ function search($s,$id='search-box',$url='/search',$save = false) { } +function searchbox($s,$id='search-box',$url='/search',$save = false) { + $a = get_app(); + $o = '<div id="' . $id . '">'; + $o .= '<form action="' . z_root() . '/' . $url . '" method="get" >'; + $o .= '<input type="hidden" name="f" value="" />'; + $o .= '<input type="text" class="icon-search" name="search" id="search-text" placeholder="" value="' . $s .'" onclick="this.submit();" />'; + $o .= '<input type="submit" name="submit" id="search-submit" value="' . t('Search') . '" />'; + if(feature_enabled(local_user(),'savedsearch')) + $o .= '<input type="submit" name="searchsave" id="search-save" value="' . t('Save') . '" />'; + $o .= '</form></div>'; + return $o; +} + + function valid_email($x){ if(get_config('system','disable_email_validation')) |