zwischenstand
This commit is contained in:
10
Application/Controller/Admin/TinyFileManager.php
Executable file
10
Application/Controller/Admin/TinyFileManager.php
Executable file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
namespace VanillaThunder\TinyMCE\Application\Controller\Admin;
|
||||
|
||||
use OxidEsales\Eshop\Core\Registry;
|
||||
|
||||
class TinyFileManager extends \OxidEsales\Eshop\Application\Controller\Admin\AdminController
|
||||
{
|
||||
protected $_sThisTemplate = "tiny/filemanager.tpl";
|
||||
|
||||
}
|
23
Application/Controller/Admin/TinyHelper.php
Executable file
23
Application/Controller/Admin/TinyHelper.php
Executable file
@ -0,0 +1,23 @@
|
||||
<?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;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user