123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- /**
- * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or http://ckeditor.com/license
- */
- /**
- * @fileOverview Forms Plugin
- */
- CKEDITOR.plugins.add( 'forms', {
- requires: 'dialog,fakeobjects',
- // jscs:disable maximumLineLength
- lang: 'af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE%
- // jscs:enable maximumLineLength
- icons: 'button,checkbox,form,hiddenfield,imagebutton,radio,select,select-rtl,textarea,textarea-rtl,textfield', // %REMOVE_LINE_CORE%
- hidpi: true, // %REMOVE_LINE_CORE%
- onLoad: function() {
- CKEDITOR.addCss( '.cke_editable form' +
- '{' +
- 'border: 1px dotted #FF0000;' +
- 'padding: 2px;' +
- '}\n' );
- CKEDITOR.addCss( 'img.cke_hidden' +
- '{' +
- 'background-image: url(' + CKEDITOR.getUrl( this.path + 'images/hiddenfield.gif' ) + ');' +
- 'background-position: center center;' +
- 'background-repeat: no-repeat;' +
- 'border: 1px solid #a9a9a9;' +
- 'width: 16px !important;' +
- 'height: 16px !important;' +
- '}' );
- },
- init: function( editor ) {
- var lang = editor.lang,
- order = 0,
- textfieldTypes = { email: 1, password: 1, search: 1, tel: 1, text: 1, url: 1 },
- allowedContent = {
- checkbox: 'input[type,name,checked,required]',
- radio: 'input[type,name,checked,required]',
- textfield: 'input[type,name,value,size,maxlength,required]',
- textarea: 'textarea[cols,rows,name,required]',
- select: 'select[name,size,multiple,required]; option[value,selected]',
- button: 'input[type,name,value]',
- form: 'form[action,name,id,enctype,target,method]',
- hiddenfield: 'input[type,name,value]',
- imagebutton: 'input[type,alt,src]{width,height,border,border-width,border-style,margin,float}'
- },
- requiredContent = {
- checkbox: 'input',
- radio: 'input',
- textfield: 'input',
- textarea: 'textarea',
- select: 'select',
- button: 'input',
- form: 'form',
- hiddenfield: 'input',
- imagebutton: 'input'
- };
- // All buttons use the same code to register. So, to avoid
- // duplications, let's use this tool function.
- var addButtonCommand = function( buttonName, commandName, dialogFile ) {
- var def = {
- allowedContent: allowedContent[ commandName ],
- requiredContent: requiredContent[ commandName ]
- };
- commandName == 'form' && ( def.context = 'form' );
- editor.addCommand( commandName, new CKEDITOR.dialogCommand( commandName, def ) );
- editor.ui.addButton && editor.ui.addButton( buttonName, {
- label: lang.common[ buttonName.charAt( 0 ).toLowerCase() + buttonName.slice( 1 ) ],
- command: commandName,
- toolbar: 'forms,' + ( order += 10 )
- } );
- CKEDITOR.dialog.add( commandName, dialogFile );
- };
- var dialogPath = this.path + 'dialogs/';
- !editor.blockless && addButtonCommand( 'Form', 'form', dialogPath + 'form.js' );
- addButtonCommand( 'Checkbox', 'checkbox', dialogPath + 'checkbox.js' );
- addButtonCommand( 'Radio', 'radio', dialogPath + 'radio.js' );
- addButtonCommand( 'TextField', 'textfield', dialogPath + 'textfield.js' );
- addButtonCommand( 'Textarea', 'textarea', dialogPath + 'textarea.js' );
- addButtonCommand( 'Select', 'select', dialogPath + 'select.js' );
- addButtonCommand( 'Button', 'button', dialogPath + 'button.js' );
- var imagePlugin = editor.plugins.image;
- // Since Image plugin is disabled when Image2 is to be loaded,
- // ImageButton also got to be off (#11222).
- if ( imagePlugin && !editor.plugins.image2 )
- addButtonCommand( 'ImageButton', 'imagebutton', CKEDITOR.plugins.getPath( 'image' ) + 'dialogs/image.js' );
- addButtonCommand( 'HiddenField', 'hiddenfield', dialogPath + 'hiddenfield.js' );
- // If the "menu" plugin is loaded, register the menu items.
- if ( editor.addMenuItems ) {
- var items = {
- checkbox: {
- label: lang.forms.checkboxAndRadio.checkboxTitle,
- command: 'checkbox',
- group: 'checkbox'
- },
- radio: {
- label: lang.forms.checkboxAndRadio.radioTitle,
- command: 'radio',
- group: 'radio'
- },
- textfield: {
- label: lang.forms.textfield.title,
- command: 'textfield',
- group: 'textfield'
- },
- hiddenfield: {
- label: lang.forms.hidden.title,
- command: 'hiddenfield',
- group: 'hiddenfield'
- },
- button: {
- label: lang.forms.button.title,
- command: 'button',
- group: 'button'
- },
- select: {
- label: lang.forms.select.title,
- command: 'select',
- group: 'select'
- },
- textarea: {
- label: lang.forms.textarea.title,
- command: 'textarea',
- group: 'textarea'
- }
- };
- if ( imagePlugin ) {
- items.imagebutton = {
- label: lang.image.titleButton,
- command: 'imagebutton',
- group: 'imagebutton'
- };
- }
- !editor.blockless && ( items.form = {
- label: lang.forms.form.menu,
- command: 'form',
- group: 'form'
- } );
- editor.addMenuItems( items );
- }
- // If the "contextmenu" plugin is loaded, register the listeners.
- if ( editor.contextMenu ) {
- !editor.blockless && editor.contextMenu.addListener( function( element, selection, path ) {
- var form = path.contains( 'form', 1 );
- if ( form && !form.isReadOnly() )
- return { form: CKEDITOR.TRISTATE_OFF };
- } );
- editor.contextMenu.addListener( function( element ) {
- if ( element && !element.isReadOnly() ) {
- var name = element.getName();
- if ( name == 'select' )
- return { select: CKEDITOR.TRISTATE_OFF };
- if ( name == 'textarea' )
- return { textarea: CKEDITOR.TRISTATE_OFF };
- if ( name == 'input' ) {
- var type = element.getAttribute( 'type' ) || 'text';
- switch ( type ) {
- case 'button':
- case 'submit':
- case 'reset':
- return { button: CKEDITOR.TRISTATE_OFF };
- case 'checkbox':
- return { checkbox: CKEDITOR.TRISTATE_OFF };
- case 'radio':
- return { radio: CKEDITOR.TRISTATE_OFF };
- case 'image':
- return imagePlugin ? { imagebutton: CKEDITOR.TRISTATE_OFF } : null;
- }
- if ( textfieldTypes[ type ] )
- return { textfield: CKEDITOR.TRISTATE_OFF };
- }
- if ( name == 'img' && element.data( 'cke-real-element-type' ) == 'hiddenfield' )
- return { hiddenfield: CKEDITOR.TRISTATE_OFF };
- }
- } );
- }
- editor.on( 'doubleclick', function( evt ) {
- var element = evt.data.element;
- if ( !editor.blockless && element.is( 'form' ) )
- evt.data.dialog = 'form';
- else if ( element.is( 'select' ) )
- evt.data.dialog = 'select';
- else if ( element.is( 'textarea' ) )
- evt.data.dialog = 'textarea';
- else if ( element.is( 'img' ) && element.data( 'cke-real-element-type' ) == 'hiddenfield' )
- evt.data.dialog = 'hiddenfield';
- else if ( element.is( 'input' ) ) {
- var type = element.getAttribute( 'type' ) || 'text';
- switch ( type ) {
- case 'button':
- case 'submit':
- case 'reset':
- evt.data.dialog = 'button';
- break;
- case 'checkbox':
- evt.data.dialog = 'checkbox';
- break;
- case 'radio':
- evt.data.dialog = 'radio';
- break;
- case 'image':
- evt.data.dialog = 'imagebutton';
- break;
- }
- if ( textfieldTypes[ type ] )
- evt.data.dialog = 'textfield';
- }
- } );
- },
- afterInit: function( editor ) {
- var dataProcessor = editor.dataProcessor,
- htmlFilter = dataProcessor && dataProcessor.htmlFilter,
- dataFilter = dataProcessor && dataProcessor.dataFilter;
- // Cleanup certain IE form elements default values.
- // Note: Inputs are marked with contenteditable=false flags, so filters for them
- // need to be applied to non-editable content as well.
- if ( CKEDITOR.env.ie ) {
- htmlFilter && htmlFilter.addRules( {
- elements: {
- input: function( input ) {
- var attrs = input.attributes,
- type = attrs.type;
- // Old IEs don't provide type for Text inputs #5522
- if ( !type )
- attrs.type = 'text';
- if ( type == 'checkbox' || type == 'radio' )
- attrs.value == 'on' && delete attrs.value;
- }
- }
- }, { applyToAll: true } );
- }
- if ( dataFilter ) {
- dataFilter.addRules( {
- elements: {
- input: function( element ) {
- if ( element.attributes.type == 'hidden' )
- return editor.createFakeParserElement( element, 'cke_hidden', 'hiddenfield' );
- }
- }
- }, { applyToAll: true } );
- }
- }
- } );
|