[ Index ] |
|
Code source de Phorum 5.1.25 |
1 <div class="PhorumNavBlock" style="text-align: left;"> 2 <span class="PhorumNavHeading PhorumHeadingLeft">{LANG->Goto}:</span> {IF URL->INDEX}<a class="PhorumNavLink" href="{URL->INDEX}">{LANG->ForumList}</a>•{/IF}{IF URL->TOP}<a class="PhorumNavLink" href="{URL->TOP}">{LANG->MessageList}</a>•{/IF}{IF URL->POST}<a class="PhorumNavLink" href="{URL->POST}">{LANG->NewTopic}</a>•{/IF}{INCLUDE loginout_menu} 3 </div><br /> 4 {IF SEARCH->noresults} 5 <div align="center"> 6 <div class="PhorumStdBlockHeader PhorumNarrowBlock PhorumHeaderText" style="text-align: left;"> 7 {LANG->NoResults} 8 </div> 9 <div class="PhorumStdBlock PhorumNarrowBlock" style="text-align: left;"> 10 <div class="PhorumFloatingText"> 11 {LANG->NoResultsHelp} 12 </div> 13 </div> 14 </div><br /> 15 {/IF} 16 {IF SEARCH->showresults} 17 {INCLUDE paging} 18 <div class="PhorumStdBlockHeader" style="text-align: left;"> 19 <span class="PhorumHeadingLeft">{LANG->Results} {RANGE_START} - {RANGE_END} {LANG->of} {TOTAL}</span> 20 </div> 21 <div class="PhorumStdBlock"> 22 {LOOP MATCHES} 23 <div class="PhorumRowBlock"> 24 <div class="PhorumColumnFloatLarge">{MATCHES->datestamp}</div> 25 <div class="PhorumColumnFloatMedium">{MATCHES->author}</div> 26 <div style="margin-right: 370px" class="PhorumLargeFont">{MATCHES->number}. <a href="{MATCHES->url}">{MATCHES->subject}</a></div> 27 <div class="PhorumFloatingText"> 28 {MATCHES->short_body}<br /> 29 {IF MATCHES->forum_id} 30 {LANG->Forum}: <a href="{MATCHES->forum_url}">{MATCHES->forum_name}</a> 31 {ELSE} 32 ({LANG->Announcement}) 33 {/IF} 34 </div> 35 </div> 36 {/LOOP MATCHES} 37 </div> 38 {INCLUDE paging} 39 <div class="PhorumNavBlock" style="text-align: left;"> 40 <span class="PhorumNavHeading PhorumHeadingLeft">{LANG->Goto}:</span> <a class="PhorumNavLink" href="{URL->INDEX}">{LANG->ForumList}</a>•<a class="PhorumNavLink" href="{URL->TOP}">{LANG->MessageList}</a>•<a class="PhorumNavLink" href="{URL->POST}">{LANG->NewTopic}</a>•{IF LOGGEDIN true}<a class="PhorumNavLink" href="{URL->REGISTERPROFILE}">{LANG->MyProfile}</a>•<a class="PhorumNavLink" href="{URL->LOGINOUT}">{LANG->LogOut}</a>{ELSE}<a class="PhorumNavLink" href="{URL->LOGINOUT}">{LANG->LogIn}</a>{/IF} 41 </div><br /> 42 {/IF} 43 <table width=100% border="0" cellspacing="0" cellpadding="0"> 44 <tr> 45 <td class="PhorumStdBlockHeader PhorumNarrowBlock" style="text-align: left;"><b>{LANG->SearchMessages}</b></td> 46 <td style="width: 10px"> </td> 47 <td class="PhorumStdBlockHeader PhorumNarrowBlock" style="text-align: left;"><b>{LANG->SearchAuthors}</b></td> 48 </tr> 49 <tr> 50 <td class="PhorumStdBlock PhorumNarrowBlock" style="padding: 10px;"> 51 <form action="{URL->ACTION}" method="get" style="display: inline;"> 52 <input type="hidden" name="forum_id" value="{SEARCH->forum_id}" /> 53 {POST_VARS} 54 <input type="text" name="search" id="phorum_search_message" size="30" maxlength="" value="{SEARCH->safe_search}" /> <input type="submit" value="{LANG->Search}" /><br /> 55 <div style="margin-top: 3px;"> 56 <select name="match_forum"> 57 <option value="ALL" {IF SEARCH->match_forum "ALL"}selected{/IF}>{LANG->MatchAllForums}</option> 58 {IF SEARCH->allow_match_one_forum} 59 <option value="THISONE" {IF SEARCH->match_forum "THISONE"}selected{/IF}>{LANG->MatchThisForum}</option> 60 {/IF} 61 </select> 62 </div> 63 <div style="margin-top: 3px;"> 64 <select name="match_dates"> 65 <option value="30" {IF SEARCH->match_dates 30}selected{/IF}>{LANG->Last30Days}</option> 66 <option value="90" {IF SEARCH->match_dates 90}selected{/IF}>{LANG->Last90Days}</option> 67 <option value="365" {IF SEARCH->match_dates 365}selected{/IF}>{LANG->Last365Days}</option> 68 <option value="0" {IF SEARCH->match_dates 0}selected{/IF}>{LANG->AllDates}</option> 69 </select> <select name="match_type"> 70 <option value="ALL" {IF SEARCH->match_type "ALL"}selected{/IF}>{LANG->MatchAll}</option> 71 <option value="ANY" {IF SEARCH->match_type "ANY"}selected{/IF}>{LANG->MatchAny}</option> 72 <option value="PHRASE" {IF SEARCH->match_type "PHRASE"}selected{/IF}>{LANG->MatchPhrase}</option> 73 </select> 74 </div> 75 </form> 76 </td> 77 <td style="width: 10px"> </td> 78 <td class="PhorumStdBlock PhorumNarrowBlock" style="padding: 10px;"> 79 <form action="{URL->ACTION}" method="get" style="display: inline;"> 80 <input type="hidden" name="forum_id" value="{SEARCH->forum_id}" /> 81 <input type="hidden" name="match_type" value="AUTHOR" /> 82 {POST_VARS} 83 <input type="text" id="phorum_search_author" name="search" size="30" maxlength="" value="{SEARCH->safe_search}" /> <input type="submit" value="{LANG->Search}" /><br /> 84 <div style="margin-top: 3px;"> 85 <select name="match_forum"> 86 <option value="ALL" {IF SEARCH->match_forum "ALL"}selected{/IF}>{LANG->MatchAllForums}</option> 87 {IF SEARCH->allow_match_one_forum} 88 <option value="THISONE" {IF SEARCH->match_forum "THISONE"}selected{/IF}>{LANG->MatchThisForum}</option> 89 {/IF} 90 </select> 91 </div> 92 <div style="margin-top: 3px;"> 93 <select name="match_dates"> 94 <option value="30" {IF SEARCH->match_dates 30}selected{/IF}>{LANG->Last30Days}</option> 95 <option value="90" {IF SEARCH->match_dates 90}selected{/IF}>{LANG->Last90Days}</option> 96 <option value="365" {IF SEARCH->match_dates 365}selected{/IF}>{LANG->Last365Days}</option> 97 <option value="0" {IF SEARCH->match_dates 0}selected{/IF}>{LANG->AllDates}</option> 98 </select> 99 </div> 100 </form> 101 </td> 102 </tr> 103 </table>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Thu Nov 29 12:22:27 2007 | par Balluche grâce à PHPXref 0.7 |
![]() |