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 use Cake\Routing\Router; $this->Html->script('vendors/jquery.min.js', ['block' => '..

Decoded Output download

<?php
use Cake\Routing\Router;

$this->Html->script('vendors/jquery.min.js', ['block' => 'scriptBottom']);
$this->Html->script('web_installer/key_chooser', ['block' => 'scriptBottom']);
?>
<?= $this->element('header', ['title' => __('Passbolt Pro activation.')]) ?>
<div class="panel main ">
    <!-- wizard steps -->
    <div class="panel left">
        <?= $this->element('navigation', ['selectedSection' => 'subscription_key']) ?>
    </div>
    <!-- main -->
    <?= $this->Form->create($formExecuteResult); ?>
    <div class="panel middle">
        <div class="grid grid-responsive-12">
            <div class="row">
                <div class="col7">
                        <div class="row">
                            <div class="col12">
                                <h2><?= __('Copy paste your Passbolt Pro subscription key here'); ?></h2>
                                <?= $this->Flash->render() ?>
                                <div class="input textarea gpgkey">
                                    <?= $this->Form->control('subscription_key', ['type' => 'textarea', 'class' => ['key-content']]); ?>
                                </div>
                                <div class="input file">
                                    <a role="button" class="button" id="key-chooser"><?= __('Browse'); ?></a>
                                    <span class="help-text"><?= __('Or select a file from your computer'); ?></span>
                                </div>
                            </div>
                        </div>
                </div>
                <div class="col5 last">
                    <?= $this->element('sidebar/subscription_key_explanations') ?>
                </div>
            </div>
            <div class="row last">
                <div class="input-wrapper">
                    <a href="<?= Router::url($stepInfo['previous'], true); ?>" class="button cancel medium"><?= __('Cancel'); ?></a>
                    <input type="submit" class="button primary next medium disabled" disabled="disabled" value="<?= __('Next'); ?>">
                </div>
            </div>
        </div>
    </div>
    <?= $this->Form->end(); ?>
</div>

Did this file decode correctly?

Original Code

<?php
use Cake\Routing\Router;

$this->Html->script('vendors/jquery.min.js', ['block' => 'scriptBottom']);
$this->Html->script('web_installer/key_chooser', ['block' => 'scriptBottom']);
?>
<?= $this->element('header', ['title' => __('Passbolt Pro activation.')]) ?>
<div class="panel main ">
    <!-- wizard steps -->
    <div class="panel left">
        <?= $this->element('navigation', ['selectedSection' => 'subscription_key']) ?>
    </div>
    <!-- main -->
    <?= $this->Form->create($formExecuteResult); ?>
    <div class="panel middle">
        <div class="grid grid-responsive-12">
            <div class="row">
                <div class="col7">
                        <div class="row">
                            <div class="col12">
                                <h2><?= __('Copy paste your Passbolt Pro subscription key here'); ?></h2>
                                <?= $this->Flash->render() ?>
                                <div class="input textarea gpgkey">
                                    <?= $this->Form->control('subscription_key', ['type' => 'textarea', 'class' => ['key-content']]); ?>
                                </div>
                                <div class="input file">
                                    <a role="button" class="button" id="key-chooser"><?= __('Browse'); ?></a>
                                    <span class="help-text"><?= __('Or select a file from your computer'); ?></span>
                                </div>
                            </div>
                        </div>
                </div>
                <div class="col5 last">
                    <?= $this->element('sidebar/subscription_key_explanations') ?>
                </div>
            </div>
            <div class="row last">
                <div class="input-wrapper">
                    <a href="<?= Router::url($stepInfo['previous'], true); ?>" class="button cancel medium"><?= __('Cancel'); ?></a>
                    <input type="submit" class="button primary next medium disabled" disabled="disabled" value="<?= __('Next'); ?>">
                </div>
            </div>
        </div>
    </div>
    <?= $this->Form->end(); ?>
</div>

Function Calls

None

Variables

None

Stats

MD5 f9170a45a527b409aa8d585a9954f37c
Eval Count 0
Decode Time 94 ms