Модули, расширения и плагины Magento 2

Привет!
Mirasvit Feed как сделать NULL?
Нужно удалить файл лицензии в Core/view. а в app/code/Mirasvit/Core/Model/License.php установить в двух местах
/**
* @param string $className
*
* @Return bool|string
*/
public function load($className = '')
{
return true;

$module = $this->getModuleByClass($className);


/**
* License status
*
* @param string $className
*
* @Return true|string
*/
public function getStatus($className = '')
{

return true;

if ($this->load($className) === true) {
return true;
}

if (strpos($this->getDomain(), 'mirasvit.com') !== false || strpos($this->getDomain(), 'mirasvit.dev') !== false) {
return true;
}
 
Назад
Сверху