Uname: Linux dedi-15171674.espacofacial.com.br 5.14.0-687.36.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 7 05:40:49 EDT 2026 x86_64
Software: Apache
PHP version: 8.2.33 [ PHP INFO ] PHP os: Linux
Server Ip: 104.21.5.151
Your Ip: 216.73.216.54
User: espa7358 (1004) | Group: espa7358 (1003)
Safe Mode: OFF
Disable Function:
NONE

name : plugin.js
/* jce - 2.9.55 | 2023-11-28 | https://www.joomlacontenteditor.net | Copyright (C) 2006 - 2023 Ryan Demmer. All rights reserved | GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html */
tinymce.create("tinymce.plugins.TextCase", {
    init: function(ed, url) {
        var self = this;
        this.url = url, (this.editor = ed).addCommand("mceUpperCase", function() {
            self._upperCase();
        }), ed.addCommand("mceLowerCase", function() {
            self._lowerCase();
        }), ed.addCommand("mceTitleCase", function() {
            self._titleCase();
        }), ed.addCommand("mceSentenceCase", function() {
            self._sentenceCase();
        }), ed.onNodeChange.add(function(ed, cm, n, co) {
            cm.setDisabled("textcase", co);
        });
    },
    createControl: function(n, cm) {
        var ed = this.editor;
        return "textcase" === n ? ((n = cm.createSplitButton("textcase", {
            title: "textcase.uppercase",
            icon: "uppercase",
            onclick: function() {
                ed.execCommand("mceUpperCase");
            }
        })).onRenderMenu.add(function(c, m) {
            m.add({
                title: "textcase.uppercase",
                icon: "uppercase",
                onclick: function() {
                    ed.execCommand("mceUpperCase");
                }
            }), m.add({
                title: "textcase.lowercase",
                icon: "lowercase",
                onclick: function() {
                    ed.execCommand("mceLowerCase");
                }
            }), m.add({
                title: "textcase.sentencecase",
                icon: "sentencecase",
                onclick: function() {
                    ed.execCommand("mceSentenceCase");
                }
            }), m.add({
                title: "textcase.titlecase",
                icon: "titlecase",
                onclick: function() {
                    ed.execCommand("mceTitleCase");
                }
            });
        }), n) : null;
    },
    _sentenceCase: function() {
        var s = this.editor.selection, text = (text = s.getContent()).toLowerCase().replace(/([\u0000-\u1FFF])/, function(a, b) {
            return b.toUpperCase();
        }).replace(/(\.\s?)([\u0000-\u1FFF])/gi, function(a, b, c) {
            return b + c.toUpperCase();
        });
        s.setContent(text);
    },
    _titleCase: function() {
        var s = this.editor.selection, text = s.getContent();
        text = (text = text.toLowerCase()).replace(/(?:^|\s)[\u0000-\u1FFF]/g, function(match) {
            return match.toUpperCase();
        }), s.setContent(text);
    },
    _lowerCase: function() {
        var s = this.editor.selection, text = s.getContent();
        s.setContent(text.toLowerCase());
    },
    _upperCase: function() {
        var s = this.editor.selection, text = s.getContent();
        s.setContent(text.toUpperCase());
    }
}), tinymce.PluginManager.add("textcase", tinymce.plugins.TextCase);
© 2026 UnknownSec