uawdijnntqw1x1x1
IP : 216.73.216.219
Hostname : webm015.cluster127.gra.hosting.ovh.net
Kernel : Linux webm015.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
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
pteabiscqq
/
www
/
.
/
administrator
/
components
/
com_acymailing
/
compat
/
.
/
joomla.editor.php
/
/
<?php /** * @package AcyMailing for Joomla! * @version 5.10.2 * @author acyba.com * @copyright (C) 2009-2018 ACYBA S.A.R.L. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ defined('_JEXEC') or die('Restricted access'); ?><?php use Joomla\CMS\Editor\Editor AS Editor; class acyeditorHelper{ var $width = '95%'; var $height = '600'; var $cols = 100; var $rows = 30; var $editor = null; var $name = ''; var $content = ''; var $editorConfig = array(); var $editorContent = ''; function __construct(){ $config = acymailing_config(); $this->editor = $config->get('editor', null); if(empty($this->editor)) $this->editor = null; if(!class_exists('Joomla\CMS\Editor\Editor')){ $this->myEditor = JFactory::getEditor($this->editor); }else{ if(empty($this->editor)){ $user = JFactory::getUser(); $this->editor = $user->getParam('editor', acymailing_getCMSConfig('editor')); } $this->myEditor = Editor::getInstance($this->editor); } $this->myEditor->initialise(); if(ACYMAILING_J16 && $this->editor == 'tinymce'){ $this->editorConfig['extended_elements'] = 'table[background|cellspacing|cellpadding|width|align|bgcolor|border|style|class|id],tr[background|width|bgcolor|style|class|id|valign],td[background|width|align|bgcolor|valign|colspan|rowspan|height|style|class|id|nowrap]'; } } function setTemplate($id){ if(empty($id)) return; $cssurl = acymailing_completeLink((acymailing_isAdmin() ? '' : 'front').'template&task=load&tempid='.$id.'&time='.time()); $classTemplate = acymailing_get('class.template'); $filepath = $classTemplate->createTemplateFile($id); if($this->editor == 'tinymce'){ $this->editorConfig['content_css_custom'] = $cssurl.'&local=http'; $this->editorConfig['content_css'] = '0'; }elseif($this->editor == 'jckeditor' || $this->editor == 'fckeditor'){ $this->editorConfig['content_css_custom'] = $filepath; $this->editorConfig['content_css'] = '0'; $this->editorConfig['editor_css'] = '0'; }else{ $fileurl = ACYMAILING_MEDIA_FOLDER.'/templates/css/template_'.$id.'.css?time='.time(); $this->editorConfig['custom_css_url'] = $cssurl; $this->editorConfig['custom_css_file'] = $fileurl; $this->editorConfig['custom_css_path'] = $filepath; acymailing_setVar('acycssfile', $fileurl); } } function prepareDisplay(){ $this->content = htmlspecialchars($this->content, ENT_COMPAT, 'UTF-8'); ob_start(); if(!ACYMAILING_J16){ echo $this->myEditor->display($this->name, $this->content, $this->width, $this->height, $this->cols, $this->rows, array('pagebreak', 'readmore'), $this->editorConfig); }else{ echo $this->myEditor->display($this->name, $this->content, $this->width, $this->height, $this->cols, $this->rows, array('pagebreak', 'readmore'), null, 'com_content', null, $this->editorConfig); } $this->editorContent = ob_get_clean(); } function setDescription(){ $this->width = 700; $this->height = 200; $this->cols = 80; $this->rows = 10; } function setContent($var){ if(method_exists($this->myEditor, 'setContent')){ $function = "try{ Joomla.editors.instances['".$this->name."'].setValue(".$var."); }catch(err){alert('Error using the setContent function of the wysiwyg editor')} "; $function = "try{".$this->myEditor->setContent($this->name, $var)." }catch(err){".$function."}"; }else{ $function = "alert('There is no setContent method defined for this editor');"; } if(!empty($this->editor)){ if($this->editor == 'jce'){ return " try{JContentEditor.setContent('".$this->name."', $var ); }catch(err){try{WFEditor.setContent('".$this->name."', $var )}catch(err){".$function."} }"; } if($this->editor == 'fckeditor'){ return " try{FCKeditorAPI.GetInstance('".$this->name."').SetHTML( $var ); }catch(err){".$function."} "; } if($this->editor == 'jckeditor'){ return " try{oEditor.setData(".$var.");}catch(err){(!oEditor) ? CKEDITOR.instances.".$this->name.".setData($var) : oEditor.insertHtml = ".$var.'}'; } if($this->editor == 'ckeditor'){ return " try{CKEDITOR.instances.".$this->name.".setData( $var ); }catch(err){".$function."} "; } if($this->editor == 'artofeditor'){ return " try{CKEDITOR.instances.".$this->name.".setData( $var ); }catch(err){".$function."} "; } if($this->editor == 'tinymce'){ return ' try{ Joomla.editors.instances["'.$this->name.'"].setValue('.$var.'); }catch(err){'.$function.'} '; } } return $function; } function setEditorStylesheet($tempid){ $cssurl = acymailing_completeLink((acymailing_isAdmin() ? '' : 'front').'template&task=load&time='.time().'&tempid='); $function = 'if('.$tempid.' !== 0){ try{ setEditorStylesheet(\''.$this->name.'\',\''.$cssurl.'\'+'.$tempid.',\''.ACYMAILING_MEDIA_FOLDER.'/templates/css/template_\'+'.$tempid.'+\'.css\'); }catch(err){ var iframe = document.getElementById("'.$this->name.'_ifr"); if(typeof iframe != undefined && iframe){ var css = iframe.contentDocument.querySelector(\'link[href*="'.ACYMAILING_MEDIA_FOLDER.'/templates/css/template_"]\'); if(typeof css != undefined && css){ css.href = css.href.replace(/template_\d{1,10}.css/, "template_"+'.$tempid.'+".css"); }else{ var css = iframe.contentDocument.querySelector(\'link[href*="com_acymailing&ctrl=template&task=load&tempid="]\'); if(typeof css != undefined && css){ css.href = css.href.replace(/&tempid=\d{1,10}&time/, "&tempid="+'.$tempid.'+"&time"); } } } } }'; return $function; } function getContent(){ return $this->myEditor->getContent($this->name); } function display(){ if(empty($this->editorContent)) $this->prepareDisplay(); return $this->editorContent; } function jsCode(){ return method_exists($this->myEditor, 'save') ? $this->myEditor->save($this->name) : ''; } function jsMethods(){ return ''; } }//endclass
/home/pteabiscqq/www/./administrator/components/com_acymailing/compat/./joomla.editor.php