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/old/vendor/wyomind/framework/Block/Adminhtml/License/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/wyomind/framework/Block/Adminhtml/License/Manager.php
<?php


/**
 * Copyright © 2020 Wyomind. All rights reserved.
 * See LICENSE.txt for license details.
 */

namespace Wyomind\Framework\Block\Adminhtml\License;

/**
 *
 */
class Manager extends \Magento\Backend\Block\Template
{
    /**
     * @var \Wyomind\Framework\Helper\Module
     */
    protected $module;
    /**
     * @var \Magento\Framework\App\RequestInterface
     */
    protected $request;

    /**
     * Manager constructor.
     * @param \Magento\Backend\Block\Template\Context $context
     * @param \Wyomind\Framework\Helper\Module $module
     * @param \Magento\Framework\App\RequestInterface $request
     * @param array $data
     */
    public function __construct(
        \Magento\Backend\Block\Template\Context $context,
        \Wyomind\Framework\Helper\Module $module,
        array $data = []
    ) {
    
        $this->module = $module;
        $this->request = $context->getRequest();
        parent::__construct($context, $data);
    }

    /**
     * @return array
     */
    public function getModule()
    {
        $modules = $this->module->getValues();
        $data = [];

        foreach ($modules as $module) {
            if ($this->request->getParam("module") == strtolower($module["namespace"])) {
                return [

                    "activation_key" => $this->module->getStoreConfigUncrypted($module["config"] . "/license/activation_key"),
                    "name" => $module["label"],
                    "status" => $this->module->checkActivation($module, true)
                ];
            }
        }


        return $data;
    }
}

Spamworldpro Mini