1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 17:34:26 +03:00
ifhub.club/application/frontend/skin/developer/comments/comment.form.tpl
2014-05-19 13:35:34 +07:00

35 lines
1.5 KiB
Smarty

{**
* Форма комментирования
*
* @param integer $iTargetId
* @param string $sTargetType
*
* @styles css/comments.css
*}
{* Подключение редактора *}
{* Форма *}
<form method="post" class="comment-form js-comment-form" enctype="multipart/form-data" data-target-id="{$iTargetId}" data-target-type="{$sTargetType}">
{hook run='form_add_comment_begin'}
{* Текст комментария *}
{include 'components/editor/editor.tpl' sSet='light' sName='comment_text' sId='form_comment_text' bShowHelp=false sMediaTargetType='comment'}
{hook run='form_add_comment_end'}
{* Скрытые поля *}
{include 'components/field/field.hidden.tpl' sName='reply' sValue='0' sId='form_comment_reply'}
{include 'components/field/field.hidden.tpl' sName='cmt_target_id' sValue=$iTargetId}
{* Кнопки создания *}
{include 'components/button/button.tpl' sName='submit_comment' sText=$aLang.common.add sMods='primary' sClasses='js-comment-form-submit'}
{* Кнопки редактирования *}
{include 'components/button/button.tpl' sName='submit_comment' sType='button' sText=$aLang.common.save sMods='primary' sClasses='js-comment-form-update-submit hide'}
{include 'components/button/button.tpl' sName='submit_comment' sType='button' sText=$aLang.common.cancel sClasses='js-comment-form-update-cancel fl-r hide'}
{* Общие кнопки *}
{include 'components/button/button.tpl' sText=$aLang.common.preview_text sType='button' sClasses='js-comment-form-preview'}
</form>