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 /* +------------------------------------------------------------------------+ | P..
Decoded Output download
<?php
/*
+------------------------------------------------------------------------+
| Phalcon Framework |
+------------------------------------------------------------------------+
| Copyright (c) 2011-present Phalcon Team (https://phalcon.io) |
+------------------------------------------------------------------------+
| This source file is subject to the New BSD License that is bundled |
| with this package in the file LICENSE.txt. |
| |
| If you did not receive a copy of the license and are unable to |
| obtain it through the world-wide-web, please send an email |
| to [email protected] so we can send you a copy immediately. |
+------------------------------------------------------------------------+
*/
namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt;
use IntegrationTester;
use Phalcon\Mvc\View;
use Phalcon\Mvc\View\Engine\Volt\Compiler;
use function dataDir;
use function sprintf;
use const PHP_EOL;
/**
* Phalcon\Tests\Integration\Mvc\View\Engine\Volt\CompilerFilesCest
*
* Test working Compiler with files
*/
class CompilerFilesCest
{
/**
* @param IntegrationTester $I
*/
public function _after(IntegrationTester $I)
{
$compiledFiles = [
dataDir('fixtures/views/blocks/base.volt.php'),
dataDir('fixtures/views/blocks/base.volt%%e%%.php'),
dataDir('fixtures/views/blocks/index/login.volt.php'),
dataDir('fixtures/views/blocks/index/main.volt.php'),
dataDir('fixtures/views/blocks/partials/header.volt.php'),
dataDir('fixtures/views/extends/children.extends.volt.php'),
dataDir('fixtures/views/extends/import.volt.php'),
dataDir('fixtures/views/extends/import2.volt.php'),
dataDir('fixtures/views/layouts/extends.volt.php'),
dataDir('fixtures/views/partials/header.volt.php'),
dataDir('fixtures/views/partials/header2.volt.php'),
dataDir('fixtures/views/partials/header3.volt.php'),
dataDir('fixtures/views/partials/footer.volt.php'),
];
foreach ($compiledFiles as $fileName) {
$I->safeDeleteFile($fileName);
}
}
/**
* @param IntegrationTester $I
*/
public function _before(IntegrationTester $I)
{
$compiledFiles = [
dataDir('fixtures/views/blocks/base.volt.php'),
dataDir('fixtures/views/blocks/index/login.volt.php'),
dataDir('fixtures/views/blocks/index/main.volt.php'),
dataDir('fixtures/views/blocks/partials/header.volt.php'),
];
foreach ($compiledFiles as $fileName) {
$I->safeDeleteFile($fileName);
}
}
/**
* Tests Compiler::compileFile test case to compile extended files
*
* @author Sergii Svyrydenko <[email protected]>
* @since 2017-01-17
*/
public function mvcViewEngineVoltCompileExtendsFile(IntegrationTester $I)
{
$I->wantToTest('Mvc\Vew\Engine\Volt :: compile() extended files');
$view = new View();
$view->setViewsDir(dataDir('fixtures/views/'));
$volt = new Compiler($view);
//extends
$volt->compileFile(
dataDir('fixtures/views/extends/children.extends.volt'),
dataDir('fixtures/views/extends/children.extends.volt.php')
);
$I->openFile(
dataDir('fixtures/views/extends/children.extends.volt.php')
);
$I->seeFileContentsEqual(
'<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">'
. '<html lang="en"><html xmlns="http://www.w3.org/1999/xhtml">'
. '<head><style type="text/css">.important { color: #336699; }</style>'
. '<title>Index - My Webpage</title></head><body>'
. '<div id="content"><h1>Index</h1><p class="important">Welcome on my awesome homepage.</p>'
. '</div><div id="footer">© Copyright 2012 by <a href="http://domain.invalid/">you</a>.'
. '</div></body>'
);
}
/**
* Tests Compiler::compileFile test case to compile imported files
*
* @author Sergii Svyrydenko <[email protected]>
* @since 2017-01-17
*/
public function mvcViewEngineVoltCompileImportFile(IntegrationTester $I)
{
$I->wantToTest('Mvc\Vew\Engine\Volt :: compile() imported files');
$view = new View();
$view->setViewsDir(dataDir('fixtures/views/'));
$volt = new Compiler($view);
//extends
$volt->compileFile(
dataDir('fixtures/views/extends/import.volt'),
dataDir('fixtures/views/extends/import.volt.php')
);
$I->openFile(
dataDir('fixtures/views/extends/import.volt.php')
);
$I->seeFileContentsEqual(
'<div class="header"><h1>This is the header</h1></div><div class="footer"><p>This is the footer</p></div>'
);
}
/**
* Tests Compiler::compileFile test case to compile imported files
* recursively
*
* @author Sergii Svyrydenko <[email protected]>
* @since 2017-01-17
*/
public function mvcViewEngineVoltCompileImportRecursiveFiles(IntegrationTester $I)
{
$I->wantToTest('Mvc\Vew\Engine\Volt :: compile() import recursive files');
$view = new View();
$view->setViewsDir(dataDir('fixtures/views/'));
$volt = new Compiler($view);
//extends
$volt->compileFile(
dataDir('fixtures/views/extends/import2.volt'),
dataDir('fixtures/views/extends/import2.volt.php')
);
$I->openFile(
dataDir('fixtures/views/extends/import2.volt.php')
);
$I->seeFileContentsEqual(
'<div class="header"><h1>This is the title</h1></div>'
);
}
/**
* Tests Compiler::compileFile to compile files with blocks and partials
*
* @author Phalcon Team <[email protected]>
* @since 2021-06-25
*/
public function mvcViewEngineVoltCompileBlocks(IntegrationTester $I)
{
$I->wantToTest('Mvc\Vew\Engine\Volt :: compile() blocks and partials');
$template = '<!DOCTYPE html>' . PHP_EOL
. '<html lang="en">' . PHP_EOL
. '<head>' . PHP_EOL
. ' <meta charset="utf-8" />' . PHP_EOL
. ' <meta name="viewport" content="width=device-width, initial-scale=1.0" />' . PHP_EOL
. '</head>' . PHP_EOL
. '<body>' . PHP_EOL
. PHP_EOL
. PHP_EOL
. PHP_EOL
. '%s' . PHP_EOL
. PHP_EOL
. PHP_EOL
. '</body>' . PHP_EOL
. '</html>' . PHP_EOL;
/**
* Set up the view and Volt and compile
*/
$view = new View();
$view->setViewsDir(
[
dataDir('fixtures/views/blocks'),
]
);
$volt = new Compiler($view);
/**
* Login - no header output
*/
$volt->compileFile(
dataDir('fixtures/views/blocks/index/login.volt'),
dataDir('fixtures/views/blocks/index/login.volt.php')
);
$I->openFile(
dataDir('fixtures/views/blocks/index/login.volt.php')
);
$expected = sprintf($template, '<p>This is the login page</p>');
$I->seeFileContentsEqual($expected);
/**
* Main page = header output
*/
$volt->compileFile(
dataDir('fixtures/views/blocks/index/main.volt'),
dataDir('fixtures/views/blocks/index/main.volt.php')
);
$I->openFile(
dataDir('fixtures/views/blocks/index/main.volt.php')
);
$expected = sprintf($template, '<p>This is the main page</p>');
$I->seeFileContentsEqual($expected);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/*
+------------------------------------------------------------------------+
| Phalcon Framework |
+------------------------------------------------------------------------+
| Copyright (c) 2011-present Phalcon Team (https://phalcon.io) |
+------------------------------------------------------------------------+
| This source file is subject to the New BSD License that is bundled |
| with this package in the file LICENSE.txt. |
| |
| If you did not receive a copy of the license and are unable to |
| obtain it through the world-wide-web, please send an email |
| to [email protected] so we can send you a copy immediately. |
+------------------------------------------------------------------------+
*/
namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt;
use IntegrationTester;
use Phalcon\Mvc\View;
use Phalcon\Mvc\View\Engine\Volt\Compiler;
use function dataDir;
use function sprintf;
use const PHP_EOL;
/**
* Phalcon\Tests\Integration\Mvc\View\Engine\Volt\CompilerFilesCest
*
* Test working Compiler with files
*/
class CompilerFilesCest
{
/**
* @param IntegrationTester $I
*/
public function _after(IntegrationTester $I)
{
$compiledFiles = [
dataDir('fixtures/views/blocks/base.volt.php'),
dataDir('fixtures/views/blocks/base.volt%%e%%.php'),
dataDir('fixtures/views/blocks/index/login.volt.php'),
dataDir('fixtures/views/blocks/index/main.volt.php'),
dataDir('fixtures/views/blocks/partials/header.volt.php'),
dataDir('fixtures/views/extends/children.extends.volt.php'),
dataDir('fixtures/views/extends/import.volt.php'),
dataDir('fixtures/views/extends/import2.volt.php'),
dataDir('fixtures/views/layouts/extends.volt.php'),
dataDir('fixtures/views/partials/header.volt.php'),
dataDir('fixtures/views/partials/header2.volt.php'),
dataDir('fixtures/views/partials/header3.volt.php'),
dataDir('fixtures/views/partials/footer.volt.php'),
];
foreach ($compiledFiles as $fileName) {
$I->safeDeleteFile($fileName);
}
}
/**
* @param IntegrationTester $I
*/
public function _before(IntegrationTester $I)
{
$compiledFiles = [
dataDir('fixtures/views/blocks/base.volt.php'),
dataDir('fixtures/views/blocks/index/login.volt.php'),
dataDir('fixtures/views/blocks/index/main.volt.php'),
dataDir('fixtures/views/blocks/partials/header.volt.php'),
];
foreach ($compiledFiles as $fileName) {
$I->safeDeleteFile($fileName);
}
}
/**
* Tests Compiler::compileFile test case to compile extended files
*
* @author Sergii Svyrydenko <[email protected]>
* @since 2017-01-17
*/
public function mvcViewEngineVoltCompileExtendsFile(IntegrationTester $I)
{
$I->wantToTest('Mvc\Vew\Engine\Volt :: compile() extended files');
$view = new View();
$view->setViewsDir(dataDir('fixtures/views/'));
$volt = new Compiler($view);
//extends
$volt->compileFile(
dataDir('fixtures/views/extends/children.extends.volt'),
dataDir('fixtures/views/extends/children.extends.volt.php')
);
$I->openFile(
dataDir('fixtures/views/extends/children.extends.volt.php')
);
$I->seeFileContentsEqual(
'<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">'
. '<html lang="en"><html xmlns="http://www.w3.org/1999/xhtml">'
. '<head><style type="text/css">.important { color: #336699; }</style>'
. '<title>Index - My Webpage</title></head><body>'
. '<div id="content"><h1>Index</h1><p class="important">Welcome on my awesome homepage.</p>'
. '</div><div id="footer">© Copyright 2012 by <a href="http://domain.invalid/">you</a>.'
. '</div></body>'
);
}
/**
* Tests Compiler::compileFile test case to compile imported files
*
* @author Sergii Svyrydenko <[email protected]>
* @since 2017-01-17
*/
public function mvcViewEngineVoltCompileImportFile(IntegrationTester $I)
{
$I->wantToTest('Mvc\Vew\Engine\Volt :: compile() imported files');
$view = new View();
$view->setViewsDir(dataDir('fixtures/views/'));
$volt = new Compiler($view);
//extends
$volt->compileFile(
dataDir('fixtures/views/extends/import.volt'),
dataDir('fixtures/views/extends/import.volt.php')
);
$I->openFile(
dataDir('fixtures/views/extends/import.volt.php')
);
$I->seeFileContentsEqual(
'<div class="header"><h1>This is the header</h1></div><div class="footer"><p>This is the footer</p></div>'
);
}
/**
* Tests Compiler::compileFile test case to compile imported files
* recursively
*
* @author Sergii Svyrydenko <[email protected]>
* @since 2017-01-17
*/
public function mvcViewEngineVoltCompileImportRecursiveFiles(IntegrationTester $I)
{
$I->wantToTest('Mvc\Vew\Engine\Volt :: compile() import recursive files');
$view = new View();
$view->setViewsDir(dataDir('fixtures/views/'));
$volt = new Compiler($view);
//extends
$volt->compileFile(
dataDir('fixtures/views/extends/import2.volt'),
dataDir('fixtures/views/extends/import2.volt.php')
);
$I->openFile(
dataDir('fixtures/views/extends/import2.volt.php')
);
$I->seeFileContentsEqual(
'<div class="header"><h1>This is the title</h1></div>'
);
}
/**
* Tests Compiler::compileFile to compile files with blocks and partials
*
* @author Phalcon Team <[email protected]>
* @since 2021-06-25
*/
public function mvcViewEngineVoltCompileBlocks(IntegrationTester $I)
{
$I->wantToTest('Mvc\Vew\Engine\Volt :: compile() blocks and partials');
$template = '<!DOCTYPE html>' . PHP_EOL
. '<html lang="en">' . PHP_EOL
. '<head>' . PHP_EOL
. ' <meta charset="utf-8" />' . PHP_EOL
. ' <meta name="viewport" content="width=device-width, initial-scale=1.0" />' . PHP_EOL
. '</head>' . PHP_EOL
. '<body>' . PHP_EOL
. PHP_EOL
. PHP_EOL
. PHP_EOL
. '%s' . PHP_EOL
. PHP_EOL
. PHP_EOL
. '</body>' . PHP_EOL
. '</html>' . PHP_EOL;
/**
* Set up the view and Volt and compile
*/
$view = new View();
$view->setViewsDir(
[
dataDir('fixtures/views/blocks'),
]
);
$volt = new Compiler($view);
/**
* Login - no header output
*/
$volt->compileFile(
dataDir('fixtures/views/blocks/index/login.volt'),
dataDir('fixtures/views/blocks/index/login.volt.php')
);
$I->openFile(
dataDir('fixtures/views/blocks/index/login.volt.php')
);
$expected = sprintf($template, '<p>This is the login page</p>');
$I->seeFileContentsEqual($expected);
/**
* Main page = header output
*/
$volt->compileFile(
dataDir('fixtures/views/blocks/index/main.volt'),
dataDir('fixtures/views/blocks/index/main.volt.php')
);
$I->openFile(
dataDir('fixtures/views/blocks/index/main.volt.php')
);
$expected = sprintf($template, '<p>This is the main page</p>');
$I->seeFileContentsEqual($expected);
}
}
Function Calls
None |
Stats
MD5 | 79562b506e890b5c1ffa0aaebebe60a7 |
Eval Count | 0 |
Decode Time | 135 ms |