Your IP : 216.73.216.240
<?php
namespace AcyMailing\Helpers;
use AcyMailing\Classes\MailClass;
use AcyMailing\Libraries\acymObject;
use Joomla\CMS\Editor\Editor as Editor;
class EditorHelper extends acymObject
{
var $width = '95%';
var $height = '600';
var $cols = 100;
var $rows = 30;
var $editor = '';
var $name = 'editor_content';
var $settings = 'editor_settings';
var $stylesheet = 'editor_stylesheet';
var $thumbnail = 'editor_thumbnail';
var $content = '';
var $editorContent = '';
var $editorConfig = [];
var $mailId = 0;
var $automation = false;
var $walkThrough = false;
var $emailsTest;
var $data = [];
var $defaultTemplate = '';
public function display()
{
if ($this->isDragAndDrop()) {
ob_start();
include acym_getPartial('editor', 'default_template');
$this->defaultTemplate = ob_get_clean();
acym_disableCmsEditor();
$currentEmail = acym_currentUserEmail();
$this->emailsTest = [$currentEmail => $currentEmail];
acym_addScript(false, ACYM_JS.'tinymce/tinymce.min.js?v='.filemtime(ACYM_MEDIA.'js'.DS.'tinymce/tinymce.min.js'));
$data = $this->data;
$mailId = empty($data['mail']->mail_id) ? (empty($data['mail']->id) ? 0 : $data['mail']->id) : $data['mail']->mail_id;
$data['tabHelper'] = new TabHelper();
$data['plugins'] = acym_trigger('dynamicText', [$mailId]);
usort(
$data['plugins'],
function ($a, $b) {
return strtolower($a->name) > strtolower($b->name) ? 1 : -1;
}
);
acym_setVar('mail_id', $mailId);
acym_setVar('mail_type', empty($data['mail']->type) ? '' : $data['mail']->type);
acym_setVar('automation', $this->automation ? 1 : 0);
include acym_getPartial('editor', 'editor_wysid');
} else {
if (acym_isLeftMenuNecessary()) echo '</div>';
echo '</div><div class="acym_no_foundation">';
$method = 'displayJoomla';
$this->$method();
if (acym_isLeftMenuNecessary()) echo '<div>';
}
}
public function isDragAndDrop()
{
return strpos($this->content, 'acym__wysid__template') !== false || $this->editor == 'acyEditor';
}
private function displayJoomla()
{
$this->editor = acym_getCMSConfig('editor', 'tinymce');
if (!class_exists('Joomla\CMS\Editor\Editor')) {
$this->myEditor = \JFactory::getEditor($this->editor);
} else {
$this->myEditor = Editor::getInstance($this->editor);
}
$this->myEditor->initialise();
$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]';
if (!empty($this->mailId)) {
$cssurl = acym_completeLink((acym_isAdmin() ? '' : 'front').'mails&task=loadCSS&id='.$this->mailId.'&time='.time());
$classMail = new MailClass();
$filepath = $classMail->createTemplateFile($this->mailId);
if ($this->editor == 'tinymce') {
$this->editorConfig['content_css_custom'] = $cssurl.'&local=http';
$this->editorConfig['content_css'] = '0';
$access = [];
for ($i = 1 ; $i < 20 ; $i++) {
$access[] = $i;
}
$this->editorConfig['configuration'] = (object)[
'toolbars' => (object)['joomlaBrokeItInAMinorRelease' => []],
'setoptions' => [
'joomlaBrokeItInAMinorRelease' => (object)[
'access' => $access,
'content_css' => '0',
'content_css_custom' => $cssurl.'&local=http',
],
],
];
} 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 = ACYM_MEDIA_FOLDER.'/templates/css/template_'.$this->mailId.'.css?time='.time();
$this->editorConfig['custom_css_url'] = $cssurl;
$this->editorConfig['custom_css_file'] = $fileurl;
$this->editorConfig['custom_css_path'] = $filepath;
acym_setVar('acycssfile', $fileurl);
}
}
if (empty($this->editorContent)) {
$this->content = acym_escape($this->content);
ob_start();
echo $this->myEditor->display(
$this->name,
$this->content,
$this->width,
$this->height,
$this->cols,
$this->rows,
['pagebreak', 'readmore'],
null,
'com_content',
null,
$this->editorConfig
);
$this->editorContent = ob_get_clean();
}
if (method_exists($this->myEditor, 'save')) {
acym_addScript(true, 'function acyOnSaveEditor(){'.$this->myEditor->save($this->name).'}');
}
echo $this->editorContent;
}
private function displayWordPress()
{
add_filter('mce_external_plugins', [$this, 'addPlugins']);
add_filter('mce_buttons', [$this, 'addButtons']);
add_filter('mce_buttons_2', [$this, 'addButtonsToolbar']);
$mailClass = new MailClass();
$mail = $mailClass->getOneById($this->mailId);
$stylesheet = empty($mail) ? '' : trim(preg_replace('/\s\s+/', ' ', $mailClass->buildCSS($mail->stylesheet)));
$stylesheet = str_replace('"', '\"', $stylesheet);
$options = [
'editor_css' => '<style type="text/css">
.alignleft{float:left;margin:0.5em 1em 0.5em 0;}
.aligncenter{display: block;margin-left: auto;margin-right: auto;}
.alignright{float: right;margin: 0.5em 0 0.5em 1em;}
</style>',
'editor_height' => $this->height,
'textarea_rows' => $this->rows,
"wpautop" => false,
'tinymce' => [
'content_css' => '',
'content_style' => '.alignleft{float:left;margin:0.5em 1em 0.5em 0;} .aligncenter{display: block;margin-left: auto;margin-right: auto;} .alignright{float: right;margin: 0.5em 0 0.5em 1em;}'.$stylesheet,
],
];
wp_editor($this->content, $this->name, $options);
}
private function getWYSIDSettings()
{
$ctrl = acym_getVar('string', 'ctrl');
if ($this->isResetCampaign() || !in_array($ctrl, ['mails', 'campaigns', 'frontmails', 'frontcampaigns'])) return '{}';
$id = acym_getVar('int', 'from', 0);
if ($this->settings != 'editor_settings' && empty($id)) return $this->settings;
if (empty($id)) {
$id = acym_getVar('int', 'id');
if (!empty($id) && $ctrl == 'campaigns') $id = acym_loadResult('SELECT mail_id FROM #__acym_campaign WHERE id = '.intval($id));
}
if (empty($id)) return '{}';
$query = 'SELECT settings FROM #__acym_mail WHERE id = '.intval($id);
$settings = acym_loadResult($query);
return empty($settings) ? '{}' : $settings;
}
private function getWYSIDStylesheet()
{
$ctrl = acym_getVar('string', 'ctrl');
if ($this->isResetCampaign() || !in_array($ctrl, ['mails', 'campaigns', 'frontmails', 'frontcampaigns'])) return '';
$id = acym_getVar('int', 'from', 0);
if ($this->stylesheet != 'editor_stylesheet' && !empty($id)) return $this->stylesheet;
$notification = acym_getVar('string', 'notification');
if (empty($id)) {
$id = acym_getVar('int', 'id');
if (!empty($id) && in_array($ctrl, ['campaigns', 'frontcampaigns'])) $id = acym_loadResult('SELECT mail_id FROM #__acym_campaign WHERE id = '.intval($id));
}
if (!empty($id)) {
if (in_array($ctrl, ['mails', 'campaigns', 'frontmails', 'frontcampaigns'])) {
$stylesheet = acym_loadResult('SELECT stylesheet FROM #__acym_mail WHERE id = '.intval($id));
}
return empty($stylesheet) ? '' : $stylesheet;
} elseif (!empty($notification)) {
$mailClass = new MailClass();
$stylesheet = acym_loadResult(
'SELECT stylesheet
FROM #__acym_mail
WHERE `type` = '.acym_escapeDB($mailClass::TYPE_NOTIFICATION).'
AND `name` = '.acym_escapeDB($notification)
);
return empty($stylesheet) ? '' : $stylesheet;
}
return null;
}
private function isResetCampaign()
{
$fromId = acym_getVar('int', 'from', 0);
return -1 == $fromId;
}
private function getWYSIDThumbnail()
{
if ($this->thumbnail != 'editor_thumbnail') return $this->thumbnail;
$id = acym_getVar('int', 'id');
if (empty($id)) return null;
$thumbnail = acym_loadResult('SELECT thumbnail FROM #__acym_mail WHERE id = '.intval($id));
return empty($thumbnail) ? '' : $thumbnail;
}
private function addButtonAtPosition(&$buttons, $newButton, $after)
{
$position = array_search($after, $buttons);
if ($position === false) {
array_push($buttons, 'separator', $newButton);
} else {
array_splice($buttons, $position + 1, 0, $newButton);
}
}
public function addPlugins($plugins)
{
$plugins['table'] = ACYM_JS.'tinymce/table.min.js';
return $plugins;
}
public function addButtons($buttons)
{
$position = array_search('wp_more', $buttons);
if ($position !== false) {
$buttons[$position] = '';
}
array_unshift($buttons, 'separator', 'fontsizeselect');
array_unshift($buttons, 'separator', 'fontselect');
array_push($buttons, 'separator', 'table');
$this->addButtonAtPosition($buttons, 'alignjustify', 'alignright');
$this->addButtonAtPosition($buttons, 'underline', 'italic');
$this->addButtonAtPosition($buttons, 'strikethrough', 'underline');
return $buttons;
}
public function addButtonsToolbar($buttons)
{
$position = array_search('strikethrough', $buttons);
if ($position !== false) {
$buttons[$position] = '';
}
$this->addButtonAtPosition($buttons, 'backcolor', 'forecolor');
return $buttons;
}
public function getSettingsStyle($settings)
{
if (empty($settings)) return '';
if (is_string($settings) && substr($settings, 0, 2) === '{"') {
$settings = json_decode($settings, true);
}
if (!is_array($settings)) return '';
$styles = '';
foreach ($settings as $element => $rules) {
$values = '';
foreach ($rules as $ruleName => $value) {
if ($ruleName == 'overridden') continue;
$values .= $ruleName.': '.$value.';';
}
$styles .= '#acym__wysid__template .acym__wysid__column__element__td .acym__wysid__tinymce--text '.$element.':not(.acym__wysid__content-no-settings-style){';
$styles .= $values;
$styles .= '}';
$styles .= '#acym__wysid__template .acym__wysid__column__element__td .acymailing_content '.$element.':not(.acym__wysid__content-no-settings-style){';
$styles .= $values;
$styles .= '}';
}
return $styles;
}
}