mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-08 07:09:20 +02:00

- Updated Admin Panel to Bootstrap 4. - Code cleanup - Rewrote menu generation code - Added top 10 coins, top 10 premium points, last 10 logins to modules page. - Added full account list to Account editor - Added load outfits from XML to player editor and lists all enabled outfits in editor (will default to textbox if array of outfits do not exist) - Added tabs to account editor - account, characters,store history, bans(this is based off the bans.php page so will not work on TFS 0.2/1.0) - Updated datepickers to display the actual date rather than unix time. - Added last 10 posts to player editor
39 lines
1.9 KiB
Twig
39 lines
1.9 KiB
Twig
<script type="text/javascript" src="{{ constant('BASE_URL') }}tools/tinymce/tinymce.min.js"></script>
|
|
<script type="text/javascript">
|
|
tinymce.init({
|
|
selector: "textarea",
|
|
theme: "modern",
|
|
plugins: 'print preview searchreplace autolink directionality visualblocks visualchars fullscreen image link media template codesample table charmap hr pagebreak nonbreaking anchor toc insertdatetime advlist lists textcolor wordcount spellchecker imagetools contextmenu colorpicker textpattern help code emoticons',
|
|
toolbar1: 'formatselect | bold italic strikethrough forecolor backcolor | emoticons link | alignleft aligncenter alignright alignjustify | numlist bullist outdent indent | removeformat code',
|
|
image_advtab: true,
|
|
relative_urls: false,
|
|
remove_script_host: false,
|
|
document_base_url: "{{ constant('BASE_URL') }}"
|
|
});
|
|
</script>
|
|
<div align="center" class="text-center"><p class="note">Sending mails may take some time if there are many users in db.</p></div>
|
|
<div class="card card-info card-outline">
|
|
<div class="card-header">
|
|
<h5 class="m-0">Mailer</h5>
|
|
</div>
|
|
<form method="post">
|
|
<div class="card-body">
|
|
<div class="form-group row">
|
|
<label for="mail_subject">Subject:</label>
|
|
<input class="form-control" type="text" id="mail_subject" name="mail_subject"
|
|
value="{{ mail_subject }}" size="30" maxlength="30"/>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label for="mail_content" class="control-label">Content:</label>
|
|
<textarea id="mail_content" name="mail_content" style="width: 100%" class="tinymce">{{ mail_content }}</textarea>
|
|
</div>
|
|
<div class="form-group row">
|
|
<input type="checkbox" name="preview" id="preview" value="1"/><label for="category">Just send test email to me (preview)</label>{% if preview_done %} - <b>Done.</b>{% endif %}
|
|
</div>
|
|
</div>
|
|
<div class="card-footer">
|
|
<button type="submit" class="btn btn-info"><i class="fas fa-share"></i> Send</button>
|
|
</div>
|
|
</form>
|
|
</div>
|