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 // $Id$ function sandium_breadcrumb($breadcrumb) { if (!empty($breadcrumb)) { ..
Decoded Output download
<?php
// $Id$
function sandium_breadcrumb($breadcrumb) {
if (!empty($breadcrumb)) {
return '<div class="breadcrumb">'. implode(' ', $breadcrumb) .'</div>';
}
}
function sandium_preprocess_page(&$vars) {
$settings = theme_get_settings('sandium');
}
function sandium_preprocess_comment_wrapper(&$vars) {
if ($vars['content'] && $vars['node']->type != 'forum') {
$vars['content'] = '<h2 class="comments">'. t('Comments') .'</h2>'. $vars['content'];
}
}
function sandium_comment_submitted($comment) {
return t('!datetime !username',
array(
'!username' => theme('username', $comment),
'!datetime' => format_date($comment->timestamp)
));
}
function sandium_node_submitted($node) {
return t('!datetime !username',
array(
'!username' => theme('username', $node),
'!datetime' => format_date($node->created),
));
}
?>
Did this file decode correctly?
Original Code
<?php
// $Id$
function sandium_breadcrumb($breadcrumb) {
if (!empty($breadcrumb)) {
return '<div class="breadcrumb">'. implode(' ', $breadcrumb) .'</div>';
}
}
function sandium_preprocess_page(&$vars) {
$settings = theme_get_settings('sandium');
}
function sandium_preprocess_comment_wrapper(&$vars) {
if ($vars['content'] && $vars['node']->type != 'forum') {
$vars['content'] = '<h2 class="comments">'. t('Comments') .'</h2>'. $vars['content'];
}
}
function sandium_comment_submitted($comment) {
return t('!datetime !username',
array(
'!username' => theme('username', $comment),
'!datetime' => format_date($comment->timestamp)
));
}
function sandium_node_submitted($node) {
return t('!datetime !username',
array(
'!username' => theme('username', $node),
'!datetime' => format_date($node->created),
));
}
Function Calls
None |
Stats
MD5 | 237c009282b5e51e9c4eff7560d6cd00 |
Eval Count | 0 |
Decode Time | 76 ms |