1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Widget\Controller\Adminhtml\Widget;
use Magento\Framework\App\Action\HttpGetActionInterface;
use Magento\Framework\App\Action\HttpPostActionInterface as HttpPostActionInterface;
use Magento\Framework\App\ObjectManager;
class LoadOptions extends \Magento\Backend\App\Action implements HttpGetActionInterface, HttpPostActionInterface
{
/**
* Authorization level of a basic admin session
*/
const ADMIN_RESOURCE = 'Magento_Widget::widget_instance';
/**
* @var \Magento\Widget\Helper\Conditions
*/
private $conditionsHelper;
/**
* Ajax responder for loading plugin options form
*
* @return void
*/
public function execute()
{
try {
$this->_view->loadLayout();
if ($paramsJson = $this->getRequest()->getParam('widget')) {
$request = $this->_objectManager->get(\Magento\Framework\Json\Helper\Data::class)
->jsonDecode($paramsJson);
if (is_array($request)) {
$optionsBlock = $this->_view->getLayout()->getBlock('wysiwyg_widget.options');
if (isset($request['widget_type'])) {
$optionsBlock->setWidgetType($request['widget_type']);
}
if (isset($request['values'])) {
$request['values'] = array_map('htmlspecialchars_decode', $request['values']);
if (isset($request['values']['conditions_encoded'])) {
$request['values']['conditions'] =
$this->getConditionsHelper()->decode($request['values']['conditions_encoded']);
}
$optionsBlock->setWidgetValues($request['values']);
}
}
$this->_view->renderLayout();
}
} catch (\Magento\Framework\Exception\LocalizedException $e) {
$result = ['error' => true, 'message' => $e->getMessage()];
$this->getResponse()->representJson(
$this->_objectManager->get(\Magento\Framework\Json\Helper\Data::class)->jsonEncode($result)
);
}
}
/**
* @return \Magento\Widget\Helper\Conditions
* @deprecated 101.0.0
*/
private function getConditionsHelper()
{
if (!$this->conditionsHelper) {
$this->conditionsHelper = ObjectManager::getInstance()->get(\Magento\Widget\Helper\Conditions::class);
}
return $this->conditionsHelper;
}
}