![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-cms/Block/Adminhtml/Wysiwyg/Images/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Cms\Block\Adminhtml\Wysiwyg\Images; /** * Wysiwyg Images content block * * @api * @since 100.0.2 */ class Content extends \Magento\Backend\Block\Widget\Container { /** * @var \Magento\Framework\Json\EncoderInterface */ protected $_jsonEncoder; /** * @param \Magento\Backend\Block\Widget\Context $context * @param \Magento\Framework\Json\EncoderInterface $jsonEncoder * @param array $data */ public function __construct( \Magento\Backend\Block\Widget\Context $context, \Magento\Framework\Json\EncoderInterface $jsonEncoder, array $data = [] ) { $this->_jsonEncoder = $jsonEncoder; parent::__construct($context, $data); } /** * Block construction * * @return void */ protected function _construct() { parent::_construct(); $this->_headerText = __('Media Storage'); $this->buttonList->remove('back'); $this->buttonList->remove('edit'); $this->buttonList->add( 'cancel', [ 'class' => 'cancel action-quaternary', 'label' => __('Cancel'), 'type' => 'button', 'onclick' => 'MediabrowserUtility.closeDialog();' ], 0, 0, 'header' ); $this->buttonList->add( 'delete_folder', [ 'class' => 'delete no-display action-quaternary', 'label' => __('Delete Folder'), 'type' => 'button' ], 0, 0, 'header' ); $this->buttonList->add( 'delete_files', [ 'class' => 'delete no-display action-quaternary', 'label' => __('Delete Selected'), 'type' => 'button' ], 0, 0, 'header' ); $this->buttonList->add( 'new_folder', [ 'class' => 'save new_folder', 'label' => __('Create Folder'), 'type' => 'button' ], 0, 0, 'header' ); $this->buttonList->add( 'insert_files', [ 'class' => 'save no-display action-primary', 'label' => __('Add Selected'), 'type' => 'button' ], 0, 100, 'header' ); } /** * Files action source URL * * @return string */ public function getContentsUrl() { return $this->getUrl('cms/*/contents', ['type' => $this->getRequest()->getParam('type')]); } /** * Javascript setup object for filebrowser instance * * @return string */ public function getFilebrowserSetupObject() { $setupObject = new \Magento\Framework\DataObject(); $setupObject->setData( [ 'newFolderPrompt' => __('New Folder Name:'), 'deleteFolderConfirmationMessage' => __('Are you sure you want to delete this folder?'), 'deleteFileConfirmationMessage' => __('Are you sure you want to delete this file?'), 'targetElementId' => $this->getTargetElementId(), 'contentsUrl' => $this->getContentsUrl(), 'onInsertUrl' => $this->getOnInsertUrl(), 'newFolderUrl' => $this->getNewfolderUrl(), 'deleteFolderUrl' => $this->getDeletefolderUrl(), 'deleteFilesUrl' => $this->getDeleteFilesUrl(), 'headerText' => $this->getHeaderText(), 'showBreadcrumbs' => true, ] ); return $this->_jsonEncoder->encode($setupObject); } /** * New directory action target URL * * @return string */ public function getNewfolderUrl() { return $this->getUrl('cms/*/newFolder'); } /** * Delete directory action target URL * * @return string */ protected function getDeletefolderUrl() { return $this->getUrl('cms/*/deleteFolder'); } /** * Description goes here... * * @return string */ public function getDeleteFilesUrl() { return $this->getUrl('cms/*/deleteFiles'); } /** * New directory action target URL * * @return string */ public function getOnInsertUrl() { return $this->getUrl('cms/*/onInsert'); } /** * Target element ID getter * * @return string */ public function getTargetElementId() { return $this->getRequest()->getParam('target_element_id'); } }