2011-07-12 08:00:07 +00:00
|
|
|
<?
|
|
|
|
function print_compose_staff_pm($Hidden = true) { ?>
|
|
|
|
<div id="compose" class="<?=($Hidden ? 'hidden' : '')?>">
|
2012-09-15 08:00:25 +00:00
|
|
|
<form class="send_form" name="staff_message" action="staffpm.php" method="post">
|
2011-07-12 08:00:07 +00:00
|
|
|
<input type="hidden" name="action" value="takepost" />
|
2012-09-09 08:00:26 +00:00
|
|
|
<h3><label for="subject">Subject</label></h3>
|
2011-07-12 08:00:07 +00:00
|
|
|
<input size="95" type="text" name="subject" id="subject" />
|
|
|
|
<br />
|
|
|
|
|
2012-09-09 08:00:26 +00:00
|
|
|
<h3><label for="message">Message</label></h3>
|
2011-07-12 08:00:07 +00:00
|
|
|
<textarea rows="10" cols="95" name="message" id="message"></textarea>
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<strong>Send to: </strong>
|
|
|
|
<select name="level">
|
|
|
|
<option value="0" selected="selected">First Line Support</option>
|
|
|
|
<option value="650">Forum Moderators</option>
|
|
|
|
<option value="700">Staff</option>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<input type="submit" value="Send message" />
|
2012-09-09 08:00:26 +00:00
|
|
|
<input type="button" value="Hide" onclick="$('#compose').toggle();return false;" />
|
2011-07-12 08:00:07 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
2012-09-15 08:00:25 +00:00
|
|
|
<? } ?>
|