| Server IP : 54.36.91.62 / Your IP : 216.73.216.208 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/aix/media/com_jce/editor/js/ |
Upload File : |
(function($, Wf) {
$.Plugin = Wf;
$.String = Wf.String;
$.Cookie = Wf.Cookie;
$.URL = Wf.URL;
$.JSON = Wf.JSON;
$.Dialog = Wf.Modal;
})(jQuery, Wf);
var WFMediaPlayer = WFExtensions.add('MediaPlayer', {
/**
* Parameter Object
*/
params: {
extensions: 'flv,f4v',
dimensions: {},
path: ''
},
type: 'flash',
init: function(o) {
tinymce.extend(this, o);
// return the MediaPlayer object
return this;
},
setup: function() {},
getTitle: function() {
return this.title || this.name;
},
getType: function() {
return this.type;
},
/**
* Check whether a media type is supported
*/
isSupported: function() {
return false;
},
/**
* Return a player parameter value
* @param {String} Parameter
*/
getParam: function(param) {
return this.params[param] || '';
},
/**
* Set Player Parameters
* @param {Object} o Parameter Object
*/
setParams: function(o) {
tinymce.extend(this.params, o);
},
/**
* Return the player path
*/
getPath: function() {
return this.getParam('path');
},
onSelectFile: function(file) {},
onInsert: function() {},
onChangeType: function() {}
});