12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- /* SVN FILE: $Id: HamlExpandedRenderer.php 49 2010-04-04 10:51:24Z chris.l.yates $ */
- /**
- * HamlExpandedRenderer class file.
- * @author Chris Yates <chris.l.yates@gmail.com>
- * @copyright Copyright (c) 2010 PBM Web Development
- * @license http://phamlp.googlecode.com/files/license.txt
- * @package PHamlP
- * @subpackage Haml.renderers
- */
- /**
- * HamlExpandedRenderer class.
- * Blocks are on single lines and content indented.
- * @package PHamlP
- * @subpackage Haml.renderers
- */
- class HamlExpandedRenderer extends HamlRenderer {
- /**
- * Renders the opening tag of an element
- */
- public function renderOpeningTag($node) {
- return parent::renderOpeningTag($node) .
- ($node->whitespaceControl['inner'] ? '' :
- ($node->isSelfClosing && $node->whitespaceControl['outer'] ? '' : "\n"));
- }
- /**
- * Renders the closing tag of an element
- */
- public function renderClosingTag($node) {
- return ($node->isSelfClosing ? '' : parent::renderClosingTag($node) .
- ($node->whitespaceControl['outer'] ? '' : "\n"));
- }
- /**
- * Renders content.
- * @param HamlNode the node being rendered
- * @return string the rendered content
- */
- public function renderContent($node) {
- return self::INDENT . parent::renderContent($node) . "\n";
- }
- /**
- * Renders the start of a code block
- */
- public function renderStartCodeBlock($node) {
- return parent::renderStartCodeBlock($node) . "\n";
- }
- /**
- * Renders the end of a code block
- */
- public function renderEndCodeBlock($node) {
- return parent::renderEndCodeBlock($node) . "\n";
- }
- }
|