blob: 1f9922c0018cc71c53c13abf0e8c1c2166621ac3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
{strip}
{* comment or content @TODO pass in as a var in includes *}
{if ( $post_comment_request || $post_comment_preview || $gBitSystem->isFeatureActive('comments_ajax') ) && $gComment}
{assign var=contentObject value=$gComment}
{else}
{assign var=contentObject value=$gContent}
{/if}
{if $translationsList}
<div class="form-group">
{formfeedback error=$errors.format}
{formlabel label="Language" for="lang_code"}
{forminput}
{if $translateFrom}
<input type="hidden" name="i18n[from_id]" value="{$translateFrom->mContentId}" />
{/if}
<select name="i18n[lang_code]" id="lang_code">
{foreach from=$translationsList key=langCode item=lang}
<option value="{$langCode}" {if $smarty.request.i18n.lang_code==$langCode || $contentObject->mInfo.lang_code==$langCode || ( $langCode==$gBitSystem->getConfig('bitlanguage') && !$smarty.request.i18n.lang_code && !$contentObject->getField('lang_code') )}selected="selected" {/if}>{$lang.native_name}</option>
{/foreach}
</select>
{formhelp note="The language of this page"}
{/forminput}
</div>
{/if}
{* We have to count these first because of the tikiwiki format options which may show even if it is the only format option. *}
{assign var=numformat value=0}
{foreach name=formatPlugins from=$gLibertySystem->mPlugins item=plugin key=guid}
{if $plugin.is_active eq 'y' and $plugin.edit_field and $plugin.plugin_type eq 'format'}
{assign var=numformat value=$numformat+1}
{if $plugin.plugin_guid == "tikiwiki"}
{assign var=format_options value=true}
{/if}
{* this is only used if set once *}
{assign var=singleplugin value=$plugin}
{/if}
{/foreach}
{if $numformat > 1 || $format_options}
<div class="form-group">
{formfeedback error=$errors.format}
{formlabel label="Content Format"}
{foreach name=formatPlugins from=$gLibertySystem->mPlugins item=plugin key=guid}
{if $plugin.is_active eq 'y' and $plugin.edit_field and $plugin.plugin_type eq 'format'}
{forminput}
<label class="radio">
{if $numformat > 1}
<input type="radio" name="{$format_guid_variable|default:"format_guid"}" value="{$plugin.edit_field}"
{if $contentObject->mInfo.format_guid eq $plugin.plugin_guid} checked="checked"
{elseif !$contentObject->mInfo.format_guid and $plugin.plugin_guid eq $gBitSystem->getConfig('default_format', 'tikiwiki')} checked="checked"
{/if} onclick="
{if $gBitSystem->isPackageActive('quicktags')}
{foreach from=$gLibertySystem->mPlugins item=tag key=guid}
{if $tag.is_active eq 'y' and $tag.edit_field and $tag.plugin_type eq 'format'}
{if $tag.plugin_guid eq $plugin.plugin_guid}
BitBase.showById
{else}
BitBase.hideById
{/if}
('qt{$textarea_id}{$tag.plugin_guid}');
{/if}
{/foreach}
{/if}
"
/> {$plugin.edit_label}
{else}
{$plugin.edit_label}
{/if}
{if $plugin.plugin_guid == "tikiwiki"}
{if !$gBitSystem->isFeatureActive('content_force_allow_html')}
{if $gBitUser->hasPermission( 'p_liberty_enter_html' ) || $gBitSystem->isFeatureActive('content_allow_html')}
<input type="checkbox" name="preferences[content_enter_html]" value="y" id="html" {if $contentObject->mPrefs.content_enter_html}checked="checked" {/if}/> {tr}Allow HTML{/tr}
{elseif is_object($contentObject) && $contentObject->getPreference( 'content_enter_html' )}
[ {tr}HTML will remain as HTML{/tr} ]
{else}
[ {tr}HTML will be escaped{/tr} ]
{/if}
{/if}
{/if}
</label>
{formhelp note=$plugin.edit_help}
{/forminput}
{/if}
{/foreach}
{if $numformat > 1}
{forminput}
{formhelp note="Choose what kind of syntax you want to submit your data in."}
{/forminput}
{else}
<input type="hidden" name="{$format_guid_variable|default:"format_guid"}" value="{$gBitSystem->getConfig('default_format','tikiwiki')}" />
{/if}
</div>
{else}
{* if there was one format in the liberty plugins hash then use it and display a label so user knows what format is being used, otherwise use default and hide it*}
{if $numformat eq 1}
<div class="form-group">
{formlabel label="Content Format"}
{forminput}
<label>
{$singleplugin.edit_label}
</label>
{/forminput}
</div>
{/if}
<input type="hidden" name="{$format_guid_variable|default:"format_guid"}" value="{if $numformat eq 1}{$singleplugin.edit_field}{else}{$gBitSystem->getConfig('default_format','tikiwiki')}{/if}" />
{/if}
{/strip}
|