| Server IP : 180.180.241.3 / Your IP : 216.73.216.25 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/AppServ/www/umedia3/inc/ |
Upload File : |
<?
function html_htmlarea_gen($a) {
global $html_htmlarea_genwiki;
global $html_htmlarea_width;
global $html_htmlarea_genadmin;
global $dcrURL;
$html_htmlarea_width=floor($html_htmlarea_width);
if ($html_htmlarea_width==0) {
$html_htmlarea_width=760;
}
//////////////////////////////////////////////////////////////
if ($html_htmlarea_genwiki=="yes") {
$toolbaruse= 'wikimode' ;
} else {
if ($html_htmlarea_genadmin!='no') {
$toolbaruse= 'Full' ;
} else {
$toolbaruse= 'Basic' ;
}
}
?>
<script type="text/javascript">
//<![CDATA[
// This call can be placed at any point after the
// <textarea>, or inside a <head><script> in a
// window.onload event handler.
// Replace the <textarea id="editor"> with an CKEditor
// instance, using default configurations.
CKEDITOR.replace( '<? echo $a;?>',
{
skin : 'kama',
height : '400px',
width : '<? echo $html_htmlarea_width;?>px;',
enterMode : 2,
toolbar : '<? echo $toolbaruse?>',
shiftEnterMode : 2,
language : '<? echo getlang("th::l::en");?>'
});
//]]>
</script>
<?
}
?>