mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-25 20:44:01 +01:00
* 'develop' of https://github.com/phpbb/phpbb3: [ticket/11408] user_jabber instead of jabber [ticket/10202] Rename method names _all() to _array(). [ticket/10202] Add migration file for config_db_text. [ticket/10202] Upgrade TEXT to the bigger MTEXT. [ticket/10202] Improve method documentation. [ticket/10202] SQL escape the table name. [ticket/10202] Add $this->db->sql_freeresult($result) to SELECT queries. [ticket/10202] Define phpbb_config_db_text as a service. [ticket/10202] Add tests for phpbb_config_db_text. [ticket/10202] Adjust method names to guidelines. [ticket/10202] Add database schema for phpbb_config_db_text. [ticket/10202] Implementation of config options with arbitrary length values. [ticket/11166] Add ajaxify support to normal ACP confirm_box() [ticket/11166] Fix several custom confirm templates in prosilver [ticket/11166] Add caption to AJAX confirm box default template [ticket/11166] Fix typo in comment [ticket/11166] Use provided custom templates on AJAX confirm box
82 lines
2.6 KiB
HTML
82 lines
2.6 KiB
HTML
<!-- IF S_AJAX_REQUEST -->
|
|
|
|
<h3>{MESSAGE_TITLE}</h3>
|
|
<p>{MESSAGE_TEXT}</p>
|
|
|
|
<!-- IF S_NOTIFY_POSTER -->
|
|
<label><input type="checkbox" name="notify_poster" checked="checked" /> <!-- IF S_APPROVE -->{L_NOTIFY_POSTER_APPROVAL}<!-- ELSE -->{L_NOTIFY_POSTER_DISAPPROVAL}<!-- ENDIF --></label>
|
|
<!-- ENDIF -->
|
|
|
|
<!-- IF not S_APPROVE -->
|
|
<label><strong>{L_DISAPPROVE_REASON}{L_COLON}</strong>
|
|
<select name="reason_id">
|
|
<!-- BEGIN reason --><option value="{reason.ID}"<!-- IF reason.S_SELECTED --> selected="selected"<!-- ENDIF -->>{reason.DESCRIPTION}</option><!-- END reason -->
|
|
</select></label>
|
|
|
|
<label><strong>{L_MORE_INFO}{L_COLON}</strong><br /><span>{L_CAN_LEAVE_BLANK}</span>
|
|
<textarea class="inputbox" name="reason" id="reason" rows="4" cols="40">{REASON}</textarea>
|
|
</label>
|
|
<!-- ENDIF -->
|
|
|
|
<fieldset class="submit-buttons">
|
|
<input type="button" name="confirm" value="{YES_VALUE}" class="button1" />
|
|
<input type="button" name="cancel" value="{L_NO}" class="button2" />
|
|
</fieldset>
|
|
|
|
<!-- ELSE -->
|
|
|
|
<!-- INCLUDE overall_header.html -->
|
|
|
|
<form id="confirm" action="{S_CONFIRM_ACTION}" method="post">
|
|
<div class="panel">
|
|
{S_FORM_TOKEN}
|
|
<div class="inner">
|
|
|
|
<div class="content">
|
|
|
|
<h2>{MESSAGE_TITLE}</h2>
|
|
<!-- IF ADDITIONAL_MSG --><p class="error">{ADDITIONAL_MSG}</p><!-- ENDIF -->
|
|
|
|
<fieldset>
|
|
<!-- IF S_NOTIFY_POSTER -->
|
|
<dl class="panel">
|
|
<dt> </dt>
|
|
<dd><label><input type="checkbox" name="notify_poster" checked="checked" /> <!-- IF S_APPROVE -->{L_NOTIFY_POSTER_APPROVAL}<!-- ELSE -->{L_NOTIFY_POSTER_DISAPPROVAL}<!-- ENDIF --></label></dd>
|
|
</dl>
|
|
<!-- ENDIF -->
|
|
|
|
<!-- IF not S_APPROVE and not S_RESTORE -->
|
|
<dl class="fields2 nobg">
|
|
<dt><label>{L_DISAPPROVE_REASON}{L_COLON}</label></dt>
|
|
<dd><select name="reason_id">
|
|
<!-- BEGIN reason --><option value="{reason.ID}"<!-- IF reason.S_SELECTED --> selected="selected"<!-- ENDIF -->>{reason.DESCRIPTION}</option><!-- END reason -->
|
|
</select>
|
|
</dd>
|
|
</dl>
|
|
<dl class="fields2 nobg">
|
|
<dt><label for="reason">{L_MORE_INFO}{L_COLON}</label><br /><span>{L_CAN_LEAVE_BLANK}</span></dt>
|
|
<dd><textarea class="inputbox" name="reason" id="reason" rows="4" cols="40">{REASON}</textarea></dd>
|
|
</dl>
|
|
<!-- ENDIF -->
|
|
|
|
<dl class="fields2 nobg">
|
|
<dt> </dt>
|
|
<dd><strong>{MESSAGE_TEXT}</strong></dd>
|
|
</dl>
|
|
</fieldset>
|
|
|
|
<fieldset class="submit-buttons">
|
|
{S_HIDDEN_FIELDS}<input type="submit" name="confirm" value="{YES_VALUE}" class="button1" />
|
|
<input type="submit" name="cancel" value="{L_NO}" class="button2" />
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<!-- INCLUDE overall_footer.html -->
|
|
<!-- ENDIF -->
|