Difference between revisions of "Talk:WYSIWYG"
From Organic Design wiki
(mwforums) |
(Change source-code blocks to standard format) |
||
(One intermediate revision by one other user not shown) | |||
Line 4: | Line 4: | ||
place it in the extensions directory of mediawiki | place it in the extensions directory of mediawiki | ||
add the following lines to the end of mediawiki LocalSettings.php: | add the following lines to the end of mediawiki LocalSettings.php: | ||
− | < | + | <source lang="php"> |
− | + | require_once( "$IP/extensions/ckeditor/ckeditor.php" ); | |
− | require_once("$IP/extensions/ckeditor/ckeditor.php"); | ||
$wgHooks['EditPage::showEditForm:initial'][] = 'showEditForm'; | $wgHooks['EditPage::showEditForm:initial'][] = 'showEditForm'; | ||
− | function showEditForm($form){ | + | function showEditForm( $form ) { |
− | global $wgOut; | + | global $wgOut; |
− | $wgOut->addScriptFile( '/extensions/ckeditor/ckeditor.js' ); | + | $wgOut->addScriptFile( '/extensions/ckeditor/ckeditor.js' ); |
− | $script = | + | $script = "<script type=\"text/javascript\"> |
− | "<script type=\"text/javascript\"> | + | window.onload = function() { CKEDITOR.replace( 'wpTextbox1' ); }; |
− | window.onload = function() | + | if( window.removeEventListener ) window.removeEventListener( 'load', mwSetupToolbar, false ); |
− | { | + | else if( window.detachEvent ) window.detachEvent( 'onload', mwSetupToolbar ) ; |
− | CKEDITOR.replace( 'wpTextbox1' ); | + | </script>"; |
− | }; | + | $wgOut->addHTML( $script ); |
− | if ( window.removeEventListener ) | + | return true; |
− | window.removeEventListener( 'load', mwSetupToolbar, false ) ; | + | } |
− | else if ( window.detachEvent ) | + | </source> |
− | window.detachEvent( 'onload', mwSetupToolbar ) ; | ||
− | </script>"; | ||
− | |||
− | $wgOut->addHTML($script); | ||
− | |||
− | return true; | ||
− | } | ||
− | |||
− | </ | ||
This is from [http://www.mwusers.com/forums/showthread.php?16957-CKEditor-with-MediaWiki mwforums]. | This is from [http://www.mwusers.com/forums/showthread.php?16957-CKEditor-with-MediaWiki mwforums]. |
Latest revision as of 18:11, 22 May 2015
To use ckeditor with mediawiki:
download and unpack the source ckeditor package place it in the extensions directory of mediawiki add the following lines to the end of mediawiki LocalSettings.php:
require_once( "$IP/extensions/ckeditor/ckeditor.php" );
$wgHooks['EditPage::showEditForm:initial'][] = 'showEditForm';
function showEditForm( $form ) {
global $wgOut;
$wgOut->addScriptFile( '/extensions/ckeditor/ckeditor.js' );
$script = "<script type=\"text/javascript\">
window.onload = function() { CKEDITOR.replace( 'wpTextbox1' ); };
if( window.removeEventListener ) window.removeEventListener( 'load', mwSetupToolbar, false );
else if( window.detachEvent ) window.detachEvent( 'onload', mwSetupToolbar ) ;
</script>";
$wgOut->addHTML( $script );
return true;
}
This is from mwforums.