|
29.11.2005, 00:05
Всё зделал правильно, но почемуто редактора в контенте невижу, как все было так и осталось....что может быть?
PHP код:
."<b>" . _HEADERTEXT . ":</b><br>";
if ($redaktor == 1) {
$sw = new SPAW_Wysiwyg(/*name*/ 'page_header',
/*value*/ '',
/*language*/ '',
/*toolbar mode*/ $toolbars,
/*theme*/ '',
/*width*/ '100%',
/*height*/ '300px');
$sw->show();
}
else {
echo "<textarea name=\"page_header\" cols=\"60\" rows=\"40\"></textarea><br><br>";
}
echo "<b>" . _PAGETEXT . ":</b><br>"
."<font class=\"tiny\">" . _PAGEBREAK . "</font><br>";
if ($redaktor == 1) {
$sw = new SPAW_Wysiwyg(/*name*/ 'text',
/*value*/ '',
/*language*/ '',
/*toolbar mode*/ $toolbars,
/*theme*/ '',
/*width*/ '100%',
/*height*/ '300px');
$sw->show();
}
else {
echo "<textarea name=\"text\" cols=\"60\" rows=\"40\"></textarea><br><br>";
}
echo "<b>" . _FOOTERTEXT . ":</b><br>";
if ($redaktor == 1) {
$sw = new SPAW_Wysiwyg(/*name*/ 'page_footer',
/*value*/ '',
/*language*/ '',
/*toolbar mode*/ $toolbars,
/*theme*/ '',
/*width*/ '100%',
/*height*/ '300px');
$sw->show();
}
else {
echo "<textarea name=\"page_footer\" cols=\"60\" rows=\"10\"></textarea><br><br>";
}
echo "<b>" . _SIGNATURE . ":</b><br>"
|
|