tinymce-editor/Application/Controller/Admin/TinyHelper.php

24 lines
624 B
PHP
Executable File

<?php
namespace VanillaThunder\TinyMCE\Application\Controller\Admin;
class TinyHelper extends \OxidEsales\Eshop\Application\Controller\Admin\AdminController
{
protected $_sThisTemplate = "tiny/helper.tpl";
protected $_errors;
protected $_content;
public function render()
{
$oOutput = oxRegistry::get("oxOutput");
$oOutput->setCharset($this->getCharSet());
$oOutput->setOutputFormat(oxOutput::OUTPUT_FORMAT_JSON);
$oOutput->sendHeaders();
$oOutput->output('errors', $this->_errors);
$oOutput->output('content', $this->_content);
exit;
}
}