1
0
Fork 0
Dieser Commit ist enthalten in:
DSB 2011-06-10 22:58:43 +00:00
Commit 25d3a3ee93
246 geänderte Dateien mit 25170 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -0,0 +1,68 @@
<div id="sqlsearch">
<form action="sql.php?search=1" method="POST" name="suche">
<fieldset>
<legend><b>{LANG_SQLSEARCH}</b></legend>
<b>{LANG_SQL_SEARCHWORDS}:</b> <input type="text" style="width:300px;" name="suchbegriffe" value="{SUCHBEGRIFFE}">
<input type="submit" name="suche" value="{LANG_START_SQLSEARCH}" class="SQLbutton">
<input type="submit" name="reset" value="{LANG_RESET_SEARCHWORDS}" class="SQLbutton" onclick="document.suche.suchbegriffe.value='';">
<span style="font-size:10px;">{LANG_SEARCH_EXPLAIN}</br></span>
<fieldset>
<legend><b>{LANG_SEARCH_OPTIONS}</b></legend>
<input type="radio" id="and" name="suchart" value="AND"{AND_SEARCH}>
<label for="and" onmouseover="this.style.cursor='pointer'">{LANG_SEARCH_OPTIONS_AND}</label>
<br>
<input type="radio" id="or" name="suchart" value="OR"{OR_SEARCH}>
<label for="or" onmouseover="this.style.cursor='pointer'">{LANG_SEARCH_OPTIONS_OR}</label>
<br>
<input type="radio" id="concat" name="suchart" value="CONCAT"{CONCAT_SEARCH}>
<label for="concat" onmouseover="this.style.cursor='pointer'">{LANG_SEARCH_OPTIONS_CONCAT}</label>
<br>
{LANG_SEARCH_IN_TABLE}:&nbsp;&nbsp;
<select name="table_selected" size="1" onchange="document.suche.submit();">
{TABLE_OPTIONS}
</select>
<input type="hidden" name="offset" value="0">
</fieldset>
</fieldset>
</form>
</div>
<!-- BEGIN HITS -->
{HITS.LANG_SEARCH_RESULTS}:<br>
<input type="button" value="&nbsp;<<&nbsp;" class="SQLbutton"
onclick="document.suche.offset.value='{HITS.LAST_OFFSET}';document.suche.submit();"
{HITS.BACK_BUTTON_DISABLED} accesskey="c">&nbsp;&nbsp;
<input type="button" value="&nbsp;>>&nbsp;" class="SQLbutton"
onclick="document.suche.offset.value='{HITS.NEXT_OFFSET}';document.suche.submit();"
{HITS.NEXT_BUTTON_DISABLED} accesskey="v">&nbsp;&nbsp;
{HITS.LANG_ACCESS_KEYS}
<table border="1" cellpadding="0" cellspacing="0" width="100%" class="bordersmall">
<tr class="thead">
<th class="thead">Nr.</th>
<!-- BEGIN TABLEHEAD -->
<th class="thead">{HITS.TABLEHEAD.KEY}</th>
<!-- END TABLEHEAD -->
</tr>
<!-- BEGIN TABLEROW -->
<tr class="{HITS.TABLEROW.CLASS}">
<td><a href="sql.php?tablename=besucher&amp;dbid=0&amp;mode=edit">{HITS.TABLEROW.NR}.</a></td>
<!-- BEGIN TABLEDATA -->
<td>{HITS.TABLEROW.TABLEDATA.VAL}</td>
<!-- END TABLEDATA -->
</tr>
<!-- END TABLEROW -->
</table>
<!-- END HITS -->
<!-- BEGIN NO_RESULTS -->
{NO_RESULTS.LANG_SEARCH_NO_RESULTS}
<!-- END NO_RESULTS -->
<!-- BEGIN NO_ENTRIES -->
{NO_ENTRIES.LANG_NO_ENTRIES}
<!-- END NO_ENTRIES -->
<script type="text/javascript">document.suche.suchbegriffe.focus();</script>

Datei anzeigen

@ -0,0 +1,46 @@
<!-- BEGIN SQLUPLOAD -->
<form action="{SQLUPLOAD.POSTTARGET}" method="post" enctype="multipart/form-data">
<table class="bordersmall">
<tr>
<td>{SQLUPLOAD.LANG_OPENSQLFILE}</td>
<td><input type="file" name="upfile" class="SQLbutton"></td>
<td><input type="submit" class="SQLbutton" name="submit_openfile" value="{SQLUPLOAD.LANG_OPENSQLFILE_BUTTON}"></td>
<td>{SQLUPLOAD.LANG_SQL_MAXSIZE}: <b>{SQLUPLOAD.MAX_FILESIZE}</b></td>
</tr>
</table>
</form>
<!-- END SQLUPLOAD -->
<div id="mysqlbox">
<form action="sql.php" method="post">
<div id="sqlheaderbox">
<a href="#" onclick="resizeSQL(0);">
<img src="{ICONPATH}close.gif" width="16" height="16" alt="" border="0" vspace="0" hspace="0" align="bottom"></a>&nbsp;&nbsp;
<a href="#" onclick="resizeSQL(1);">
<img src="{ICONPATH}arrowup.gif" width="16" height="16" alt="show less" border="0" vspace="0" hspace="0" align="bottom"></a>
&nbsp;<a href="#" onclick="resizeSQL(2);"><img src="{ICONPATH}arrowdown.gif" width="16" height="16" alt="show more" border="0" vspace="0" hspace="0" align="bottom"></a>
&nbsp;&nbsp;&nbsp;
<input class="SQLbutton" type="button" onclick="document.location.href='{PARAMS}&amp;context=1'" value="{LANG_SQL_BEFEHLE}">
<!-- BEGIN SQLCOMBO -->
{SQLCOMBO.SQL_COMBOBOX}&nbsp;&nbsp;
<!-- END SQLCOMBO -->
{TABLE_COMBOBOX}&nbsp;
<input class="SQLbutton" type="reset" name="reset" value="reset">&nbsp;
<input class="SQLbutton" type="submit" name="execsql" value="{LANG_SQL_EXEC}">&nbsp;
&nbsp;&nbsp;<a href="{PARAMS}&amp;readfile=1" title="read file"><img src="{ICONPATH}openfile.gif" width="16" height="16" alt="read file" border="0"></a>
&nbsp;&nbsp;<a href="{PARAMS}&amp;search=1" title="Mysql-Search"><img src="{ICONPATH}search.gif" width="16" height="16" alt="" border="0"></a>
&nbsp;&nbsp;<a href="'.$mysql_help_ref.'" target="_blank" title="Mysql-Hilfe"><img src="{ICONPATH}help16.gif" width="16" height="16" alt="" border="0"></a>
</div>
<!-- Eingabebox -->
<div id="sbox2">
<textarea rows="4" cols="10" style="height:{BOXSIZE}px;" name="sqltextarea" id="sqltextarea">{BOXCONTENT}</textarea>
<div class="ssmall" align="center">{LANG_SQL_WARNING}</div>
<input type="hidden" name="db" value="{DB}">
<input type="hidden" name="tablename" value="{TABLENAME}">
<input type="hidden" name="dbid" value="{DBID}">
</div>
</form>
</div>
<br>