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 /** * @file * Template for a 3 column panel layout. * * This template provides a..
Decoded Output download
<?php
/**
* @file
* Template for a 3 column panel layout.
*
* This template provides a three column panel display layout, with
* each column roughly equal in width.
*
* Variables:
* - $id: An optional CSS id to use for the layout.
* - $content: An array of content, each item in the array is keyed to one
* panel of the layout. This layout supports the following sections:
* - $content['left']: Content in the left column.
* - $content['middle']: Content in the middle column.
* - $content['right']: Content in the right column.
*/
?>
<div class="panel-display panel-3col-33 clear-block" <?php if (!empty($css_id)) { print "id=\"$css_id\""; } ?>>
<div class="panel-panel panel-col-first">
<div class="inside"><?php print $content['left']; ?></div>
</div>
<div class="panel-panel panel-col">
<div class="inside"><?php print $content['middle']; ?></div>
</div>
<div class="panel-panel panel-col-last">
<div class="inside"><?php print $content['right']; ?></div>
</div>
</div>
Did this file decode correctly?
Original Code
<?php
/**
* @file
* Template for a 3 column panel layout.
*
* This template provides a three column panel display layout, with
* each column roughly equal in width.
*
* Variables:
* - $id: An optional CSS id to use for the layout.
* - $content: An array of content, each item in the array is keyed to one
* panel of the layout. This layout supports the following sections:
* - $content['left']: Content in the left column.
* - $content['middle']: Content in the middle column.
* - $content['right']: Content in the right column.
*/
?>
<div class="panel-display panel-3col-33 clear-block" <?php if (!empty($css_id)) { print "id=\"$css_id\""; } ?>>
<div class="panel-panel panel-col-first">
<div class="inside"><?php print $content['left']; ?></div>
</div>
<div class="panel-panel panel-col">
<div class="inside"><?php print $content['middle']; ?></div>
</div>
<div class="panel-panel panel-col-last">
<div class="inside"><?php print $content['right']; ?></div>
</div>
</div>
Function Calls
None |
Stats
MD5 | 50e50fa24801f1c5982c3994fcc7bdb5 |
Eval Count | 0 |
Decode Time | 78 ms |