1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Theme\Block\Adminhtml\Wysiwyg\Files\Content;
- /**
- * Files uploader block
- *
- * @api
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
- * @since 100.0.2
- */
- class Uploader extends \Magento\Backend\Block\Media\Uploader
- {
- /**
- * Path to uploader template
- *
- * @var string
- */
- protected $_template = 'Magento_Theme::browser/content/uploader.phtml';
- /**
- * @var \Magento\Theme\Helper\Storage
- */
- protected $_storageHelper;
- /**
- * @param \Magento\Backend\Block\Template\Context $context
- * @param \Magento\Framework\File\Size $fileSize
- * @param \Magento\Theme\Helper\Storage $storageHelper
- * @param array $data
- */
- public function __construct(
- \Magento\Backend\Block\Template\Context $context,
- \Magento\Framework\File\Size $fileSize,
- \Magento\Theme\Helper\Storage $storageHelper,
- array $data = []
- ) {
- $this->_storageHelper = $storageHelper;
- parent::__construct($context, $fileSize, $data);
- }
- /**
- * Prepare layout
- *
- * @return \Magento\Backend\Block\Media\Uploader
- */
- protected function _prepareLayout()
- {
- $this->getConfig()->setUrl($this->getUrl('adminhtml/*/upload', $this->_storageHelper->getRequestParams()));
- return parent::_prepareLayout();
- }
- /**
- * Return storage helper
- *
- * @return \Magento\Theme\Helper\Storage
- */
- public function getHelperStorage()
- {
- return $this->_storageHelper;
- }
- }
|