mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-04 08:34:11 +01:00
58 lines
1.5 KiB
PHP
58 lines
1.5 KiB
PHP
<?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";
|
|
}
|
|
} |