View of /mambo/branches/4.6/editor/editor.htmlarea2.php
Parent Directory
|
Revision Log
Revision 297 -
(download)
(annotate)
Thu Feb 16 21:43:38 2006 UTC (7 years, 3 months ago) by csouza
File size: 2027 byte(s)
Thu Feb 16 21:43:38 2006 UTC (7 years, 3 months ago) by csouza
File size: 2027 byte(s)
replacement of copyright notices
<?php /** * @package Mambo Open Source * @copyright (C) 2005 - 2006 Mambo Foundation Inc. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * * Mambo was originally developed by Miro (www.miro.com.au) in 2000. Miro assigned the copyright in Mambo to The Mambo Foundation in 2005 to ensure * that Mambo remained free Open Source software owned and managed by the community. * Mambo is Free Software */ /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); function initEditor() { global $mosConfig_live_site; ?> <script language="JavaScript1.2" type="text/JavaScript1.2"> <!-- _editor_url = '<?php echo $mosConfig_live_site; ?>/editor/htmlarea2/'; // URL to htmlarea files var win_ie_ver = parseFloat(navigator.appVersion.split("MSIE")[1]); if (navigator.userAgent.indexOf('Mac') >= 0) { win_ie_ver = 0; } if (navigator.userAgent.indexOf('Windows CE') >= 0) { win_ie_ver = 0; } if (navigator.userAgent.indexOf('Opera') >= 0) { win_ie_ver = 0; } if (win_ie_ver >= 5.5) { document.write('<scr' + 'ipt src="' +_editor_url+ 'editor.js"'); document.write(' language="Javascript1.2"></scr' + 'ipt>'); } else { document.write('<scr'+'ipt>function editor_generate() { return false; }</scr'+'ipt>'); } /** Wrapper around the editor specific update function in JavaScript */ function updateEditorContents( editorName, newValue ) { editor_setHTML( editorName, newValue ); } //--> </script> <?php } function editorArea( $name, $content, $hiddenField, $width, $height, $col, $row ) { ?> <textarea name="<?php echo $hiddenField; ?>" id="<?php echo $hiddenField; ?>" cols="<?php echo $col; ?>" rows="<?php echo $row; ?>" style="width:<?php echo $width; ?>; height:<?php echo $height; ?>"><?php echo $content; ?></textarea> <script language="JavaScript1.2" defer="defer"> <!-- editor_generate('<?php echo $hiddenField ?>'); //--> </script> <?php } function getEditorContents( $editorArea, $hiddenField ) { } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

