📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv3.demodesign.com.tr
/
yonetim
/
ckeditor
/
core
/
htmlparser
📝
cdata.js
← Geri Dön
/** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ 'use strict'; ( function() { /** * A lightweight representation of HTML CDATA. * * @class * @extends CKEDITOR.htmlParser.node * @constructor Creates a cdata class instance. * @param {String} value The CDATA section value. */ CKEDITOR.htmlParser.cdata = function( value ) { /** * The CDATA value. * * @property {String} */ this.value = value; }; CKEDITOR.htmlParser.cdata.prototype = CKEDITOR.tools.extend( new CKEDITOR.htmlParser.node(), { /** * CDATA has the same type as {@link CKEDITOR.htmlParser.text} This is * a constant value set to {@link CKEDITOR#NODE_TEXT}. * * @readonly * @property {Number} [=CKEDITOR.NODE_TEXT] */ type: CKEDITOR.NODE_TEXT, filter: function() {}, /** * Writes the CDATA with no special manipulations. * * @param {CKEDITOR.htmlParser.basicWriter} writer The writer to which write the HTML. */ writeHtml: function( writer ) { writer.write( this.value ); } } ); } )();
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula