Now all modules are in core modules folder

This commit is contained in:
Manuel Cillero 2017-08-08 12:14:45 +02:00
parent 5ba1cdfa0b
commit 05b6a91b0c
1907 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,62 @@
/**
* @file Plugin to count symbols, symbols without blanks and words
*/
( function(){
var emptyHtml = '<span class="cke_empty">&nbsp;</span>';
CKEDITOR.plugins.add( 'counter',
{
init : function( editor )
{
var spaceId = 'cke_counter_' + editor.name;
var spaceElement;
var ckeditorEventThemeSpace = 'uiSpace';
var getSpaceElement = function()
{
if ( !spaceElement )
spaceElement = CKEDITOR.document.getById( spaceId );
return spaceElement;
};
if (Drupal.ckeditor_ver == 3) {
ckeditorEventThemeSpace = 'themeSpace';
}
editor.on( ckeditorEventThemeSpace, function( event )
{
if ( event.data.space == 'bottom' )
{
event.data.html +=
'<span id="' + spaceId + '_label" class="cke_voice_label">Counter</span>' +
'<div id="' + spaceId + '" class="cke_counter" role="group" aria-labelledby="' + spaceId + '_label">' + emptyHtml + '</div>';
}
});
function count( ev )
{
var space = getSpaceElement();
var text = ev.editor.getData();
// decode HTML entities; it also removes HTML tags, but works only if jQuery is available
text = jQuery('<div/>').html(text).text();
// remove all redundant blank symbols
text = text.replace(new RegExp('\\s+', 'g'), ' ');
// remove all blank symbols at the start and at the end
text = text.replace(new RegExp('(^\\s+)|(\\s+$)', 'g'), '');
var symbols = text.length;
var words = text.split(' ').length;
//remove all blank symbols
text = text.replace(new RegExp('\\s+', 'g'), '');
var symbols_wo_blanks = text.length;
space.setHtml( '<span class="cke_counter" style="float: right">' + symbols + ' / ' + symbols_wo_blanks + ' symbols; ' + words + ' words</span>' );
}
editor.on( 'dataReady', count );
editor.on( 'blur', count );
editor.on( 'focus', count );
// Almost useless
//editor.on( 'saveSnapshot', count );
// Requires too much resources
//editor.on( 'key', count );
}
});
})();

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 B

View file

@ -0,0 +1,169 @@
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Plugin for inserting Drupal teaser and page breaks.
*/
var pluginRequires = [ 'fakeobjects' ];
if (Drupal.ckeditor_ver == 3) {
pluginRequires = [ 'fakeobjects', 'htmldataprocessor' ];
}
CKEDITOR.plugins.add( 'drupalbreaks',
{
requires : pluginRequires,
init : function( editor )
{
var addCssObj = CKEDITOR;
if (Drupal.ckeditor_ver == 3) {
addCssObj = editor;
}
// Add the styles that renders our fake objects.
addCssObj.addCss(
'img.cke_drupal_pagebreak,img.cke_drupal_break' +
'{' +
'background-image: url(' + CKEDITOR.getUrl( this.path + 'images/pagebreak.gif' ) + ');' +
'background-position: center center;' +
'background-repeat: no-repeat;' +
'clear: both;' +
'display: block;' +
'float: none;' +
'width: 100%;' +
'border-top: #999999 1px dotted;' +
'border-bottom: #999999 1px dotted;' +
'height: 5px;' +
'}' +
'img.cke_drupal_break' +
'{' +
'border-top: #FF0000 1px dotted;' +
'border-bottom: #FF0000 1px dotted;' +
'}'
);
// Register the toolbar buttons.
if ( Drupal.ckeditorTeaserInfo(editor.name) || Drupal.settings.ckeditor.teaser == editor.name ) {
editor.ui.addButton( 'DrupalBreak',
{
label : Drupal.t('Separador resumen/cuerpo'),
icon : this.path + 'images/drupalbreak.png',
command : 'drupalbreak'
});
editor.ui.addButton( 'DrupalPageBreak',
{
label : Drupal.t( 'Añadir separador de página' ),
icon : this.path + 'images/drupalpagebreak.png',
command : 'drupalpagebreak'
});
}
// Register the commands.
editor.addCommand( 'drupalbreak',
{
exec : function()
{
// There should be only one <!--break--> in document. So, look
// for an image with class "cke_drupal_break" (the fake element).
var images = editor.document.getElementsByTag( 'img' );
for ( var i = 0, len = images.count() ; i < len ; i++ )
{
var img = images.getItem( i );
if ( img.hasClass( 'cke_drupal_break' ) )
{
if ( confirm( Drupal.t( 'El documento ya contiene un separador. ¿Desea borrarlo primero?' ) ) )
{
img.remove();
break;
}
else
return;
}
}
insertComment( 'break' );
}
} );
editor.addCommand( 'drupalpagebreak',
{
exec : function()
{
insertComment( 'pagebreak' );
}
} );
// This function effectively inserts the comment into the editor.
function insertComment( text )
{
// Create the fake element that will be inserted into the document.
// The trick is declaring it as an <hr>, so it will behave like a
// block element (and in effect it behaves much like an <hr>).
if ( !CKEDITOR.dom.comment.prototype.getAttribute ) {
CKEDITOR.dom.comment.prototype.getAttribute = function() { return ''; };
CKEDITOR.dom.comment.prototype.attributes = { align : '' };
}
var fakeElement = editor.createFakeElement( new CKEDITOR.dom.comment( text ), 'cke_drupal_' + text, 'hr' );
// This is the trick part. We can't use editor.insertElement()
// because we need to put the comment directly at <body> level.
// We need to do range manipulation for that.
// Get a DOM range from the current selection.
var range = editor.getSelection().getRanges()[0],
elementsPath = new CKEDITOR.dom.elementPath( range.getCommonAncestor( true ) ),
element = ( elementsPath.block && elementsPath.block.getParent() ) || elementsPath.blockLimit,
hasMoved;
// If we're not in <body> go moving the position to after the
// elements until reaching it. This may happen when inside tables,
// lists, blockquotes, etc.
while ( element && element.getName() != 'body' )
{
range.moveToPosition( element, CKEDITOR.POSITION_AFTER_END );
hasMoved = 1;
element = element.getParent();
}
// Split the current block.
if ( !hasMoved )
range.splitBlock( 'p' );
// Insert the fake element into the document.
range.insertNode( fakeElement );
// Now, we move the selection to the best possible place following
// our fake element.
var next = fakeElement;
while ( ( next = next.getNext() ) && !range.moveToElementEditStart( next ) )
{}
range.select();
}
},
afterInit : function( editor )
{
// Adds the comment processing rules to the data filter, so comments
// are replaced by fake elements.
editor.dataProcessor.dataFilter.addRules(
{
comment : function( value )
{
if ( !CKEDITOR.htmlParser.comment.prototype.getAttribute ) {
CKEDITOR.htmlParser.comment.prototype.getAttribute = function() { return ''; };
CKEDITOR.htmlParser.comment.prototype.attributes = { align : '' };
}
if ( value == 'break' || value == 'pagebreak' )
return editor.createFakeParserElement( new CKEDITOR.htmlParser.comment( value ), 'cke_drupal_' + value, 'hr' );
return value;
}
});
}
});

Binary file not shown.

After

Width:  |  Height:  |  Size: 523 B

View file

@ -0,0 +1,59 @@
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Plugin for inserting files from imce without image dialog
*/
( function() {
CKEDITOR.plugins.add( 'imce',
{
init: function( editor )
{
//adding button
editor.ui.addButton( 'IMCE',
{
label: 'IMCE',
command: 'IMCEWindow',
icon: this.path + 'images/icon.png'
});
//opening imce window
editor.addCommand( 'IMCEWindow', {
exec : function () {
var width = editor.config.filebrowserWindowWidth || '80%',
height = editor.config.filebrowserWindowHeight || '70%';
editor.popup(Drupal.settings.basePath + 'index.php?q=imce\x26app=ckeditor|sendto@ckeditor_setFile|&CKEditorFuncNum=' + editor._.filebrowserFnIMCE, width, height);
}
});
//add editor function
editor._.filebrowserFnIMCE = CKEDITOR.tools.addFunction( setFile, editor )
//function which receive imce response
window.ckeditor_setFile = function (file, win) {
var cfunc = win.location.href.split('&');
for (var x in cfunc) {
if (cfunc[x].match(/^CKEditorFuncNum=\d+$/)) {
cfunc = cfunc[x].split('=');
break;
}
}
CKEDITOR.tools.callFunction(cfunc[1], file);
win.close();
};
}
} );
function setFile(file) {
//checking if it is image
if (file.width != 0 && file.height != 0) {
this.insertHtml('<img src="' + file.url + '" style="width:' + file.width + 'px;height:' + file.height + 'px;" alt="' + file.name + '" />');
} else {
this.insertHtml('<a href="' + file.url + '">' + file.name + '</a>');
}
}
} )();

View file

