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 /** * @package Joomla.Site * @subpackage Templates.protostar * * @copy..

Decoded Output download

<?php 
/** 
 * @package     Joomla.Site 
 * @subpackage  Templates.protostar 
 * 
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. 
 * @license     GNU General Public License version 2 or later; see LICENSE.txt 
 */ 
 
defined('_JEXEC') or die; 
 
$app             = JFactory::getApplication(); 
$doc             = JFactory::getDocument(); 
$this->language  = $doc->language; 
$this->direction = $doc->direction; 
 
// Add JavaScript Frameworks 
JHtml::_('bootstrap.framework'); 
 
// Add Stylesheets 
$doc->addStyleSheet('templates/' . $this->template . '/css/template.css'); 
 
// Load optional rtl Bootstrap css and Bootstrap bugfixes 
JHtmlBootstrap::loadCss($includeMaincss = false, $this->direction); 
 
?> 
<!DOCTYPE html> 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> 
<head> 
<jdoc:include type="head" /> 
<!--[if lt IE 9]> 
	<script src="<?php echo $this->baseurl; ?>/media/jui/js/html5.js"></script> 
<![endif]--> 
</head> 
<body class="contentpane modal"> 
	<jdoc:include type="message" /> 
	<jdoc:include type="component" /> 
</body> 
</html> 

Did this file decode correctly?

Original Code

<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$app             = JFactory::getApplication();
$doc             = JFactory::getDocument();
$this->language  = $doc->language;
$this->direction = $doc->direction;

// Add JavaScript Frameworks
JHtml::_('bootstrap.framework');

// Add Stylesheets
$doc->addStyleSheet('templates/' . $this->template . '/css/template.css');

// Load optional rtl Bootstrap css and Bootstrap bugfixes
JHtmlBootstrap::loadCss($includeMaincss = false, $this->direction);

?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
<jdoc:include type="head" />
<!--[if lt IE 9]>
	<script src="<?php echo $this->baseurl; ?>/media/jui/js/html5.js"></script>
<![endif]-->
</head>
<body class="contentpane modal">
	<jdoc:include type="message" />
	<jdoc:include type="component" />
</body>
</html>

Function Calls

defined 1

Variables

None

Stats

MD5 e3c65dcd62d0867c52e34913749c073e
Eval Count 0
Decode Time 150 ms