for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright (c) 2013-2016
*
* @category Library
* @package Dwoo\Plugins\Blocks
* @author Jordi Boggiano <[email protected]>
* @author David Sanchez <[email protected]>
* @copyright 2008-2013 Jordi Boggiano
* @copyright 2013-2016 David Sanchez
* @license http://dwoo.org/LICENSE Modified BSD License
* @version 1.3.0
* @date 2016-09-19
* @link http://dwoo.org/
*/
namespace Dwoo\Plugins\Blocks;
use Dwoo\Compiler;
use Dwoo\Block\Plugin as BlockPlugin;
use Dwoo\ICompilable\Block as ICompilableBlock;
* Internal plugin used to wrap the template output, do not use in your templates as it will break them.
* This software is provided 'as-is', without any express or implied warranty.
final class PluginTopLevelBlock extends BlockPlugin implements ICompilableBlock
{
public function init()
}
* @param Compiler $compiler
* @param array $params
* @param string $prepend
* @param string $append
* @param string $type
* @return string
public static function preProcessing(Compiler $compiler, array $params, $prepend, $append, $type)
return '/* end template head */ ob_start(); /* template body */ ' . Compiler::PHP_CLOSE;
* @param string $content
public static function postProcessing(Compiler $compiler, array $params, $prepend, $append, $content)
return $content . Compiler::PHP_OPEN . ' /* end template body */' . "\n" . 'return $this->buffer . ob_get_clean();';