Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * Copyright Magento, Inc. All rights reserved. * See COPYING.txt for license ..
Decoded Output download
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Edit\Button;
use Magento\Catalog\Block\Adminhtml\Product\Edit\Button\CreateCategory;
class CreateCategoryTest extends GenericTest
{
public function testGetButtonData()
{
$this->assertEquals(
[
'label' => __('Create Category'),
'class' => 'save primary',
'data_attribute' => [
'mage-init' => ['button' => ['event' => 'save']],
'form-role' => 'save',
],
'sort_order' => 10,
],
$this->getModel(CreateCategory::class)->getButtonData()
);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Edit\Button;
use Magento\Catalog\Block\Adminhtml\Product\Edit\Button\CreateCategory;
class CreateCategoryTest extends GenericTest
{
public function testGetButtonData()
{
$this->assertEquals(
[
'label' => __('Create Category'),
'class' => 'save primary',
'data_attribute' => [
'mage-init' => ['button' => ['event' => 'save']],
'form-role' => 'save',
],
'sort_order' => 10,
],
$this->getModel(CreateCategory::class)->getButtonData()
);
}
}
Function Calls
None |
Stats
MD5 | dd747bd8aaa353d41b2d73f5d6a19594 |
Eval Count | 0 |
Decode Time | 97 ms |