1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-17 00:08:17 +03:00
ifhub.club/application/frontend/components/topic/topic-add.tpl

223 lines
8.7 KiB
Smarty
Raw Normal View History

2014-07-28 19:55:18 +03:00
{**
* Базовая форма создания топика
*
* @param object $topic
* @param object $type
* @param array $blogs
* @param array $blogId
2014-07-28 19:55:18 +03:00
*}
{component_define_params params=[ 'topic', 'type', 'skipBlogs', 'blogs', 'classes' ]}
2014-07-28 19:55:18 +03:00
<form action="" method="POST" enctype="multipart/form-data" id="topic-add-form" class="{$classes} js-form-validate" data-content-action="{( $topic ) ? 'edit' : 'add'}">
2017-03-21 23:12:46 +02:00
{hook run="form_add_topic_begin" topic=$topic}
{block 'add_topic_form_begin'}{/block}
2014-07-28 19:55:18 +03:00
{* Выбор блога *}
2016-04-07 12:40:28 +03:00
{if ! $skipBlogs}
{$blogsSelect = []}
{$blogsSelectId = []}
2015-03-09 17:32:31 +02:00
{$blogsSelectedId=[]}
2016-04-27 13:20:46 +03:00
{foreach $blogs as $blogType => $blogItems}
{$blogsSelectOptions = []}
2016-04-27 13:20:46 +03:00
{foreach $blogItems as $blog}
{$blogsSelectOptions[] = [
'text' => $blog->getTitle()|escape,
'value' => $blog->getId()
]}
{$blogsSelectId[]=$blog->getId()}
{/foreach}
{$blogsSelect[] = [
'text' => {lang "blog.types.{$blogType}"},
'value' => $blogsSelectOptions
]}
{/foreach}
2015-02-10 05:24:33 +02:00
{if $topic}
{json var=array_intersect($topic->getBlogsId(),$blogsSelectId) assign='chosenOrder'}
2015-03-09 17:32:31 +02:00
{$blogsSelectedId = $topic->getBlogsId()}
{else}
{if $_aRequest.blog_id}
{$blogsSelectedId[] = $_aRequest.blog_id}
{/if}
2015-02-10 05:24:33 +02:00
{/if}
2017-02-06 05:56:36 +02:00
{component 'field.autocomplete'
label = $aLang.topic.add.fields.blog.label
name = ''
placeholder = $aLang.topic.add.fields.blog.placeholder
2017-03-01 11:38:21 +02:00
inputClasses = 'js-topic-add-blogs ls-hidden'
isMultiple = true
2015-03-09 17:32:31 +02:00
selectedValue = $blogsSelectedId
2015-02-10 05:24:33 +02:00
inputAttributes = [ 'data-chosen-order' => {$chosenOrder} ]
items = $blogsSelect}
{/if}
2014-07-28 19:55:18 +03:00
{* Заголовок топика *}
{component 'field' template='text'
name = 'topic[topic_title]'
2015-06-16 07:29:41 +03:00
value = {(( $topic ) ? $topic->getTitle() : '')}
entityField = 'topic_title'
entity = 'ModuleTopic_EntityTopic'
label = $aLang.topic.add.fields.title.label}
2014-07-28 19:55:18 +03:00
{* URL топика *}
{if $oUserCurrent->isAdministrator()}
{component 'field' template='text'
name = 'topic[topic_slug_raw]'
2015-06-16 07:29:41 +03:00
value = {(( $topic ) ? $topic->getSlug() : '')}
note = {lang 'topic.add.fields.slug.note'}
label = {lang 'topic.add.fields.slug.label'}}
{/if}
{block 'add_topic_form_text_before'}{/block}
2014-07-28 19:55:18 +03:00
{* Текст топика *}
{if $type->getParam('allow_text')}
{component 'editor'
name = 'topic[topic_text_source]'
2015-06-16 07:29:41 +03:00
value = (( $topic ) ? $topic->getTextSource() : '')
label = $aLang.topic.add.fields.text.label
entityField = 'topic_text_source'
entity = 'ModuleTopic_EntityTopic'
inputClasses = 'js-editor-default'
mediaTargetType = 'topic'
mediaTargetId = ( $topic ) ? $topic->getId() : ''}
{/if}
2014-07-28 19:55:18 +03:00
{block 'add_topic_form_text_after'}{/block}
2014-07-28 19:55:18 +03:00
{* Теги *}
{if $type->getParam('allow_tags')}
2016-09-30 13:13:30 +03:00
{$tagsCountMin=Config::Get('module.topic.tags_count_min')}
{$tagsCountMax=Config::Get('module.topic.tags_count_max')}
{component 'field' template='text'
name = 'topic[topic_tags]'
2015-06-16 07:29:41 +03:00
value = {(( $topic ) ? $topic->getTags() : '')}
2016-09-30 13:13:30 +03:00
rules = [ 'required' => !Config::Get('module.topic.tags_allow_empty'), 'rangetags' => "[{$tagsCountMin},{$tagsCountMax}]" ]
label = {lang 'topic.add.fields.tags.label'}
note = {lang 'topic.add.fields.tags.note'}
2015-10-28 13:00:45 +02:00
inputClasses = 'ls-width-full autocomplete-tags-sep'}
{/if}
2014-07-28 19:55:18 +03:00
{* Показывает дополнительные поля *}
{insert name='block' block='propertyUpdate' params=[
'target' => $topic,
'entity' => 'ModuleTopic_EntityTopic',
'target_type' => "topic_{$type->getCode()}"
]}
2014-07-28 19:55:18 +03:00
{* Выбор превью *}
{if $type->getParam('allow_preview')}
{component 'field' template='image-ajax'
label = 'Превью'
modalTitle = 'Выбор превью для топика'
targetType = 'topic'
targetId = ( $topic ) ? $topic->getId() : ''
classes = 'js-topic-add-field-image-preview'}
{/if}
{* Вставка опросов *}
{if $type->getParam('allow_poll')}
{component 'poll' template='manage'
targetType = 'topic'
targetId = ( $topic ) ? $topic->getId() : ''}
{/if}
2014-07-28 19:55:18 +03:00
2017-07-24 10:16:59 +03:00
{if $type->isAllowCreateDeferredTopic($oUserCurrent)}
{if !$topic or !$topic->getPublishDraft() or ($topic->getDatePublish() and strtotime($topic->getDatePublish()) > time())}
{$iDatePublish = null}
{if $topic}
{$iDatePublish = strtotime($topic->getDatePublish())}
{if $iDatePublish < time()}
{$iDatePublish = null}
{/if}
{/if}
<div>
<div>{lang 'topic.add.fields.publish_date.label'}:</div>
{component 'field.date' mods = 'inline'
name = "topic[publish_date_raw][date]"
inputAttributes=[ "data-lsdate-format" => 'DD.MM.YYYY' ]
inputClasses = "js-field-date-default"
placeholder = {lang 'topic.add.fields.publish_date.label_date'}
value = ($iDatePublish) ? {date_format date=$iDatePublish format='d.m.Y'} : ''}
{component 'field.time' mods = 'inline'
name = "topic[publish_date_raw][time]"
inputAttributes=[ "data-lstime-time-format" => 'H:i' ]
inputClasses = "js-field-time-default"
placeholder = {lang 'topic.add.fields.publish_date.label_time'}
value = ($iDatePublish) ? {date_format date=$iDatePublish format='H:i'} : ''}
</div>
{/if}
{/if}
2014-07-28 19:55:18 +03:00
{* Запретить комментарии *}
{component 'field' template='checkbox'
name = 'topic[topic_forbid_comment]'
checked = {( $topic && $topic->getForbidComment() ) ? true : false }
note = $aLang.topic.add.fields.forbid_comments.note
label = $aLang.topic.add.fields.forbid_comments.label}
2014-07-28 19:55:18 +03:00
{* Принудительный вывод топиков на главную (доступно только админам) *}
{if $oUserCurrent->isAdministrator()}
{component 'field' template='checkbox'
name = 'topic[topic_publish_index]'
checked = {($topic && $topic->getPublishIndex()) ? true : false }
note = $aLang.topic.add.fields.publish_index.note
label = $aLang.topic.add.fields.publish_index.label}
{component 'field' template='checkbox'
name = 'topic[topic_skip_index]'
checked = {($topic && $topic->getSkipIndex()) ? true : false }
note = $aLang.topic.add.fields.skip_index.note
label = $aLang.topic.add.fields.skip_index.label}
{/if}
2014-07-28 19:55:18 +03:00
{block 'add_topic_form_end'}{/block}
2017-03-21 23:12:46 +02:00
{hook run="form_add_topic_end" topic=$topic}
2014-07-28 19:55:18 +03:00
{* Скрытые поля *}
2015-01-12 17:50:04 +02:00
{component 'field' template='hidden' name='topic_type' value=$type->getCode()}
2014-07-28 19:55:18 +03:00
{if $topic}
{component 'field' template='hidden' name='topic[id]' value=$topic->getId()}
{/if}
2014-07-28 19:55:18 +03:00
{**
* Кнопки
*}
2014-07-28 19:55:18 +03:00
{* Опубликовать / Сохранить изменения *}
{component 'button'
id = {( $topic ) ? 'submit-edit-topic-publish' : 'submit-add-topic-publish' }
mods = 'primary'
2015-11-12 18:50:12 +02:00
classes = 'ls-fl-r'
2015-03-27 12:02:25 +02:00
text = $aLang.topic.add.button[ ( !$topic or ( $topic && $topic->getPublish() == 0 ) ) ? 'publish' : 'update' ]}
2014-07-28 19:55:18 +03:00
{* Превью *}
{component 'button' type='button' classes='js-topic-preview-text-button' text=$aLang.common.preview_text}
2014-07-28 19:55:18 +03:00
{* Сохранить в черновиках / Перенести в черновики *}
2015-03-27 12:02:25 +02:00
{if ! $topic}
{component 'button' type='button' classes='js-topic-draft-button' text=$aLang.topic.add.button.save_as_draft}
{else}
{component 'button' type='button' classes='js-topic-draft-button' text=$aLang.topic.add.button[ ( $topic->getPublish() != 0 ) ? 'mark_as_draft' : 'update' ]}
{/if}
2014-07-28 19:55:18 +03:00
</form>
{* Блок с превью текста *}
{component 'topic' template='preview'}