@ -0,0 +1,114 @@
form {
padding: 0;
margin: 0;
}
.panel_wrapper {
display: none;
}
/*
.panel_wrap {
border: 1px solid #919b9c;
border-top: 0;
padding: .5em 0;
margin: 0;
background: #fff;
float: left;
width: 100%;
}*/
.panel_wrap .panel {
display: none;
}
.panel_wrap .current {
display: block;
width: 100%;
height: auto;
}
label {
margin-bottom: .5em;
display: block;
}
#form_browse {
margin: 0 .5em;
}
.mceActionPanel {
float: left;
margin: .5em 0 0 0;
}
.panel_wrap .nodes {
margin: 0;
padding: 0;
}
#nodelist {
padding: 0;
height: 13.5em;
width: 96%;
overflow: auto;
border: #D5D59D;
}
th {
font-size: 11px;
border-bottom: 1px solid #D5D59D;
}
td {
text-align: left;
padding: .05em .5em .05em 0;
white-space: nowrap;
}
tr {
cursor: pointer;
}
tr.head {
cursor: auto;
}
td.nid {
display: none;
}
#statusImg {
display: block;
position: absolute;
left: 15px;
top: 125px;
width: 90%;
font-size: 14px;
color: #333333;
width: auto;
padding-right: .5em;
line-height: 82px;
vertical-align: middle;
}
#statusImg img {
margin: 36px 10px;
float: left;
}
#browse_panel select {
background: #FFF;
}
#nodelist table {
margin: 5px
}
#nodelist table tr {
border: 1px #e0e0e0;
border-collapse: collapse;
}
#nodelist table tr td {
cursor: pointer;
}

View file

@ -0,0 +1,827 @@
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'linktomenu', function( editor )
{
//<!-- linktonode START -->
CKEDITOR.scriptLoader.load( Drupal.settings.basePath + "misc/jquery.js");
CKEDITOR.scriptLoader.load( Drupal.settings.ckeditor.module_path + "/plugins/linktomenu/jscripts/functions.js", function() {
loadCategories(null);
});
//<!-- linktonode END -->
// Handles the event when the "Target" selection box is changed.
var targetChanged = function()
{
var dialog = this.getDialog(),
popupFeatures = dialog.getContentElement( 'target', 'popupFeatures' ),
targetName = dialog.getContentElement( 'target', 'linkTargetName' ),
value = this.getValue();
if ( !popupFeatures || !targetName )
return;
popupFeatures = popupFeatures.getElement();
if ( value == 'popup' )
{
popupFeatures.show();
targetName.setLabel( editor.lang.link.targetPopupName );
}
else
{
popupFeatures.hide();
targetName.setLabel( editor.lang.link.targetFrameName );
this.getDialog().setValueOf( 'target', 'linkTargetName', value.charAt( 0 ) == '_' ? value : '' );
}
};
// Loads the parameters in a selected link to the link dialog fields.
var emailRegex = /^mailto:([^?]+)(?:\?(.+))?$/,
emailSubjectRegex = /subject=([^;?:@&=$,\/]*)/,
emailBodyRegex = /body=([^;?:@&=$,\/]*)/,
anchorRegex = /^#(.*)$/,
urlRegex = /^((?:http|https|ftp|news):\/\/)?(.*)$/,
selectableTargets = /^(_(?:self|top|parent|blank))$/;
var popupRegex =
/\s*window.open\(\s*this\.href\s*,\s*(?:'([^']*)'|null)\s*,\s*'([^']*)'\s*\)\s*;\s*return\s*false;*\s*/;
var popupFeaturesRegex = /(?:^|,)([^=]+)=(\d+|yes|no)/gi;
var parseLink = function( editor, element )
{
var href = element ? ( element.getAttribute( '_cke_saved_href' ) || element.getAttribute( 'href' ) ) : '',
emailMatch = '',
anchorMatch = '',
urlMatch = false,
retval = {};
if ( href )
{
emailMatch = href.match( emailRegex );
anchorMatch = href.match( anchorRegex );
urlMatch = href.match( urlRegex );
}
// Load the link type and URL.
if ( emailMatch )
{
var subjectMatch = href.match( emailSubjectRegex ),
bodyMatch = href.match( emailBodyRegex );
retval.type = 'email';
retval.email = {};
retval.email.address = emailMatch[1];
subjectMatch && ( retval.email.subject = decodeURIComponent( subjectMatch[1] ) );
bodyMatch && ( retval.email.body = decodeURIComponent( bodyMatch[1] ) );
}
else if ( anchorMatch )
{
retval.type = 'anchor';
retval.anchor = {};
retval.anchor.name = retval.anchor.id = anchorMatch[1];
}
else if ( href && urlMatch ) // urlRegex matches empty strings, so need to check for href as well.
{
retval.type = 'url';
retval.url = {};
retval.url.protocol = urlMatch[1];
retval.url.url = urlMatch[2];
}
else
retval.type = 'url';
// Load target and popup settings.
if ( element )
{
var target = element.getAttribute( 'target' );
retval.target = {};
retval.adv = {};
// IE BUG: target attribute is an empty string instead of null in IE if it's not set.
if ( !target )
{
var onclick = element.getAttribute( '_cke_pa_onclick' ) || element.getAttribute( 'onclick' ),
onclickMatch = onclick && onclick.match( popupRegex );
if ( onclickMatch )
{
retval.target.type = 'popup';
retval.target.name = onclickMatch[1];
var featureMatch;
while ( ( featureMatch = popupFeaturesRegex.exec( onclickMatch[2] ) ) )
{
if ( featureMatch[2] == 'yes' || featureMatch[2] == '1' )
retval.target[ featureMatch[1] ] = true;
else if ( isFinite( featureMatch[2] ) )
retval.target[ featureMatch[1] ] = featureMatch[2];
}
}
}
else
{
var targetMatch = target.match( selectableTargets );
if ( targetMatch )
retval.target.type = retval.target.name = target;
else
{
retval.target.type = 'frame';
retval.target.name = target;
}
}
var me = this;
var advAttr = function( inputName, attrName )
{
var value = element.getAttribute( attrName );
if ( value !== null )
retval.adv[ inputName ] = value || '';
};
advAttr( 'advId', 'id' );
advAttr( 'advLangDir', 'dir' );
advAttr( 'advAccessKey', 'accessKey' );
advAttr( 'advName', 'name' );
advAttr( 'advLangCode', 'lang' );
advAttr( 'advTabIndex', 'tabindex' );
advAttr( 'advTitle', 'title' );
advAttr( 'advContentType', 'type' );
advAttr( 'advCSSClasses', 'class' );
advAttr( 'advCharset', 'charset' );
advAttr( 'advStyles', 'style' );
}
// Find out whether we have any anchors in the editor.
// Get all IMG elements in CK document.
var elements = editor.document.getElementsByTag( 'img' ),
realAnchors = new CKEDITOR.dom.nodeList( editor.document.$.anchors ),
anchors = retval.anchors = [];
for( var i = 0; i < elements.count() ; i++ )
{
var item = elements.getItem( i );
if ( item.getAttribute( '_cke_realelement' ) && item.getAttribute( '_cke_real_element_type' ) == 'anchor' )
{
anchors.push( editor.restoreRealElement( item ) );
}
}
for ( i = 0 ; i < realAnchors.count() ; i++ )
anchors.push( realAnchors.getItem( i ) );
for ( i = 0 ; i < anchors.length ; i++ )
{
item = anchors[ i ];
anchors[ i ] = { name : item.getAttribute( 'name' ), id : item.getAttribute( 'id' ) };
}
// Record down the selected element in the dialog.
this._.selectedElement = element;
return retval;
};
var setupParams = function( page, data )
{
if ( data[page] )
this.setValue( data[page][this.id] || '' );
};
var setupPopupParams = function( data )
{
return setupParams.call( this, 'target', data );
};
var setupAdvParams = function( data )
{
return setupParams.call( this, 'adv', data );
};
var commitParams = function( page, data )
{
if ( !data[page] )
data[page] = {};
data[page][this.id] = this.getValue() || '';
};
var commitPopupParams = function( data )
{
return commitParams.call( this, 'target', data );
};
var commitAdvParams = function( data )
{
return commitParams.call( this, 'adv', data );
};
return {
title : 'Link to menu',
minWidth : 350,
minHeight : 230,
contents : [
{
id : 'info',
label : editor.lang.link.info,
title : editor.lang.link.info,
elements :
[
{
type : 'html',
html :
'<link rel="stylesheet" href="' + Drupal.settings.ckeditor.module_path + '/plugins/linktomenu/css/linktocontent.css" type="text/css" />' +
'<input id="linktomenu_url" type="hidden" />' +
'<input id="linktomenu_text" type="hidden" />' +
'<div class="panel_wrap">' +
'<div id="browse_panel" class="panel current">' +
'<form id="form_browse" action="#" onsubmit="return false;">' +
'<strong>Browse</strong>' +
'</form>' +
'</div>' +
'</div>' +
'<!-- node list -->' +
'<div class="panel_wrap" id="list">' +
'<div class="nodes">' +
'<div id="nodelist" class="scrollable accessible">' +
'<table cellspacing="0" summary="item list">' +
'<thead>' +
'<tr>' +
'<th><strong>Title</strong></th>' +
'</tr>' +
'</thead>' +
'<tbody>' +
'</tbody>' +
'</table>' +
'</div>' +
'</div>' +
'</div>' +
'<div id="statusImg"><img alt="loading" src="' + Drupal.settings.ckeditor.module_path + '/plugins/linktomenu/images/loading.gif" />loading...</div>'
}
]
},
{
id : 'target',
label : editor.lang.link.target,
title : editor.lang.link.target,
elements :
[
{
type : 'hbox',
widths : [ '50%', '50%' ],
children :
[
{
type : 'select',
id : 'linkTargetType',
label : editor.lang.link.target,
'default' : 'notSet',
style : 'width : 100%;',
'items' :
[
[ editor.lang.link.targetNotSet, 'notSet' ],
[ editor.lang.link.targetFrame, 'frame' ],
[ editor.lang.link.targetPopup, 'popup' ],
[ editor.lang.link.targetNew, '_blank' ],
[ editor.lang.link.targetTop, '_top' ],
[ editor.lang.link.targetSelf, '_self' ],
[ editor.lang.link.targetParent, '_parent' ]
],
onChange : targetChanged,
setup : function( data )
{
if ( data.target )
this.setValue( data.target.type );
},
commit : function( data )
{
if ( !data.target )
data.target = {};
data.target.type = this.getValue();
}
},
{
type : 'text',
id : 'linkTargetName',
label : editor.lang.link.targetFrameName,
'default' : '',
setup : function( data )
{
if ( data.target )
this.setValue( data.target.name );
},
commit : function( data )
{
if ( !data.target )
data.target = {};
data.target.name = this.getValue();
}
}
]
},
{
type : 'vbox',
width : 260,
align : 'center',
padding : 2,
id : 'popupFeatures',
children :
[
{
type : 'html',
html : CKEDITOR.tools.htmlEncode( editor.lang.link.popupFeatures )
},
{
type : 'hbox',
children :
[
{
type : 'checkbox',
id : 'resizable',
label : editor.lang.link.popupResizable,
setup : setupPopupParams,
commit : commitPopupParams
},
{
type : 'checkbox',
id : 'status',
label : editor.lang.link.popupStatusBar,
setup : setupPopupParams,
commit : commitPopupParams
}
]
},
{
type : 'hbox',
children :
[
{
type : 'checkbox',
id : 'location',
label : editor.lang.link.popupLocationBar,
setup : setupPopupParams,
commit : commitPopupParams
},
{
type : 'checkbox',
id : 'toolbar',
label : editor.lang.link.popupToolbar,
setup : setupPopupParams,
commit : commitPopupParams
}
]
},
{
type : 'hbox',
children :
[
{
type : 'checkbox',
id : 'menubar',
label : editor.lang.link.popupMenuBar,
setup : setupPopupParams,
commit : commitPopupParams
},
{
type : 'checkbox',
id : 'fullscreen',
label : editor.lang.link.popupFullScreen,
setup : setupPopupParams,
commit : commitPopupParams
}
]
},
{
type : 'hbox',
children :
[
{
type : 'checkbox',
id : 'scrollbars',
label : editor.lang.link.popupScrollBars,
setup : setupPopupParams,
commit : commitPopupParams
},
{
type : 'checkbox',
id : 'dependent',
label : editor.lang.link.popupDependent,
setup : setupPopupParams,
commit : commitPopupParams
}
]
},
{
type : 'hbox',
children :
[
{
type : 'text',
widths : [ '30%', '70%' ],
labelLayout : 'horizontal',
label : editor.lang.link.popupWidth,
id : 'width',
setup : setupPopupParams,
commit : commitPopupParams
},
{
type : 'text',
labelLayout : 'horizontal',
widths : [ '55%', '45%' ],
label : editor.lang.link.popupLeft,
id : 'left',
setup : setupPopupParams,
commit : commitPopupParams
}
]
},
{
type : 'hbox',
children :
[
{
type : 'text',
labelLayout : 'horizontal',
widths : [ '30%', '70%' ],
label : editor.lang.link.popupHeight,
id : 'height',
setup : setupPopupParams,
commit : commitPopupParams
},
{
type : 'text',
labelLayout : 'horizontal',
label : editor.lang.link.popupTop,
widths : [ '55%', '45%' ],
id : 'top',
setup : setupPopupParams,
commit : commitPopupParams
}
]
}
]
}
]
},
{
id : 'advanced',
label : editor.lang.link.advanced,
title : editor.lang.link.advanced,
elements :
[
{
type : 'vbox',
padding : 1,
children :
[
{
type : 'hbox',
widths : [ '45%', '35%', '20%' ],
children :
[
{
type : 'text',
id : 'advId',
label : editor.lang.link.id,
setup : setupAdvParams,
commit : commitAdvParams
},
{
type : 'select',
id : 'advLangDir',
label : editor.lang.link.langDir,
'default' : '',
style : 'width:110px',
items :
[
[ editor.lang.link.langDirNotSet, '' ],
[ editor.lang.link.langDirLTR, 'ltr' ],
[ editor.lang.link.langDirRTL, 'rtl' ]
],
setup : setupAdvParams,
commit : commitAdvParams
},
{
type : 'text',
id : 'advAccessKey',
width : '80px',
label : editor.lang.link.acccessKey,
maxLength : 1,
setup : setupAdvParams,
commit : commitAdvParams
}
]
},
{
type : 'hbox',
widths : [ '45%', '35%', '20%' ],
children :
[
{
type : 'text',
label : editor.lang.link.name,
id : 'advName',
setup : setupAdvParams,
commit : commitAdvParams
},
{
type : 'text',
label : editor.lang.link.langCode,
id : 'advLangCode',
width : '110px',
'default' : '',
setup : setupAdvParams,
commit : commitAdvParams
},
{
type : 'text',
label : editor.lang.link.tabIndex,
id : 'advTabIndex',
width : '80px',
maxLength : 5,
setup : setupAdvParams,
commit : commitAdvParams
}
]
}
]
},
{
type : 'vbox',
padding : 1,
children :
[
{
type : 'hbox',
widths : [ '45%', '55%' ],
children :
[
{
type : 'text',
label : editor.lang.link.advisoryTitle,
'default' : '',
id : 'advTitle',
setup : setupAdvParams,
commit : commitAdvParams
},
{
type : 'text',
label : editor.lang.link.advisoryContentType,
'default' : '',
id : 'advContentType',
setup : setupAdvParams,
commit : commitAdvParams
}
]
},
{
type : 'hbox',
widths : [ '45%', '55%' ],
children :
[
{
type : 'text',
label : editor.lang.link.cssClasses,
'default' : '',
id : 'advCSSClasses',
setup : setupAdvParams,
commit : commitAdvParams
},
{
type : 'text',
label : editor.lang.link.charset,
'default' : '',
id : 'advCharset',
setup : setupAdvParams,
commit : commitAdvParams
}
]
},
{
type : 'hbox',
children :
[
{
type : 'text',
label : editor.lang.link.styles,
'default' : '',
id : 'advStyles',
setup : setupAdvParams,
commit : commitAdvParams
}
]
}
]
}
]
}
],
onShow : function()
{
this.fakeObj = false;
var editor = this.getParentEditor(),
selection = editor.getSelection(),
ranges = selection.getRanges(),
element = null,
me = this;
// Fill in all the relevant fields if there's already one link selected.
if ( ranges.length == 1 )
{
var rangeRoot = ranges[0].getCommonAncestor( true );
element = rangeRoot.getAscendant( 'a', true );
if ( element && element.getAttribute( 'href' ) )
{
selection.selectElement( element );
}
else if ( ( element = rangeRoot.getAscendant( 'img', true ) ) &&
element.getAttribute( '_cke_real_element_type' ) &&
element.getAttribute( '_cke_real_element_type' ) == 'anchor' )
{
this.fakeObj = element;
element = editor.restoreRealElement( this.fakeObj );
selection.selectElement( this.fakeObj );
}
else
element = null;
}
this.setupContent( parseLink.apply( this, [ editor, element ] ) );
},
onOk : function()
{
var attributes = { href : 'javascript:void(0)/*' + CKEDITOR.tools.getNextNumber() + '*/' },
removeAttributes = [],
data = { href : attributes.href },
me = this, editor = this.getParentEditor();
this.commitContent( data );
//<!-- linktonode START -->
attributes._cke_saved_href = (Drupal.settings.ckeditor.linktomenu_basepath || '' ) + $('#linktomenu_url').val();
//<!-- linktonode END -->
// Popups and target.
if ( data.target )
{
if ( data.target.type == 'popup' )
{
var onclickList = [ 'window.open(this.href, \'',
data.target.name || '', '\', \'' ];
var featureList = [ 'resizable', 'status', 'location', 'toolbar', 'menubar', 'fullscreen',
'scrollbars', 'dependent' ];
var featureLength = featureList.length;
var addFeature = function( featureName )
{
if ( data.target[ featureName ] )
featureList.push( featureName + '=' + data.target[ featureName ] );
};
for ( var i = 0 ; i < featureLength ; i++ )
featureList[i] = featureList[i] + ( data.target[ featureList[i] ] ? '=yes' : '=no' ) ;
addFeature( 'width' );
addFeature( 'left' );
addFeature( 'height' );
addFeature( 'top' );
onclickList.push( featureList.join( ',' ), '\'); return false;' );
attributes[ CKEDITOR.env.ie || CKEDITOR.env.webkit ? '_cke_pa_onclick' : 'onclick' ] = onclickList.join( '' );
}
else
{
if ( data.target.type != 'notSet' && data.target.name )
attributes.target = data.target.name;
removeAttributes.push( '_cke_pa_onclick', 'onclick' );
}
}
// Advanced attributes.
if ( data.adv )
{
var advAttr = function( inputName, attrName )
{
var value = data.adv[ inputName ];
if ( value )
attributes[attrName] = value;
else
removeAttributes.push( attrName );
};
if ( this._.selectedElement )
advAttr( 'advId', 'id' );
advAttr( 'advLangDir', 'dir' );
advAttr( 'advAccessKey', 'accessKey' );
advAttr( 'advName', 'name' );
advAttr( 'advLangCode', 'lang' );
advAttr( 'advTabIndex', 'tabindex' );
advAttr( 'advTitle', 'title' );
advAttr( 'advContentType', 'type' );
advAttr( 'advCSSClasses', 'class' );
advAttr( 'advCharset', 'charset' );
advAttr( 'advStyles', 'style' );
}
if ( !this._.selectedElement )
{
// Create element if current selection is collapsed.
var selection = editor.getSelection(),
ranges = selection.getRanges();
if ( ranges.length == 1 && ranges[0].collapsed )
{
// <!-- linktonode START -->
var text = new CKEDITOR.dom.text( $('#linktomenu_text').val() || attributes._cke_saved_href, editor.document );
// <!-- linktonode END -->
ranges[0].insertNode( text );
ranges[0].selectNodeContents( text );
selection.selectRanges( ranges );
}
// Apply style.
var style = new CKEDITOR.style( { element : 'a', attributes : attributes } );
style.type = CKEDITOR.STYLE_INLINE; // need to override... dunno why.
style.apply( editor.document );
// Id. Apply only to the first link.
if ( data.adv && data.adv.advId )
{
var links = this.getParentEditor().document.$.getElementsByTagName( 'a' );
for ( i = 0 ; i < links.length ; i++ )
{
if ( links[i].href == attributes.href )
{
links[i].id = data.adv.advId;
break;
}
}
}
}
else
{
// We're only editing an existing link, so just overwrite the attributes.
var element = this._.selectedElement;
// IE BUG: Setting the name attribute to an existing link doesn't work.
// Must re-create the link from weired syntax to workaround.
if ( CKEDITOR.env.ie && attributes.name != element.getAttribute( 'name' ) )
{
var newElement = new CKEDITOR.dom.element( '<a name="' + CKEDITOR.tools.htmlEncode( attributes.name ) + '">',
editor.document );
selection = editor.getSelection();
element.moveChildren( newElement );
element.copyAttributes( newElement, { name : 1 } );
newElement.replace( element );
element = newElement;
selection.selectElement( element );
}
element.setAttributes( attributes );
element.removeAttributes( removeAttributes );
// Make the element display as an anchor if a name has been set.
if ( element.getAttribute( 'name' ) )
element.addClass( 'cke_anchor' );
else
element.removeClass( 'cke_anchor' );
if ( this.fakeObj )
editor.createFakeElement( element, 'cke_anchor', 'anchor' ).replace( this.fakeObj );
delete this._.selectedElement;
}
},
onLoad : function()
{
if ( !editor.config.linkShowAdvancedTab )
this.hidePage( 'advanced' ); //Hide Advanded tab.
if ( !editor.config.linkShowTargetTab )
this.hidePage( 'target' ); //Hide Target tab.
}
};
} );

Binary file not shown.

After

Width:  |  Height:  |  Size: 830 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 971 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,302 @@
function selectRow(row) {
if (!row) {
return;
}
$('#nodelist tbody tr').each( function() {
$(this).css('background', 'transparent');
});
$(row).css('background', '#dadfe9');
selectedNode = row;
$('#linktomenu_url').val(row.cells[0].firstChild.nodeValue);
$('#linktomenu_text').val(row.cells[1].firstChild.nodeValue);
}
//save node/path urls
function SaveDrupalUrls()
{
//if ((!FCKConfig.DrupalLinkToContentSelect && FCKConfig.DrupalPathFilter) || GetE('cmbDrupalProtocol').value == 'internal') {
var url = CKEDITOR._._linkToNodeDialog.getContentElement( 'info', 'url' );
var type = CKEDITOR._._linkToNodeDialog.getContentElement( 'info', 'linkType' );
if ( type.getValue() == 'internal' ) {
url.setValue($('#txtUrlInternal').val());
}
else {
url.setValue($('#txtUrlPath').val());
}
}
/**
* loadCategories()
* @param obj parent Object
**/
function loadCategories(obj) {
var params = '';
var mid = '0';
var top = 95;
var objTop;
if (obj != null) {
mid = $(obj).get(0).value;
try {
objTop = $(obj).attr('id').match(/_(\d+)_sel/);
top += (objTop[1] * 17);
} catch (e) {
top += 0;
}
}
params = 'ltc-type=linktocontent_menu&ltc-menu-id=' + mid;
$('#statusImg').css( {
top : top + 'px'
}).show();
$.ajax( {
type : "POST",
url : Drupal.settings.basePath + 'index.php?q=linktocontent',
data : params,
error : function(xml, msg, exc) {
$('#statusImg').hide();
alert(Drupal.t('Error !msg', {'!msg' : msg + '\n' + xml.responseText }));
},
success : function(data) {
try {
var results = eval('(' + data + ');');
_clearNodeList();
if ((obj == null) || ($(obj).get(0).value > -1)) {
_fillDropdown(obj, results);
}
_fillNodelist(results);
} catch (e) {
alert(Drupal.t('Error on retrieving data from module.') + '\n' + e.name + '\n' + e.message);
} finally {
$('#statusImg').hide();
}
}
});
}
// dropdown functions
/**
*
* @access public
* @return void
*/
function _createDropdown(obj) {
var dropdown;
var elemname = '';
if (obj == null) {
elemname = 'browse_sel_-1';
} else {
elemname = $(obj).parent().attr('id');
_removeDescendant($(obj));
}
var level = parseInt(elemname.substring(elemname.lastIndexOf("_") + 1, elemname.length)) + 1;
var elemBase = elemname.substring(0, elemname.lastIndexOf("_") + 1);
// create surrounding <div>
var sel_div = $('<div></div>');
$(sel_div).attr('name', elemBase + level);
$(sel_div).attr('id', elemBase + level);
$(sel_div).attr('style', 'display: block; margin: 1px 0; padding: 0; border: 0;');
// create <select>
var select = $('<select></select>');
$(select).attr('size', 1);
$(select).attr('name', elemBase + level + '_sel');
$(select).attr('id', elemBase + level + '_sel');
// add event handler
$(select).change( function() {
_removeDescendant($(this).parent());
_clearNodeList();
loadCategories($(this));
});
// create image (only if level > 0)
if (level > 0) {
var img = $('<img />');
$(img).attr('id', elemname.substring(0, elemname.lastIndexOf('_') + 1) + level + '_img');
$(img).attr('alt', '');
$(img).attr('src', 'images/descendant.gif');
// extra margin for IE
$(img).css( {
margin : '0px 2px',
border : 0
});
$(img).css( {
marginLeft : String((parseInt(level) - 1) * 14) + 'px',
marginRight : '2px'
});
$(sel_div).append($(img));
}
$(sel_div).append($(select));
$(sel_div).hide();
$('#form_browse').append($(sel_div));
$(sel_div).show('slow');
return select;
}
/**
* _fillDropdown
* @return true if a dropdown was inserted
**/
function _fillDropdown(obj, results) {
if (results.menus != false) {
var select = _createDropdown(obj);
$(select).addOption(-1, "Choose Category");
for (key in results.menus) {
if (results.menus[key].hasChildren) {
$(select).addOption(results.menus[key].mid, results.menus[key].title);
}
}
return true;
}
return false;
}
/**
* remove "child" elements
**/
function _removeDescendant(elem) {
if (elem == null)
return;
$(elem).next().each( function() {
_removeDescendant($(this));
$(this).hide('slow').remove();
});
}
// nodelist functions
var selectedNode = null;
function _fillNodelist(results) {
if ((results == null) || (results.menus == null) || (results.menus == false))
return;
for (key in results.menus) {
if (results.menus[key].root) {
continue;
}
_addNodeToList(results.menus[key]);
}
}
function _clearNodeList() {
$('#nodelist tbody tr').each( function() {
$(this).remove();
});
}
function _addNodeToList(node) {
var tr = $('<tr></tr>').appendTo('#nodelist tbody');
tr.hover( function() {
if (!selectedNode || this != selectedNode)
$(this).css('background', '#cecece');
}, function() {
if (!selectedNode || this != selectedNode)
$(this).css('background', 'transparent');
});
tr.click( function() {
selectRow(this);
});
$('<td class="nid">' + node.path + '</td>').appendTo(tr);
$('<td>' + node.title + '</td>').appendTo(tr);
}
/**
* make the nodelist accessible by keyboard
**/
$('.accessible').keypress( function(e) {
switch (e.keyCode) {
case 39:
case 40: // move selection down
if (selectedNode == null)
selectedNode = $('#nodelist tbody tr').get(0);
else
selectedNode = $(selectedNode).next('tr').get(0);
selectRow(selectedNode);
break;
case 37:
case 38: // move selection up
if (selectedNode == null)
selectedNode = $('#nodelist tbody tr').get($('#nodelist tbody tr').length - 1);
else
selectedNode = $(selectedNode).prev('tr').get(0);
selectRow(selectedNode);
break;
}
});
// options
$.fn.addOption = function() {
if (arguments.length == 0)
return this;
// select option when added? default is false
var selectOption = false;
// multiple items
var multiple = false;
if (typeof arguments[0] == "object") {
multiple = true;
var items = arguments[0];
}
if (arguments.length >= 2) {
if (typeof arguments[1] == "boolean")
selectOption = arguments[1];
else if (typeof arguments[2] == "boolean")
selectOption = arguments[2];
if (!multiple) {
var value = arguments[0];
var text = arguments[1];
}
}
this.each( function() {
if (this.nodeName.toLowerCase() != "select")
return;
if (multiple) {
for (v in items) {
$(this).addOption(v, items[v], selectOption);
}
} else {
var option = document.createElement("option");
option.value = value;
option.text = text;
this.options.add(option);
}
if (selectOption) {
this.options[this.options.length - 1].selected = true;
}
})
return this;
}
$.fn.removeOption = function() {
if (arguments.length == 0)
return this;
if (typeof arguments[0] == "string")
var value = arguments[0];
else if (typeof arguments[0] == "number")
var index = arguments[0];
else
return this;
this.each( function() {
if (this.nodeName.toLowerCase() != "select")
return;
if (value) {
var optionsLength = this.options.length;
for ( var i = optionsLength - 1; i >= 0; i--) {
if (this.options[i].value == value) {
this.options[i] = null;
}
}
} else {
this.remove(index);
}
})
return this;
}

View file

@ -0,0 +1,56 @@
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'linktomenu',
{
init : function( editor )
{
// Add the link and unlink buttons.
editor.addCommand( 'linktomenu', new CKEDITOR.dialogCommand( 'linktomenu' ) );
editor.ui.addButton( 'LinkToMenu',
{
label : 'Link to menu',
icon : this.path + 'images/linktomenu.gif',
command : 'linktomenu'
} );
CKEDITOR.dialog.add( 'linktomenu', this.path + 'dialogs/link.js' );
// If the "menu" plugin is loaded, register the menu items.
if ( editor.addMenuItems )
{
editor.addMenuItems(
{
linktomenu :
{
label : 'Link to menu',
command : 'linktomenu',
group : 'linktomenu',
order : 1
}
});
}
// If the "contextmenu" plugin is loaded, register the listeners.
if ( editor.contextMenu )
{
editor.contextMenu.addListener( function( element, selection )
{
if ( !element )
return null;
var isAnchor = ( element.is( 'img' ) && element.getAttribute( '_cke_real_element_type' ) == 'anchor' );
if ( !isAnchor )
{
if ( !( element = element.getAscendant( 'a', true ) ) )
return null;
isAnchor = ( element.getAttribute( 'name' ) && !element.getAttribute( 'href' ) );
}
return { linktomenu : CKEDITOR.TRISTATE_OFF };
});
}
}
} );

View file

@ -0,0 +1,60 @@
form { padding: 0; margin: 0; }
.panel_wrapper { display: none; }
/*
.panel_wrap {
border: 1px solid #919b9c;
border-top: 0;
padding: .5em 0;
margin: 0;
background: #fff;
float: left;
width: 100%;
}*/
.panel_wrap .panel { display: none; }
.panel_wrap .current { display: block; width: 100%; height: auto; }
label { margin-bottom: .5em; display: block; }
#form_browse { margin: 0 .5em; }
.mceActionPanel { float: left; margin: .5em 0 0 0; }
.panel_wrap .nodes { margin: 0 .5em; padding: 0; }
#nodelist
{
padding: 0;
height: 13.5em;
width: 96%;
overflow: auto;
border: #D5D59D;
}
th { font-size:11px; border-bottom: 1px solid #D5D59D; }
td { text-align: left; padding: .05em .5em .05em 0; white-space: nowrap; }
tr { cursor: pointer; }
tr.head { cursor: auto; }
td.nid { display: none; }
#statusImg
{
display: block;
position: absolute;
left: 15px;
top: 125px;
width: 90%;
font-size: 14px;
color: #333333;
width: auto;
padding-right: .5em;
line-height: 82px;
vertical-align: middle;
}
#statusImg img
{
margin: 36px 10px;
float: left;
}

View file

@ -0,0 +1,908 @@
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'linktonode', function( editor )
{
//<!-- linktonode START -->
CKEDITOR.scriptLoader.load( Drupal.settings.basePath + "misc/jquery.js");
CKEDITOR.scriptLoader.load( Drupal.settings.ckeditor.module_path + "/plugins/linktonode/jscripts/functions.js", function() {
//window.focus();
loadCategories(null);
});
//<!-- linktonode END -->
// Handles the event when the "Target" selection box is changed.
var targetChanged = function()
{
var dialog = this.getDialog(),
popupFeatures = dialog.getContentElement( 'target', 'popupFeatures' ),
targetName = dialog.getContentElement( 'target', 'linkTargetName' ),
value = this.getValue();
if ( !popupFeatures || !targetName )
return;
popupFeatures = popupFeatures.getElement();
if ( value == 'popup' )
{
popupFeatures.show();
targetName.setLabel( editor.lang.link.targetPopupName );
}
else
{
popupFeatures.hide();
targetName.setLabel( editor.lang.link.targetFrameName );
this.getDialog().setValueOf( 'target', 'linkTargetName', value.charAt( 0 ) == '_' ? value : '' );
}
};
// Loads the parameters in a selected link to the link dialog fields.
var emailRegex = /^mailto:([^?]+)(?:\?(.+))?$/,
emailSubjectRegex = /subject=([^;?:@&=$,\/]*)/,
emailBodyRegex = /body=([^;?:@&=$,\/]*)/,
anchorRegex = /^#(.*)$/,
urlRegex = /^((?:http|https|ftp|news):\/\/)?(.*)$/,
selectableTargets = /^(_(?:self|top|parent|blank))$/;
var popupRegex =
/\s*window.open\(\s*this\.href\s*,\s*(?:'([^']*)'|null)\s*,\s*'([^']*)'\s*\)\s*;\s*return\s*false;*\s*/;
var popupFeaturesRegex = /(?:^|,)([^=]+)=(\d+|yes|no)/gi;
var parseLink = function( editor, element )
{
var href = element ? ( element.getAttribute( '_cke_saved_href' ) || element.getAttribute( 'href' ) ) : '',
emailMatch = '',
anchorMatch = '',
urlMatch = false,
retval = {};
if ( href )
{
emailMatch = href.match( emailRegex );
anchorMatch = href.match( anchorRegex );
urlMatch = href.match( urlRegex );
}
// Load the link type and URL.
if ( emailMatch )
{
var subjectMatch = href.match( emailSubjectRegex ),
bodyMatch = href.match( emailBodyRegex );
retval.type = 'email';
retval.email = {};
retval.email.address = emailMatch[1];
subjectMatch && ( retval.email.subject = decodeURIComponent( subjectMatch[1] ) );
bodyMatch && ( retval.email.body = decodeURIComponent( bodyMatch[1] ) );
}
else if ( anchorMatch )
{
retval.type = 'anchor';
retval.anchor = {};
retval.anchor.name = retval.anchor.id = anchorMatch[1];
}
else if ( href && urlMatch ) // urlRegex matches empty strings, so need to check for href as well.
{
retval.type = 'url';
retval.url = {};
retval.url.protocol = urlMatch[1];
retval.url.url = urlMatch[2];
}
else
retval.type = 'url';
// Load target and popup settings.
if ( element )
{
var target = element.getAttribute( 'target' );
retval.target = {};
retval.adv = {};
// IE BUG: target attribute is an empty string instead of null in IE if it's not set.
if ( !target )
{
var onclick = element.getAttribute( '_cke_pa_onclick' ) || element.getAttribute( 'onclick' ),
onclickMatch = onclick && onclick.match( popupRegex );
if ( onclickMatch )
{
retval.target.type = 'popup';
retval.target.name = onclickMatch[1];
var featureMatch;
while ( ( featureMatch = popupFeaturesRegex.exec( onclickMatch[2] ) ) )
{
if ( featureMatch[2] == 'yes' || featureMatch[2] == '1' )
retval.target[ featureMatch[1] ] = true;
else if ( isFinite( featureMatch[2] ) )
retval.target[ featureMatch[1] ] = featureMatch[2];
}
}
}
else
{
var targetMatch = target.match( selectableTargets );
if ( targetMatch )
retval.target.type = retval.target.name = target;
else
{
retval.target.type = 'frame';
retval.target.name = target;
}
}
var me = this;
var advAttr = function( inputName, attrName )
{
var value = element.getAttribute( attrName );
if ( value !== null )
retval.adv[ inputName ] = value || '';
};
advAttr( 'advId', 'id' );
advAttr( 'advLangDir', 'dir' );
advAttr( 'advAccessKey', 'accessKey' );
advAttr( 'advName', 'name' );
advAttr( 'advLangCode', 'lang' );
advAttr( 'advTabIndex', 'tabindex' );
advAttr( 'advTitle', 'title' );
advAttr( 'advContentType', 'type' );
advAttr( 'advCSSClasses', 'class' );
advAttr( 'advCharset', 'charset' );
advAttr( 'advStyles', 'style' );
}
// Find out whether we have any anchors in the editor.
// Get all IMG elements in CK document.
var elements = editor.document.getElementsByTag( 'img' ),
realAnchors = new CKEDITOR.dom.nodeList( editor.document.$.anchors ),
anchors = retval.anchors = [];
for( var i = 0; i < elements.count() ; i++ )
{
var item = elements.getItem( i );
if ( item.getAttribute( '_cke_realelement' ) && item.getAttribute( '_cke_real_element_type' ) == 'anchor' )
{
anchors.push( editor.restoreRealElement( item ) );
}
}
for ( i = 0 ; i < realAnchors.count() ; i++ )
anchors.push( realAnchors.getItem( i ) );
for ( i = 0 ; i < anchors.length ; i++ )
{
item = anchors[ i ];
anchors[ i ] = { name : item.getAttribute( 'name' ), id : item.getAttribute( 'id' ) };
}
// Record down the selected element in the dialog.
this._.selectedElement = element;
return retval;
};
var setupParams = function( page, data )
{
if ( data[page] )
this.setValue( data[page][this.id] || '' );
};
var setupPopupParams = function( data )
{
return setupParams.call( this, 'target', data );
};
var setupAdvParams = function( data )
{
return setupParams.call( this, 'adv', data );
};
var commitParams = function( page, data )
{
if ( !data[page] )
data[page] = {};
data[page][this.id] = this.getValue() || '';
};
var commitPopupParams = function( data )
{
return commitParams.call( this, 'target', data );
};
var commitAdvParams = function( data )
{
return commitParams.call( this, 'adv', data );
};
return {
title : 'Link to node',
minWidth : 350,
minHeight : 230,
contents : [
{
id : 'info',
label : editor.lang.link.info,
title : editor.lang.link.info,
elements :
[
{
type : 'vbox',
id : 'urlOptions',
children :
[
{
type : 'hbox',
widths : [ '25%', '75%' ],
children :
[
{
id : 'linkType',
type : 'select',
label : editor.lang.link.type,
hidden : !Drupal.settings.ckeditor.linktocontent_node_select_type,
'default' : 'url',
items :
[
[ 'path', 'path' ],
[ 'internal', 'internal' ],
],
onChange : function() {
var url = this.getDialog().getContentElement( 'info', 'url' );
if ( ( !Drupal.settings.ckeditor.linktocontent_node_select_type && Drupal.settings.ckeditor.linktocontent_node_path_filter )
|| this.getValue() == 'internal' ) {
url.setValue($('#txtUrlInternal').val());
}
else {
url.setValue($('#txtUrlPath').val());
}
},
setup : function( data )
{
if ( data.type )
this.setValue( data.type );
},
commit : function( data )
{
data.type = this.getValue();
}
},
{
type : 'text',
id : 'url',
label : editor.lang.common.url,
onLoad : function ()
{
this.allowOnChange = true;
},
validate : function()
{
var dialog = this.getDialog();
var func = CKEDITOR.dialog.validate.notEmpty( editor.lang.link.noUrl );
return func.apply( this );
},
setup : function( data )
{
this.allowOnChange = false;
if ( data.url )
this.setValue( data.url.url );
this.allowOnChange = true;
var linkType = this.getDialog().getContentElement( 'info', 'linkType' );
if ( linkType && linkType.getValue() == 'url' )
this.select();
},
commit : function( data )
{
if ( !data.url )
data.url = {};
data.url.url = this.getValue();
this.allowOnChange = false;
}
}
],
setup : function( data )
{
if ( !this.getDialog().getContentElement( 'info', 'linkType' ) )
this.getElement().show();
}
}
]
},
{
type : 'html',
html :
'<link rel="stylesheet" href="' + Drupal.settings.ckeditor.module_path + '/plugins/linktonode/css/linktocontent.css" type="text/css" />' +
'<div class="panel_wrap" id="list">' +
'<div class="nodes">' +
'<div id="nodelist" class="scrollable accessible">' +
'<table cellspacing="0" summary="nodelist" style="width:100%">' +
'<thead>' +
'<tr>' +
'<th style="font-weight:bold">Node title</th>' +
'<th style="font-weight:bold">Created</th>' +
'<th style="font-weight:bold">Author</th>' +
'</tr>' +
'</thead>' +
'<tbody>' +
'</tbody>' +
'</table>' +
'</div>' +
'</div>' +
'</div>' +
'<input id="txtUrlPath" type="hidden" />' +
'<input id="txtUrlInternal" type="hidden" />' +
'<input id="txtUrlText" type="hidden" />' +
'<div id="statusImg"><img alt="loading" src="' + Drupal.settings.ckeditor.module_path + '/plugins/linktonode/images/loading.gif" />loading...</div>'
}
]
},
{
id : 'target',
label : editor.lang.link.target,
title : editor.lang.link.target,
elements :
[
{
type : 'hbox',
widths : [ '50%', '50%' ],
children :
[
{
type : 'select',
id : 'linkTargetType',
label : editor.lang.link.target,
'default' : 'notSet',
style : 'width : 100%;',
'items' :
[
[ editor.lang.link.targetNotSet, 'notSet' ],
[ editor.lang.link.targetFrame, 'frame' ],
[ editor.lang.link.targetPopup, 'popup' ],
[ editor.lang.link.targetNew, '_blank' ],
[ editor.lang.link.targetTop, '_top' ],
[ editor.lang.link.targetSelf, '_self' ],
[ editor.lang.link.targetParent, '_parent' ]
],
onChange : targetChanged,
setup : function( data )
{
if ( data.target )
this.setValue( data.target.type );
},
commit : function( data )
{
if ( !data.target )
data.target = {};
data.target.type = this.getValue();
}
},
{
type : 'text',
id : 'linkTargetName',
label : editor.lang.link.targetFrameName,
'default' : '',
setup : function( data )
{
if ( data.target )
this.setValue( data.target.name );
},
commit : function( data )
{
if ( !data.target )
data.target = {};
data.target.name = this.getValue();
}
}
]
},
{
type : 'vbox',
width : 260,
align : 'center',
padding : 2,
id : 'popupFeatures',
children :
[
{
type : 'html',
html : CKEDITOR.tools.htmlEncode( editor.lang.link.popupFeatures )
},
{
type : 'hbox',
children :
[
{
type : 'checkbox',
id : 'resizable',
label : editor.lang.link.popupResizable,
setup : setupPopupParams,
commit : commitPopupParams
},
{
type : 'checkbox',
id : 'status',
label : editor.lang.link.popupStatusBar,
setup : setupPopupParams,
commit : commitPopupParams
}
]
},
{
type : 'hbox',
children :
[
{
type : 'checkbox',
id : 'location',
label : editor.lang.link.popupLocationBar,
setup : setupPopupParams,
commit : commitPopupParams
},
{
type : 'checkbox',
id : 'toolbar',
label : editor.lang.link.popupToolbar,
setup : setupPopupParams,
commit : commitPopupParams
}
]
},
{
type : 'hbox',
children :
[
{
type : 'checkbox',
id : 'menubar',
label : editor.lang.link.popupMenuBar,
setup : setupPopupParams,
commit : commitPopupParams
},
{
type : 'checkbox',
id : 'fullscreen',
label : editor.lang.link.popupFullScreen,
setup : setupPopupParams,
commit : commitPopupParams
}
]
},
{
type : 'hbox',
children :
[
{
type : 'checkbox',
id : 'scrollbars',
label : editor.lang.link.popupScrollBars,
setup : setupPopupParams,
commit : commitPopupParams
},
{
type : 'checkbox',
id : 'dependent',
label : editor.lang.link.popupDependent,
setup : setupPopupParams,
commit : commitPopupParams
}
]
},
{
type : 'hbox',
children :
[
{
type : 'text',
widths : [ '30%', '70%' ],
labelLayout : 'horizontal',
label : editor.lang.link.popupWidth,
id : 'width',
setup : setupPopupParams,
commit : commitPopupParams
},
{
type : 'text',
labelLayout : 'horizontal',
widths : [ '55%', '45%' ],
label : editor.lang.link.popupLeft,
id : 'left',
setup : setupPopupParams,
commit : commitPopupParams
}
]
},
{
type : 'hbox',
children :
[
{
type : 'text',
labelLayout : 'horizontal',
widths : [ '30%', '70%' ],
label : editor.lang.link.popupHeight,
id : 'height',
setup : setupPopupParams,
commit : commitPopupParams
},
{
type : 'text',
labelLayout : 'horizontal',
label : editor.lang.link.popupTop,
widths : [ '55%', '45%' ],
id : 'top',
setup : setupPopupParams,
commit : commitPopupParams
}
]
}
]
}
]
},
{
id : 'advanced',
label : editor.lang.link.advanced,
title : editor.lang.link.advanced,
elements :
[
{
type : 'vbox',
padding : 1,
children :
[
{
type : 'hbox',
widths : [ '45%', '35%', '20%' ],
children :
[
{
type : 'text',
id : 'advId',
label : editor.lang.link.id,
setup : setupAdvParams,
commit : commitAdvParams
},
{
type : 'select',
id : 'advLangDir',
label : editor.lang.link.langDir,
'default' : '',
style : 'width:110px',
items :
[
[ editor.lang.link.langDirNotSet, '' ],
[ editor.lang.link.langDirLTR, 'ltr' ],
[ editor.lang.link.langDirRTL, 'rtl' ]
],
setup : setupAdvParams,
commit : commitAdvParams
},
{
type : 'text',
id : 'advAccessKey',
width : '80px',
label : editor.lang.link.acccessKey,
maxLength : 1,
setup : setupAdvParams,
commit : commitAdvParams
}
]
},
{
type : 'hbox',
widths : [ '45%', '35%', '20%' ],
children :
[
{
type : 'text',
label : editor.lang.link.name,
id : 'advName',
setup : setupAdvParams,
commit : commitAdvParams
},
{
type : 'text',
label : editor.lang.link.langCode,
id : 'advLangCode',
width : '110px',
'default' : '',
setup : setupAdvParams,
commit : commitAdvParams
},
{
type : 'text',
label : editor.lang.link.tabIndex,
id : 'advTabIndex',
width : '80px',
maxLength : 5,
setup : setupAdvParams,
commit : commitAdvParams
}
]
}
]
},
{
type : 'vbox',
padding : 1,
children :
[
{
type : 'hbox',
widths : [ '45%', '55%' ],
children :
[
{
type : 'text',
label : editor.lang.link.advisoryTitle,
'default' : '',
id : 'advTitle',
setup : setupAdvParams,
commit : commitAdvParams
},
{
type : 'text',
label : editor.lang.link.advisoryContentType,
'default' : '',
id : 'advContentType',
setup : setupAdvParams,
commit : commitAdvParams
}
]
},
{
type : 'hbox',
widths : [ '45%', '55%' ],
children :
[
{
type : 'text',
label : editor.lang.link.cssClasses,
'default' : '',
id : 'advCSSClasses',
setup : setupAdvParams,
commit : commitAdvParams
},
{
type : 'text',
label : editor.lang.link.charset,
'default' : '',
id : 'advCharset',
setup : setupAdvParams,
commit : commitAdvParams
}
]
},
{
type : 'hbox',
children :
[
{
type : 'text',
label : editor.lang.link.styles,
'default' : '',
id : 'advStyles',
setup : setupAdvParams,
commit : commitAdvParams
}
]
}
]
}
]
}
],
onShow : function()
{
this.fakeObj = false;
var editor = this.getParentEditor(),
selection = editor.getSelection(),
ranges = selection.getRanges(),
element = null,
me = this;
// Fill in all the relevant fields if there's already one link selected.
if ( ranges.length == 1 )
{
var rangeRoot = ranges[0].getCommonAncestor( true );
element = rangeRoot.getAscendant( 'a', true );
if ( element && element.getAttribute( 'href' ) )
{
selection.selectElement( element );
}
else if ( ( element = rangeRoot.getAscendant( 'img', true ) ) &&
element.getAttribute( '_cke_real_element_type' ) &&
element.getAttribute( '_cke_real_element_type' ) == 'anchor' )
{
this.fakeObj = element;
element = editor.restoreRealElement( this.fakeObj );
selection.selectElement( this.fakeObj );
}
else
element = null;
}
this.setupContent( parseLink.apply( this, [ editor, element ] ) );
},
onOk : function()
{
var attributes = { href : 'javascript:void(0)/*' + CKEDITOR.tools.getNextNumber() + '*/' },
removeAttributes = [],
data = { href : attributes.href },
me = this, editor = this.getParentEditor();
this.commitContent( data );
//<!-- linktonode START -->
attributes._cke_saved_href = this.getContentElement( 'info', 'url' ).getValue();
//<!-- linktonode END -->
// Popups and target.
if ( data.target )
{
if ( data.target.type == 'popup' )
{
var onclickList = [ 'window.open(this.href, \'',
data.target.name || '', '\', \'' ];
var featureList = [ 'resizable', 'status', 'location', 'toolbar', 'menubar', 'fullscreen',
'scrollbars', 'dependent' ];
var featureLength = featureList.length;
var addFeature = function( featureName )
{
if ( data.target[ featureName ] )
featureList.push( featureName + '=' + data.target[ featureName ] );
};
for ( var i = 0 ; i < featureLength ; i++ )
featureList[i] = featureList[i] + ( data.target[ featureList[i] ] ? '=yes' : '=no' ) ;
addFeature( 'width' );
addFeature( 'left' );
addFeature( 'height' );
addFeature( 'top' );
onclickList.push( featureList.join( ',' ), '\'); return false;' );
attributes[ CKEDITOR.env.ie || CKEDITOR.env.webkit ? '_cke_pa_onclick' : 'onclick' ] = onclickList.join( '' );
}
else
{
if ( data.target.type != 'notSet' && data.target.name )
attributes.target = data.target.name;
removeAttributes.push( '_cke_pa_onclick', 'onclick' );
}
}
// Advanced attributes.
if ( data.adv )
{
var advAttr = function( inputName, attrName )
{
var value = data.adv[ inputName ];
if ( value )
attributes[attrName] = value;
else
removeAttributes.push( attrName );
};
if ( this._.selectedElement )
advAttr( 'advId', 'id' );
advAttr( 'advLangDir', 'dir' );
advAttr( 'advAccessKey', 'accessKey' );
advAttr( 'advName', 'name' );
advAttr( 'advLangCode', 'lang' );
advAttr( 'advTabIndex', 'tabindex' );
advAttr( 'advTitle', 'title' );
advAttr( 'advContentType', 'type' );
advAttr( 'advCSSClasses', 'class' );
advAttr( 'advCharset', 'charset' );
advAttr( 'advStyles', 'style' );
}
if ( !this._.selectedElement )
{
// Create element if current selection is collapsed.
var selection = editor.getSelection(),
ranges = selection.getRanges();
if ( ranges.length == 1 && ranges[0].collapsed )
{
// <!-- linktonode START -->
var text = new CKEDITOR.dom.text( $('#txtUrlText').val() || attributes._cke_saved_href, editor.document );
// <!-- linktonode END -->
ranges[0].insertNode( text );
ranges[0].selectNodeContents( text );
selection.selectRanges( ranges );
}
// Apply style.
var style = new CKEDITOR.style( { element : 'a', attributes : attributes } );
style.type = CKEDITOR.STYLE_INLINE; // need to override... dunno why.
style.apply( editor.document );
// Id. Apply only to the first link.
if ( data.adv && data.adv.advId )
{
var links = this.getParentEditor().document.$.getElementsByTagName( 'a' );
for ( i = 0 ; i < links.length ; i++ )
{
if ( links[i].href == attributes.href )
{
links[i].id = data.adv.advId;
break;
}
}
}
}
else
{
// We're only editing an existing link, so just overwrite the attributes.
var element = this._.selectedElement;
// IE BUG: Setting the name attribute to an existing link doesn't work.
// Must re-create the link from weired syntax to workaround.
if ( CKEDITOR.env.ie && attributes.name != element.getAttribute( 'name' ) )
{
var newElement = new CKEDITOR.dom.element( '<a name="' + CKEDITOR.tools.htmlEncode( attributes.name ) + '">',
editor.document );
selection = editor.getSelection();
element.moveChildren( newElement );
element.copyAttributes( newElement, { name : 1 } );
newElement.replace( element );
element = newElement;
selection.selectElement( element );
}
element.setAttributes( attributes );
element.removeAttributes( removeAttributes );
// Make the element display as an anchor if a name has been set.
if ( element.getAttribute( 'name' ) )
element.addClass( 'cke_anchor' );
else
element.removeClass( 'cke_anchor' );
if ( this.fakeObj )
editor.createFakeElement( element, 'cke_anchor', 'anchor' ).replace( this.fakeObj );
delete this._.selectedElement;
}
},
onLoad : function()
{
CKEDITOR._._linkToNodeDialog = this;
if ( !editor.config.linkShowAdvancedTab )
this.hidePage( 'advanced' ); //Hide Advanded tab.
if ( !editor.config.linkShowTargetTab )
this.hidePage( 'target' ); //Hide Target tab.
}
};
} );

Binary file not shown.

After

Width:  |  Height:  |  Size: 830 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 990 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,302 @@
function selectRow(row) {
if (!row) {
return;
}
$('#nodelist tbody tr').each(function() {
$(this).css({background: '#ffffff'});
selectedNode = null;
});
selectedNode = row;
$(row).css({background: '#dadfe9'});
$('#txtUrlPath').val( selectedNode.cells[0].firstChild.nodeValue );
$('#txtUrlInternal').val( 'internal:' + selectedNode.cells[4].firstChild.nodeValue );
$('#txtUrlText').val( selectedNode.cells[1].firstChild.nodeValue );
var type = CKEDITOR._._linkToNodeDialog.getContentElement( 'info', 'linkType' );
type.onChange();
}
/**
* loadCategories()
* @param obj parent Object
**/
function loadCategories(obj) {
var params = '';
var vid = '-1';
var top = 95;
var objTop;
if (obj != null) {
var fSel = $('#browse_sel_0_sel');
if (fSel !== null) {
vid = $(fSel).get(0).value;
}
if ($(obj).attr('id') != 'browse_sel_0_sel') {
params = '&ltc-term-id=' + $(obj).get(0).value;
}
try
{
objTop = $(obj).attr('id').match(/_(\d+)_sel/);
top += (objTop[1] * 17);
}
catch (e) {
top += 0;
}
}
params = 'ltc-type=linktocontent_node&ltc-vocab-id=' + vid + params;
$('#statusImg').css( {
top : top + 'px'
}).show();
$.ajax( {
type : "POST",
url : Drupal.settings.basePath + 'index.php?q=linktocontent',
data : params,
error : function(xml, msg, exc) {
$('#statusImg').hide();
alert(Drupal.t('Error !msg', {'!msg' : msg + '\n' + xml.responseText }));
},
success : function(data) {
try {
var results = eval('(' + data + ');');
_clearNodeList();
if ((obj == null) || ($(obj).get(0).value > -1)) {
_fillDropdown(obj, results);
}
_fillNodelist(results);
} catch (e) {
alert(Drupal.t('Error on retrieving data from module.') + '\n' + e.name + '\n' + e.message);
} finally {
$('#statusImg').hide();
}
}
});
}
// dropdown functions
/**
*
* @access public
* @return void
*/
function _createDropdown(obj) {
var dropdown;
var elemname = '';
if (obj == null) {
elemname = 'browse_sel_-1';
} else {
elemname = $(obj).parent().attr('id');
_removeDescendant($(obj));
}
var level = parseInt(elemname.substring(elemname.lastIndexOf("_") + 1, elemname.length)) + 1;
var elemBase = elemname.substring(0, elemname.lastIndexOf("_") + 1);
// create surrounding <div>
var sel_div = $('<div></div>');
$(sel_div).attr('name', elemBase + level);
$(sel_div).attr('id', elemBase + level);
$(sel_div).attr('style', 'display: block; margin: 1px 0; padding: 0; border: 0;');
// create <select>
var select = $('<select></select>');
$(select).attr('size', 1);
$(select).attr('name', elemBase + level + '_sel');
$(select).attr('id', elemBase + level + '_sel');
// add event handler
$(select).change( function() {
_removeDescendant($(this).parent());
_clearNodeList();
loadCategories($(this));
});
// create image (only if level > 0)
if (level > 0) {
var img = $('<img />');
$(img).attr('id', elemname.substring(0, elemname.lastIndexOf('_') + 1) + level + '_img');
$(img).attr('alt', '');
$(img).attr('src', 'images/descendant.gif');
// extra margin for IE
$(img).css( {
margin : '0px 2px',
border : 0
});
$(img).css( {
marginLeft : String((parseInt(level) - 1) * 14) + 'px',
marginRight : '2px'
});
$(sel_div).append($(img));
}
$(sel_div).append($(select));
$(sel_div).hide();
$('#form_browse').append($(sel_div));
$(sel_div).show('slow');
return select;
}
/**
* _fillDropdown
* @return true if a dropdown was inserted
**/
function _fillDropdown(obj, results){
if (results.categories != false) {
var select = _createDropdown(obj);
<!-- linktonode START -->
$(select).addOption(-1, "Choose category");
//<!-- linktonode END -->
for (key in results.categories)
$(select).addOption(results.categories[key].tid, results.categories[key].title);
return true;
}
return false;
}
/**
* remove "child" elements
**/
function _removeDescendant(elem) {
if (elem == null)
return;
$(elem).next().each( function() {
_removeDescendant($(this));
$(this).hide('slow').remove();
});
}
// nodelist functions
var selectedNode = null;
function _fillNodelist(results) {
if ((results == null) || (results.nodes == null) || (results.nodes == false))
return;
for (key in results.nodes) {
_addNodeToList(results.nodes[key]);
}
}
function _clearNodeList() {
$('#nodelist tbody tr').each( function() {
$(this).remove();
});
}
function _addNodeToList(node) {
var tr = $('<tr></tr>').appendTo('#nodelist tbody');
tr.hover( function() {
if (!selectedNode || this != selectedNode)
$(this).css('background', '#cecece');
}, function() {
if (!selectedNode || this != selectedNode)
$(this).css('background', 'transparent');
});
tr.click( function() {
selectRow(this);
});
$('<td class="nid">' + node.href + '</td>').appendTo(tr);
$('<td>' + node.title + '</td>').appendTo(tr);
$('<td>' + node.date + '</td>').appendTo(tr);
$('<td>' + node.author + '</td>').appendTo(tr);
$('<td class="nid">' + node.orig_href + '</td>').appendTo(tr);
}
/**
* make the nodelist accessible by keyboard
**/
$('.accessible').keypress( function(e) {
switch (e.keyCode) {
case 39:
case 40: // move selection down
if (selectedNode == null)
selectedNode = $('#nodelist tbody tr').get(0);
else
selectedNode = $(selectedNode).next('tr').get(0);
selectRow(selectedNode);
break;
case 37:
case 38: // move selection up
if (selectedNode == null)
selectedNode = $('#nodelist tbody tr').get($('#nodelist tbody tr').length - 1);
else
selectedNode = $(selectedNode).prev('tr').get(0);
selectRow(selectedNode);
break;
}
});
// options
$.fn.addOption = function() {
if (arguments.length == 0)
return this;
// select option when added? default is false
var selectOption = false;
// multiple items
var multiple = false;
if (typeof arguments[0] == "object") {
multiple = true;
var items = arguments[0];
}
if (arguments.length >= 2) {
if (typeof arguments[1] == "boolean")
selectOption = arguments[1];
else if (typeof arguments[2] == "boolean")
selectOption = arguments[2];
if (!multiple) {
var value = arguments[0];
var text = arguments[1];
}
}
this.each( function() {
if (this.nodeName.toLowerCase() != "select")
return;
if (multiple) {
for (v in items) {
$(this).addOption(v, items[v], selectOption);
}
} else {
var option = document.createElement("option");
option.value = value;
option.text = text;
this.options.add(option);
}
if (selectOption) {
this.options[this.options.length - 1].selected = true;
}
})
return this;
}
$.fn.removeOption = function() {
if (arguments.length == 0)
return this;
if (typeof arguments[0] == "string")
var value = arguments[0];
else if (typeof arguments[0] == "number")
var index = arguments[0];
else
return this;
this.each( function() {
if (this.nodeName.toLowerCase() != "select")
return;
if (value) {
var optionsLength = this.options.length;
for ( var i = optionsLength - 1; i >= 0; i--) {
if (this.options[i].value == value) {
this.options[i] = null;
}
}
} else {
this.remove(index);
}
})
return this;
}

View file

@ -0,0 +1,56 @@
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'linktonode',
{
init : function( editor )
{
// Add the link and unlink buttons.
editor.addCommand( 'linktonode', new CKEDITOR.dialogCommand( 'linktonode' ) );
editor.ui.addButton( 'LinkToNode',
{
label : 'Link to node',
icon : this.path + 'images/linktonode.gif',
command : 'linktonode'
} );
CKEDITOR.dialog.add( 'linktonode', this.path + 'dialogs/link.js' );
// If the "menu" plugin is loaded, register the menu items.
if ( editor.addMenuItems )
{
editor.addMenuItems(
{
linktomenu :
{
label : 'Link to node',
command : 'linktonode',
group : 'linktonode',
order : 1
}
});
}
// If the "contextmenu" plugin is loaded, register the listeners.
if ( editor.contextMenu )
{
editor.contextMenu.addListener( function( element, selection )
{
if ( !element )
return null;
var isAnchor = ( element.is( 'img' ) && element.getAttribute( '_cke_real_element_type' ) == 'anchor' );
if ( !isAnchor )
{
if ( !( element = element.getAscendant( 'a', true ) ) )
return null;
isAnchor = ( element.getAttribute( 'name' ) && !element.getAttribute( 'href' ) );
}
return { linktomenu : CKEDITOR.TRISTATE_OFF };
});
}
}
} );

View file

@ -0,0 +1,54 @@
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'mediaembedDialog', function( editor ) {
var numberRegex = /^\d+(?:\.\d+)?$/;
var cssifyLength = function( length )
{
if ( numberRegex.test( length ) )
return length + 'px';
return length;
}
return {
title : Drupal.t('Embed Media Dialog'),
minWidth : 400,
minHeight : 200,
contents : [
{
id : 'mediaTab',
label : Drupal.t('Embed media code'),
title : Drupal.t('Embed media code'),
elements :
[
{
id : 'embed',
type : 'textarea',
rows : 9,
label : Drupal.t('Paste embed code here')
}
]
}
],
onOk : function() {
var editor = this.getParentEditor();
var content = this.getValueOf( 'mediaTab', 'embed' );
if ( content.length>0 ) {
var realElement = CKEDITOR.dom.element.createFromHtml('<div class="media_embed"></div>');
realElement.setHtml(content);
var fakeElement = editor.createFakeElement( realElement , 'cke_mediaembed', 'div', true);
var matches = content.match(/width=(["']?)(\d+)\1/i);
if (matches && matches.length == 3) {
fakeElement.setStyle('width', cssifyLength(matches[2]));
}
matches = content.match(/height=([\"\']?)(\d+)\1/i);
if (matches && matches.length == 3) {
fakeElement.setStyle('height', cssifyLength(matches[2]));
}
editor.insertElement(fakeElement);
}
}
};
});

Binary file not shown.

After

Width:  |  Height:  |  Size: 560 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,110 @@
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Plugin for inserting Drupal embeded media
*/
( function() {
var numberRegex = /^\d+(?:\.\d+)?$/;
var cssifyLength = function( length )
{
if ( numberRegex.test( length ) )
return length + 'px';
return length;
}
CKEDITOR.plugins.add( 'mediaembed',
{
requires : [ 'dialog', 'fakeobjects' ],
init: function( editor )
{
var addCssObj = CKEDITOR;
if (Drupal.ckeditor_ver == 3) {
addCssObj = editor;
}
addCssObj.addCss(
'img.cke_mediaembed' +
'{' +
'background-image: url(' + CKEDITOR.getUrl( this.path + 'images/placeholder.gif' ) + ');' +
'background-position: center center;' +
'background-repeat: no-repeat;' +
'border: 1px solid #a9a9a9;' +
'width: 80px;' +
'height: 80px;' +
'}'
);
editor.addCommand( 'mediaembedDialog', new CKEDITOR.dialogCommand( 'mediaembedDialog', { allowedContent : 'div(media_embed);iframe[*](*)' } ) );
editor.ui.addButton( 'MediaEmbed',
{
label: 'Embed Media',
command: 'mediaembedDialog',
icon: this.path + 'images/icon.png'
} );
CKEDITOR.dialog.add( 'mediaembedDialog', this.path + 'dialogs/mediaembed.js' );
},
afterInit : function( editor )
{
var dataProcessor = editor.dataProcessor,
dataFilter = dataProcessor && dataProcessor.dataFilter,
htmlFilter = dataProcessor && dataProcessor.htmlFilter;
if ( htmlFilter )
{
htmlFilter.addRules({
elements :
{
'div' : function ( element ) {
if( element.attributes['class'] == 'media_embed' ) {
for (var x in element.children) {
if (typeof(element.children[x].attributes) != 'undefined') {
if (typeof(element.children[x].attributes.width) != undefined) {
element.children[x].attributes.width = element.attributes.width;
}
if (typeof(element.children[x].attributes.height) != undefined) {
element.children[x].attributes.height = element.attributes.height;
}
}
}
}
}
}
});
}
if ( dataFilter )
{
dataFilter.addRules(
{
elements :
{
'div' : function( element )
{
var attributes = element.attributes,
classId = attributes.classid && String( attributes.classid ).toLowerCase();
if (element.attributes[ 'class' ] == 'media_embed') {
var fakeElement = editor.createFakeParserElement(element, 'cke_mediaembed', 'div', true);
var fakeStyle = fakeElement.attributes.style || '';
if (element.children[0] && typeof(element.children[0].attributes) != 'undefined') {
var height = element.children[0].attributes.height,
width = element.children[0].attributes.width;
}
if ( typeof width != 'undefined' )
fakeStyle = fakeElement.attributes.style = fakeStyle + 'width:' + cssifyLength( width ) + ';';
if ( typeof height != 'undefined' )
fakeStyle = fakeElement.attributes.style = fakeStyle + 'height:' + cssifyLength( height ) + ';';
return fakeElement;
}
return element;
}
}
},
5);
}
}
} );
} )();