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 namespace Kanboard\Helper; use Kanboard\Core\Base; /** * Asset Helper * * @pac..
Decoded Output download
<?php
namespace Kanboard\Helper;
use Kanboard\Core\Base;
/**
* Asset Helper
*
* @package helper
* @author Frederic Guillot
*/
class AssetHelper extends Base
{
/**
* Add a Javascript asset
*
* @param string $filename Filename
* @param bool $async
* @return string
*/
public function js($filename, $async = false)
{
$dir = dirname(__DIR__,2);
$filepath = $dir.'/'.$filename;
return '<script '.($async ? 'async' : '').' defer type="text/javascript" src="'.$this->helper->url->dir().$filename.'?'.filemtime($filepath).'"></script>';
}
/**
* Add a stylesheet asset
*
* @param string $filename Filename
* @param boolean $is_file Add file timestamp
* @param string $media Media
* @return string
*/
public function css($filename, $is_file = true, $media = 'screen')
{
$dir = dirname(__DIR__,2);
$filepath = $dir.'/'.$filename;
return '<link rel="stylesheet" href="'.$this->helper->url->dir().$filename.($is_file ? '?'.filemtime($filepath) : '').'" media="'.$media.'">';
}
/**
* Get custom css
*
* @access public
* @return string
*/
public function customCss()
{
if ($this->configModel->get('application_stylesheet')) {
return '<style>'.$this->configModel->get('application_stylesheet').'</style>';
}
return '';
}
/**
* Get CSS for task colors
*
* @access public
* @return string
*/
public function colorCss()
{
return '<style>'.$this->colorModel->getCss().'</style>';
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Kanboard\Helper;
use Kanboard\Core\Base;
/**
* Asset Helper
*
* @package helper
* @author Frederic Guillot
*/
class AssetHelper extends Base
{
/**
* Add a Javascript asset
*
* @param string $filename Filename
* @param bool $async
* @return string
*/
public function js($filename, $async = false)
{
$dir = dirname(__DIR__,2);
$filepath = $dir.'/'.$filename;
return '<script '.($async ? 'async' : '').' defer type="text/javascript" src="'.$this->helper->url->dir().$filename.'?'.filemtime($filepath).'"></script>';
}
/**
* Add a stylesheet asset
*
* @param string $filename Filename
* @param boolean $is_file Add file timestamp
* @param string $media Media
* @return string
*/
public function css($filename, $is_file = true, $media = 'screen')
{
$dir = dirname(__DIR__,2);
$filepath = $dir.'/'.$filename;
return '<link rel="stylesheet" href="'.$this->helper->url->dir().$filename.($is_file ? '?'.filemtime($filepath) : '').'" media="'.$media.'">';
}
/**
* Get custom css
*
* @access public
* @return string
*/
public function customCss()
{
if ($this->configModel->get('application_stylesheet')) {
return '<style>'.$this->configModel->get('application_stylesheet').'</style>';
}
return '';
}
/**
* Get CSS for task colors
*
* @access public
* @return string
*/
public function colorCss()
{
return '<style>'.$this->colorModel->getCss().'</style>';
}
}
Function Calls
None |
Stats
MD5 | c7ec9af0f351e0ac1ccf65cb566b67bb |
Eval Count | 0 |
Decode Time | 129 ms |