ACC SHELL
<?php
/**
* This file is part of the Nette Framework (http://nette.org)
*
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/
namespace Nette\Latte;
use Nette;
/**
* HTML element node.
*
* @author David Grudl
*/
class HtmlNode extends Nette\Object
{
/** @var string */
public $name;
/** @var bool */
public $isEmpty = FALSE;
/** @var array */
public $attrs = array();
/** @var array */
public $macroAttrs = array();
/** @var bool */
public $closing = FALSE;
/** @var string */
public $attrCode;
/** @var int */
public $offset;
public function __construct($name)
{
$this->name = $name;
}
}
ACC SHELL 2018