git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
21 lines
667 B
Plaintext
21 lines
667 B
Plaintext
{$context->oPage->requireJSResource("thirdpartyjs/tinymce/jscripts/tiny_mce/tiny_mce.js")}
|
|
{capture assign=sJS}
|
|
{literal}
|
|
tinyMCE.init({
|
|
mode : "textareas",
|
|
theme : "simple"
|
|
});
|
|
{/literal}
|
|
{/capture}
|
|
{$context->oPage->requireJSStandalone($sJS)}
|
|
|
|
<form method="POST" action="{$smarty.server.PHP_SELF}">
|
|
<input type="hidden" name="id" value="{$help->getId()}">
|
|
<input type="hidden" name="action" value="update">
|
|
<input type="hidden" name="title" value="{$help->getTitle()}">
|
|
|
|
<h2>{$help->getTitle()}</h2>
|
|
<textarea cols="60" rows="20" name="description">{$help->getDescription()}</textarea>
|
|
<input type="submit" name="submit" value="{i18n}Update{/i18n}" />
|
|
</form>
|