blob: 67bae10c7ee7ee403496f13f0828e2774a15a6f5 (
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
|
{strip}
{if !$textarea_noformat}
{include file="bitpackage:liberty/edit_format.tpl"}
{/if}
{if $gBitSystem->isFeatureActive('package_smileys')}
{include file="bitpackage:smileys/smileys_full.tpl"}
{/if}
{if $gBitSystem->isFeatureActive('package_quicktags')}
{include file="bitpackage:quicktags/quicktags_full.tpl"}
{/if}
<div class="row">
{if !empty($textarea_label)}
{formlabel label=$textarea_label for=$textarea_id}
{/if}
{forminput}
<textarea {$textarea_attributes} {spellchecker width=$cols height=$rows} id="{$textarea_id|default:$smarty.const.LIBERTY_TEXT_AREA}" name="{$textarea_name|default:edit}" {$textarea_style}>{$textarea_data|default:$gContent->mInfo.data|escape:html}</textarea>
{if !empty($textarea_help)}
{formhelp note=$textarea_help}
{/if}
{/forminput}
</div>
{/strip}
|