[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 <!-- INCLUDE overall_header.html --> 2 3 <h2 class="solo">{L_SEARCH}</h2> 4 5 <!-- EVENT search_body_form_before --> 6 <form method="get" action="{S_SEARCH_ACTION}" data-focus="keywords"> 7 8 <div class="panel"> 9 <div class="inner"> 10 <h3>{L_SEARCH_QUERY}</h3> 11 12 <!-- EVENT search_body_search_query_before --> 13 <fieldset> 14 <!-- EVENT search_body_search_query_prepend --> 15 <dl> 16 <dt><label for="keywords">{L_SEARCH_KEYWORDS}{L_COLON}</label><br /><span>{L_SEARCH_KEYWORDS_EXPLAIN}</span></dt> 17 <dd><input type="search" class="inputbox" name="keywords" id="keywords" size="40" title="{L_SEARCH_KEYWORDS}" /></dd> 18 <dd><label for="terms1"><input type="radio" name="terms" id="terms1" value="all" checked="checked" /> {L_SEARCH_ALL_TERMS}</label></dd> 19 <dd><label for="terms2"><input type="radio" name="terms" id="terms2" value="any" /> {L_SEARCH_ANY_TERMS}</label></dd> 20 </dl> 21 <dl> 22 <dt><label for="author">{L_SEARCH_AUTHOR}{L_COLON}</label><br /><span>{L_SEARCH_AUTHOR_EXPLAIN}</span></dt> 23 <dd><input type="search" class="inputbox" name="author" id="author" size="40" title="{L_SEARCH_AUTHOR}" /></dd> 24 </dl> 25 <!-- EVENT search_body_search_query_append --> 26 </fieldset> 27 <!-- EVENT search_body_search_query_after --> 28 29 </div> 30 </div> 31 32 <div class="panel bg2"> 33 <div class="inner"> 34 35 <h3>{L_SEARCH_OPTIONS}</h3> 36 37 <!-- EVENT search_body_search_options_before --> 38 <fieldset> 39 <!-- EVENT search_body_search_options_prepend --> 40 <dl> 41 <dt><label for="search_forum">{L_SEARCH_FORUMS}{L_COLON}</label><br /><span>{L_SEARCH_FORUMS_EXPLAIN}</span></dt> 42 <dd><select name="fid[]" id="search_forum" multiple="multiple" size="8" title="{L_SEARCH_FORUMS}">{S_FORUM_OPTIONS}</select></dd> 43 </dl> 44 <dl> 45 <dt><label for="search_child1">{L_SEARCH_SUBFORUMS}{L_COLON}</label></dt> 46 <dd> 47 <label for="search_child1"><input type="radio" name="sc" id="search_child1" value="1" checked="checked" /> {L_YES}</label> 48 <label for="search_child2"><input type="radio" name="sc" id="search_child2" value="0" /> {L_NO}</label> 49 </dd> 50 </dl> 51 <dl> 52 <dt><label for="sf1">{L_SEARCH_WITHIN}{L_COLON}</label></dt> 53 <dd><label for="sf1"><input type="radio" name="sf" id="sf1" value="all" checked="checked" /> {L_SEARCH_TITLE_MSG}</label></dd> 54 <dd><label for="sf2"><input type="radio" name="sf" id="sf2" value="msgonly" /> {L_SEARCH_MSG_ONLY}</label></dd> 55 <dd><label for="sf3"><input type="radio" name="sf" id="sf3" value="titleonly" /> {L_SEARCH_TITLE_ONLY}</label></dd> 56 <dd><label for="sf4"><input type="radio" name="sf" id="sf4" value="firstpost" /> {L_SEARCH_FIRST_POST}</label></dd> 57 </dl> 58 <!-- EVENT search_body_search_options_append --> 59 60 <hr class="dashed" /> 61 62 <!-- EVENT search_body_search_display_options_prepend --> 63 <dl> 64 <dt><label for="show_results1">{L_DISPLAY_RESULTS}{L_COLON}</label></dt> 65 <dd> 66 <label for="show_results1"><input type="radio" name="sr" id="show_results1" value="posts" checked="checked" /> {L_POSTS}</label> 67 <label for="show_results2"><input type="radio" name="sr" id="show_results2" value="topics" /> {L_TOPICS}</label> 68 </dd> 69 </dl> 70 <dl> 71 <dt><label for="sd">{L_RESULT_SORT}{L_COLON}</label></dt> 72 <dd>{S_SELECT_SORT_KEY} 73 <label for="sa"><input type="radio" name="sd" id="sa" value="a" /> {L_SORT_ASCENDING}</label> 74 <label for="sd"><input type="radio" name="sd" id="sd" value="d" checked="checked" /> {L_SORT_DESCENDING}</label> 75 </dd> 76 </dl> 77 <dl> 78 <dt><label>{L_RESULT_DAYS}{L_COLON}</label></dt> 79 <dd>{S_SELECT_SORT_DAYS}</dd> 80 </dl> 81 <dl> 82 <dt> 83 <label for="ch">{{ lang('RETURN_FIRST') ~ lang('COLON') }}</label> 84 <br><span>{{ lang('RETURN_FIRST_EXPLAIN') }}</span> 85 </dt> 86 <dd><input id="ch" name="ch" type="number" value="{{ DEFAULT_RETURN_CHARS }}" min="0" max="9999" title="{{ lang('RETURN_FIRST') }}"> {{ lang('POST_CHARACTERS') }}</dd> 87 </dl> 88 <!-- EVENT search_body_search_display_options_append --> 89 </fieldset> 90 <!-- EVENT search_body_search_options_after --> 91 92 </div> 93 </div> 94 95 <div class="panel bg3"> 96 <div class="inner"> 97 98 <fieldset class="submit-buttons"> 99 {S_HIDDEN_FIELDS} 100 <input type="submit" name="submit" value="{L_SEARCH}" class="button1" /> 101 </fieldset> 102 103 </div> 104 </div> 105 106 </form> 107 <!-- EVENT search_body_form_after --> 108 109 <!-- EVENT search_body_recent_search_before --> 110 <!-- IF .recentsearch --> 111 <div class="forumbg forumbg-table"> 112 <div class="inner"> 113 114 <table class="table1"> 115 <thead> 116 <tr> 117 <th colspan="2" class="name">{L_RECENT_SEARCHES}</th> 118 </tr> 119 </thead> 120 <tbody> 121 <!-- BEGIN recentsearch --> 122 <tr class="<!-- IF recentsearch.S_ROW_COUNT is even -->bg1<!-- ELSE -->bg2<!-- ENDIF -->"> 123 <td><a href="{recentsearch.U_KEYWORDS}">{recentsearch.KEYWORDS}</a></td> 124 <td class="active">{recentsearch.TIME}</td> 125 </tr> 126 <!-- BEGINELSE --> 127 <tr class="bg1"> 128 <td colspan="2">{L_NO_RECENT_SEARCHES}</td> 129 </tr> 130 <!-- END recentsearch --> 131 </tbody> 132 </table> 133 134 </div> 135 </div> 136 <!-- ENDIF --> 137 <!-- EVENT search_body_recent_search_after --> 138 139 <!-- INCLUDE overall_footer.html -->
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |