芝麻web文件管理V1.00
编辑当前文件:/home/prismawe/www/itrema/wp-content/plugins/ckeditor-for-wordpress/plugins/nggallery/plugin.js
/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.add( 'nextgen', { requires: [ 'iframedialog' ], init : function( editor ) { var me = this; CKEDITOR.dialog.add( 'NextgenDialog', function (){ return { title : 'Nextgen Gallery Dialog', minWidth : 550, minHeight : 450, contents : [ { id : 'iframe', label : 'Nextgen Gallery', expand : true, elements : [ { type : 'html', id : 'pageNextgen', label : 'NextgenGallery', style : 'width : 350px;height: 440px;', html : '
' } ] } ], onOk : function() { var editor = this.getParentEditor(), code = document.getElementById('iframeNextgen').contentWindow.insertNGGLink(); if(code.length > 0) { editor.insertHtml(code); } } }; }); // Register the toolbar buttons. editor.ui.addButton( 'Nextgen', { label : 'Nextgen Gallery', icon : this.path + 'nextgen.gif', command : 'nextgen', toolbar: 'wordpress,100' }); // Register the commands. editor.addCommand( 'nextgen', new CKEDITOR.dialogCommand( 'NextgenDialog' )); } });