Seditio Source code viewer
Root | Root
./Seditio-Developer/Seditio-177/plugins/textboxer2/tb2.comments.edit.php
<?PHP

/* ====================
Seditio - Website engine
Copyright Neocrome & Seditio Team
http://www.neocrome.net
http://www.seditio.org
[BEGIN_SED]
File=plugins/textboxer2/tb2.comments.edit.php
Version=177
Updated=2015-feb-06
Type=Plugin
Author=Arkkimaagi
Description=
[END_SED]

[BEGIN_SED_EXTPLUGIN]
Code=textboxer2
Part=comments
File=tb2.comments.edit
Hooks=comments.editcomment.tags
Tags=comments.tpl:{COMMENTS_EDIT_FORM_TEXTBOXER}
Order=10
[END_SED_EXTPLUGIN]

==================== */

if (!defined('SED_CODE')) { die('Wrong URL.'); }

require_once(
"plugins/textboxer2/lang/textboxer2.".$usr['lang'].".lang.php");
require_once(
"plugins/textboxer2/inc/textboxer2.inc.php");

$GLOBALS['tbL'] = $tbL; //Fix in v175

$tb2DropdownIcons = array(-1,49,1,7,10,15,19,23,35,50);
$tb2MaxSmilieDropdownHeight = 300;     // Height in px for smilie dropdown
$tb2InitialSmilieLimit = 20;        // Smilies loaded by default to dropdown
$tb2TextareaRows = 12;                // Rows of the textarea

// Do not edit below this line !

$tb2ParseBBcodes = TRUE;
$tb2ParseSmilies = TRUE;
$tb2ParseBR = TRUE;

$ta = $post_guest.sed_textboxer2('rtext',
           
'editcomment',
           
sed_cc($row['com_text']),
           
$tb2TextareaRows,
           
$tb2TextareaCols,
           
'comments',
           
$tb2ParseBBcodes,
           
$tb2ParseSmilies,
           
$tb2ParseBR,
           
$tb2Buttons,
           
$tb2DropdownIcons,
           
$tb2MaxSmilieDropdownHeight,
           
$tb2InitialSmilieLimit).$pfs;

$t->assign("COMMENTS_EDIT_FORM_TEXT", $ta);
$t->assign("COMMENTS_EDIT_FORM_TEXTBOXER", $ta);

?>
Presented with Sourceer