12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Backend\Controller\Adminhtml\Ajax;
- use Magento\Backend\App\Action;
- class Translate extends \Magento\Backend\App\Action
- {
- /**
- * @var \Magento\Framework\Translate\Inline\ParserInterface
- */
- protected $inlineParser;
- /**
- * @var \Magento\Framework\Controller\Result\JsonFactory
- */
- protected $resultJsonFactory;
- /**
- * Authorization level of a basic admin session
- */
- const ADMIN_RESOURCE = 'Magento_Backend::content_translation';
- /**
- * @param Action\Context $context
- * @param \Magento\Framework\Translate\Inline\ParserInterface $inlineParser
- * @param \Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory
- */
- public function __construct(
- Action\Context $context,
- \Magento\Framework\Translate\Inline\ParserInterface $inlineParser,
- \Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory
- ) {
- parent::__construct($context);
- $this->resultJsonFactory = $resultJsonFactory;
- $this->inlineParser = $inlineParser;
- }
- /**
- * Ajax action for inline translation
- *
- * @return \Magento\Framework\Controller\Result\Json
- */
- public function execute()
- {
- $translate = (array)$this->getRequest()->getPost('translate');
- /** @var \Magento\Framework\Controller\Result\Json $resultJson */
- $resultJson = $this->resultJsonFactory->create();
- try {
- $this->inlineParser->processAjaxPost($translate);
- $response = ['success' => 'true'];
- } catch (\Exception $e) {
- $response = ['error' => 'true', 'message' => $e->getMessage()];
- }
- $this->_actionFlag->set('', self::FLAG_NO_POST_DISPATCH, true);
- return $resultJson->setData($response);
- }
- }
|