ZNC-Extra no more.

Few the most useless modules are just removed, the others are moved to
standard modules.
This commit is contained in:
Alexey Sokolov
2012-02-21 19:34:36 +07:00
parent fc8e789b08
commit 7ac61474ed
25 changed files with 27 additions and 444 deletions
+43
View File
@@ -0,0 +1,43 @@
<? INC Header.tmpl ?>
<form method="post" action="<? VAR ModPath ?>">
<? INC _csrf_check.tmpl ?>
<div class="section">
<h3>Send a raw IRC line</h3>
<div class="sectionbg">
<div class="sectionbody">
<div class="subsection third">
<div class="inputlabel">User:</div>
<div><select name="user">
<? LOOP UserLoop?>
<option value="<? VAR Username ESC=HTML ?>"><? VAR Username ESC=HTML ?></option>
<? ENDLOOP ?>
</select></div>
</div>
<div class="subsection third">
<div class="inputlabel">Send to:</div>
<div>
<select name="send_to">
<option value="client"<? IF to_client ?> selected="yes"<? ENDIF ?>>Client</option>
<option value="server"<? IF to_server ?> selected="yes"<? ENDIF ?>>Server</option>
</select>
</div>
</div>
<div class="subsection full">
<div class="inputlabel">Line:</div>
<div><input type="text" name="line" value="<? VAR line ?>" /></div>
</div>
<div class="subsection submitline">
<input type="submit" value="Send">
</div>
</div>
</div>
</div>
</form>
<? INC Footer.tmpl ?>