View of /mambo/branches/4.6/mambots/editors/none.php
Parent Directory
|
Revision Log
Revision 3 -
(download)
(annotate)
Tue Dec 13 03:49:45 2005 UTC (7 years, 5 months ago) by root
File size: 2530 byte(s)
Tue Dec 13 03:49:45 2005 UTC (7 years, 5 months ago) by root
File size: 2530 byte(s)
creating branch
<?php /** * @version $Id: none.php,v 1.1 2005/07/22 01:57:50 eddieajau Exp $ * @package Mambo * @copyright (C) 2000 - 2005 Miro International Pty Ltd * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * 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.' ); $_MAMBOTS->registerFunction( 'onInitEditor', 'botNoEditorInit' ); $_MAMBOTS->registerFunction( 'onGetEditorContents', 'botNoEditorGetContents' ); $_MAMBOTS->registerFunction( 'onEditorArea', 'botNoEditorEditorArea' ); /** * No WYSIWYG Editor - javascript initialisation */ function botNoEditorInit() { return <<<EOD <script type="text/javascript"> function insertAtCursor(myField, myValue) { if (document.selection) { // IE support myField.focus(); sel = document.selection.createRange(); sel.text = myValue; } else if (myField.selectionStart || myField.selectionStart == '0') { // MOZILLA/NETSCAPE support var startPos = myField.selectionStart; var endPos = myField.selectionEnd; myField.value = myField.value.substring(0, startPos) + myValue + myField.value.substring(endPos, myField.value.length); } else { myField.value += myValue; } } </script> EOD; } /** * No WYSIWYG Editor - copy editor contents to form field * @param string The name of the editor area * @param string The name of the form field */ function botNoEditorGetContents( $editorArea, $hiddenField ) { return <<<EOD EOD; } /** * No WYSIWYG Editor - display the editor * @param string The name of the editor area * @param string The content of the field * @param string The name of the form field * @param string The width of the editor area * @param string The height of the editor area * @param int The number of columns for the editor area * @param int The number of rows for the editor area */ function botNoEditorEditorArea( $name, $content, $hiddenField, $width, $height, $col, $row ) { global $mosConfig_live_site, $_MAMBOTS; $results = $_MAMBOTS->trigger( 'onCustomEditorButton' ); $buttons = array(); foreach ($results as $result) { $buttons[] = '<img src="'.$mosConfig_live_site.'/mambots/editors-xtd/'.$result[0].'" onclick="insertAtCursor( document.adminForm.'.$hiddenField.', \''.$result[1].'\' )" />'; } $buttons = implode( "", $buttons ); return <<<EOD <textarea name="$hiddenField" id="$hiddenField" cols="$col" rows="$row" style="width:$width;height:$height;">$content</textarea> <br />$buttons EOD; } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

