2021-12-15 01:27:17 +03:00
|
|
|
{extends "../@layout.xml"}
|
|
|
|
{block title}{_new_topic}{/block}
|
|
|
|
|
|
|
|
{block header}
|
|
|
|
<a href="{$club->getURL()}">{$club->getCanonicalName()}</a>
|
|
|
|
»
|
|
|
|
<a href="/board{$club->getId()}">{_discussions}</a>
|
|
|
|
»
|
|
|
|
{_new_topic}
|
|
|
|
{/block}
|
|
|
|
|
|
|
|
{block content}
|
|
|
|
<form method="POST" enctype="multipart/form-data">
|
|
|
|
<table cellspacing="7" cellpadding="0" width="80%" border="0" align="center">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td width="120" valign="top">
|
|
|
|
<span class="nobold">{_title}</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input type="text" name="title" style="width: 100%;" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td width="120" valign="top">
|
|
|
|
<span class="nobold">{_text}</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<textarea id="wall-post-input1" name="text" style="width: 100%; resize: none;"></textarea>
|
|
|
|
<div n:if="$club->canBeModifiedBy($thisUser)" class="post-opts">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" name="as_group" onchange="onWallAsGroupClick(this)" /> {_post_as_group}
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div id="post-buttons1">
|
|
|
|
<div class="post-upload">
|
|
|
|
{_attachment}: <span>(unknown)</span>
|
|
|
|
</div>
|
|
|
|
<input type="file" class="postFileSel" id="postFilePic" name="_pic_attachment" accept="image/*" style="display: none;" />
|
2023-05-27 09:31:20 +03:00
|
|
|
<input n:if="!OPENVK_ROOT_CONF['openvk']['preferences']['videos']['disableUploading']" type="file" class="postFileSel" id="postFileVid" name="_vid_attachment" accept="video/*" style="display: none;" />
|
2021-12-15 01:27:17 +03:00
|
|
|
<br/>
|
|
|
|
<div style="float: right; display: flex; flex-direction: column;">
|
|
|
|
<a href="javascript:void(u('#post-buttons1 #wallAttachmentMenu').toggleClass('hidden'));">
|
|
|
|
{_attach}
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<div id="wallAttachmentMenu" class="hidden">
|
|
|
|
<a href="javascript:void(document.querySelector('#post-buttons1 input[name=_pic_attachment]').click());">
|
|
|
|
<img src="/assets/packages/static/openvk/img/oxygen-icons/16x16/mimetypes/application-x-egon.png" />
|
|
|
|
{_attach_photo}
|
|
|
|
</a>
|
2023-05-27 09:31:20 +03:00
|
|
|
<a n:if="!OPENVK_ROOT_CONF['openvk']['preferences']['videos']['disableUploading']" href="javascript:void(document.querySelector('#post-buttons1 input[name=_vid_attachment]').click());">
|
2021-12-15 01:27:17 +03:00
|
|
|
<img src="/assets/packages/static/openvk/img/oxygen-icons/16x16/mimetypes/application-vnd.rn-realmedia.png" />
|
|
|
|
{_attach_video}
|
|
|
|
</a>
|
|
|
|
<a n:if="$graffiti ?? false" href="javascript:initGraffiti(1);">
|
|
|
|
<img src="/assets/packages/static/openvk/img/oxygen-icons/16x16/actions/draw-brush.png" />
|
|
|
|
{_draw_graffiti}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input type="hidden" name="hash" value="{$csrfToken}" />
|
|
|
|
<input type="submit" value="{_create_topic}" class="button" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<input type="hidden" name="hash" value="{$csrfToken}" />
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
$(document).ready(() => {
|
|
|
|
u("#post-buttons1 .postFileSel").on("change", function() {
|
|
|
|
handleUpload.bind(this, 1)();
|
|
|
|
});
|
|
|
|
|
|
|
|
setupWallPostInputHandlers(1);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
{if $graffiti}
|
|
|
|
{script "js/node_modules/react/dist/react-with-addons.min.js"}
|
|
|
|
{script "js/node_modules/react-dom/dist/react-dom.min.js"}
|
|
|
|
{script "js/vnd_literallycanvas.js"}
|
|
|
|
{css "js/node_modules/literallycanvas/lib/css/literallycanvas.css"}
|
|
|
|
{/if}
|
|
|
|
{/block}
|