12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /*
- * This file is part of the symfony package.
- * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- /**
- * sfRenderingFilter is the last filter registered for each filter chain. This
- * filter does the rendering.
- *
- * @package symfony
- * @subpackage filter
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @version SVN: $Id: sfRenderingFilter.class.php 11286 2008-09-02 10:27:36Z fabien $
- */
- class sfRenderingFilter extends sfFilter
- {
- /**
- * Executes this filter.
- *
- * @param sfFilterChain $filterChain The filter chain.
- *
- * @throws <b>sfInitializeException</b> If an error occurs during view initialization
- * @throws <b>sfViewException</b> If an error occurs while executing the view
- */
- public function execute($filterChain)
- {
- // execute next filter
- $filterChain->execute();
- // get response object
- $response = $this->context->getResponse();
- // hack to rethrow sfForm and|or sfFormField __toString() exceptions (see sfForm and sfFormField)
- if (sfForm::hasToStringException())
- {
- throw sfForm::getToStringException();
- }
- else if (sfFormField::hasToStringException())
- {
- throw sfFormField::getToStringException();
- }
- // send headers + content
- $response->send();
- }
- }
|