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.
 */

/**
 * Adminhtml product edit price block
 */
namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Tab;

class Price extends \Magento\Backend\Block\Widget\Form\Generic
{
    /**
     * @return void
     */
    protected function _prepareForm()
    {
        $product = $this->_coreRegistry->registry('product');

        /** @var \Magento\Framework\Data\Form $form */
        $form = $this->_formFactory->create();
        $fieldset = $form->addFieldset('tiered_price', ['legend' => __('Tier Pricing')]);

        $fieldset->addField(
            'default_price',
            'label',
            [
                'label' => __('Default Price'),
                'title' => __('Default Price'),
                'name' => 'default_price',
                'bold' => true,
                'value' => $product->getPrice()
            ]
        );

        $fieldset->addField(
            'tier_price',
            'text',
            ['name' => 'tier_price', 'class' => 'requried-entry', 'value' => $product->getData('tier_price')]
        );

        $form->getElement(
            'tier_price'
        )->setRenderer(
            $this->getLayout()->createBlock(\Magento\Catalog\Block\Adminhtml\Product\Edit\Tab\Price\Tier::class)
        );

        $this->setForm($form);
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php
/**
 * Copyright  Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

/**
 * Adminhtml product edit price block
 */
namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Tab;

class Price extends \Magento\Backend\Block\Widget\Form\Generic
{
    /**
     * @return void
     */
    protected function _prepareForm()
    {
        $product = $this->_coreRegistry->registry('product');

        /** @var \Magento\Framework\Data\Form $form */
        $form = $this->_formFactory->create();
        $fieldset = $form->addFieldset('tiered_price', ['legend' => __('Tier Pricing')]);

        $fieldset->addField(
            'default_price',
            'label',
            [
                'label' => __('Default Price'),
                'title' => __('Default Price'),
                'name' => 'default_price',
                'bold' => true,
                'value' => $product->getPrice()
            ]
        );

        $fieldset->addField(
            'tier_price',
            'text',
            ['name' => 'tier_price', 'class' => 'requried-entry', 'value' => $product->getData('tier_price')]
        );

        $form->getElement(
            'tier_price'
        )->setRenderer(
            $this->getLayout()->createBlock(\Magento\Catalog\Block\Adminhtml\Product\Edit\Tab\Price\Tier::class)
        );

        $this->setForm($form);
    }
}

Function Calls

None

Variables

None

Stats

MD5 977a96590b9195f61966e1fd21a51c92
Eval Count 0
Decode Time 132 ms