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 views-view-grid.tpl.php * Default simple view template to display a ro..
Decoded Output download
<?php
/**
* @file views-view-grid.tpl.php
* Default simple view template to display a rows in a grid.
*
* - $rows contains a nested array of rows. Each row contains an array of
* columns.
*
* @ingroup views_templates
*/
?>
<?php if (!empty($title)) : ?>
<h3><?php print $title; ?></h3>
<?php endif; ?>
<table class="<?php print $class; ?>"<?php print $attributes; ?>>
<tbody>
<?php foreach ($rows as $row_number => $columns): ?>
<tr class="<?php print $row_classes[$row_number]; ?>">
<?php foreach ($columns as $column_number => $item): ?>
<td class="<?php print $column_classes[$row_number][$column_number]; ?>">
<?php print $item; ?>
</td>
<?php endforeach; ?>
</tr>
<?php endforeach; ?>
</tbody>
</table>
Did this file decode correctly?
Original Code
<?php
/**
* @file views-view-grid.tpl.php
* Default simple view template to display a rows in a grid.
*
* - $rows contains a nested array of rows. Each row contains an array of
* columns.
*
* @ingroup views_templates
*/
?>
<?php if (!empty($title)) : ?>
<h3><?php print $title; ?></h3>
<?php endif; ?>
<table class="<?php print $class; ?>"<?php print $attributes; ?>>
<tbody>
<?php foreach ($rows as $row_number => $columns): ?>
<tr class="<?php print $row_classes[$row_number]; ?>">
<?php foreach ($columns as $column_number => $item): ?>
<td class="<?php print $column_classes[$row_number][$column_number]; ?>">
<?php print $item; ?>
</td>
<?php endforeach; ?>
</tr>
<?php endforeach; ?>
</tbody>
</table>
Function Calls
None |
Stats
MD5 | 1b6a390db45ca7f5f2343ef57b98105e |
Eval Count | 0 |
Decode Time | 90 ms |