for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* This file is part of Aura for PHP.
* @license http://opensource.org/licenses/bsd-license.php BSD
*/
namespace Aura\Html\Helper;
* Helper to generate a complete element.
* @package Aura.Html
abstract class AbstractElement extends AbstractHelper
{
abstract public function __invoke($tag, $content, array $attr = array());
* Returns any kind of complete HTML element with attributes and escaped content.
* @param string $tag The tag to generate.
* @param string $content The element content
* @param array $attr Attributes for the tag.
* @return string
protected function escaped($tag, $content, array $attr = array())
$attr = $this->escaper->attr($attr);
$out = $attr ? "<{$tag} $attr>" : "<{$tag}>";
$out .= $this->escaper->html($content);
$out .= "</$tag>";
return $out;
}
* Returns any kind of complete HTML element with attributes.
* @param string $content The content of the element.
public function raw($tag, $content, array $attr = array())
$out .= $content;