Spamworldpro Mini Shell
Spamworldpro


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/cartforge.co/vendor/magento/module-sales/Block/Status/Grid/Column/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/cartforge.co/vendor/magento/module-sales/Block/Status/Grid/Column/Unassign.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Sales\Block\Status\Grid\Column;

use Magento\Framework\App\ObjectManager;
use \Magento\Backend\Block\Template\Context;
use Magento\Framework\Serialize\Serializer\Json;

/**
 * @api
 * @since 100.0.2
 */
class Unassign extends \Magento\Backend\Block\Widget\Grid\Column
{
    /**
     * @var Json
     */
    private $json;

    /**
     * @inheritDoc
     *
     * @param Json|null $json
     */
    public function __construct(
        Context $context,
        array $data = [],
        ?Json $json = null
    ) {
        parent::__construct($context, $data);
        $this->json = $json ?? ObjectManager::getInstance()->get(Json::class);
    }

    /**
     * Add decorated action to column
     *
     * @return array
     */
    public function getFrameCallback()
    {
        return [$this, 'decorateAction'];
    }

    /**
     * Decorate values to column
     *
     * @param string $value
     * @param \Magento\Sales\Model\Order\Status $row
     * @param \Magento\Backend\Block\Widget\Grid\Column $column
     * @param bool $isExport
     * @return string
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function decorateAction($value, $row, $column, $isExport)
    {
        $cell = '';
        $state = $row->getState();
        if (!empty($state)) {
            $url = $this->getUrl('*/*/unassign');
            $label = __('Unassign');
            $cell = '<a href="#" data-post="'
                .$this->escapeHtmlAttr(
                    $this->json->serialize([
                        'action' => $url,
                        'data' => ['status' => $row->getStatus(), 'state' => $row->getState()]
                    ])
                )
                .'">' . $label . '</a>';
        }
        return $cell;
    }
}

Spamworldpro Mini