8 namespace Fossology\Lib\Html;
16 function __construct($name, $attributes = array())
19 $this->attributes = $attributes;
28 $this->attributes[$name] = $value;
31 function getOpeningText()
33 $openingText =
"<" . $this->name;
34 foreach ($this->attributes as $name => $value) {
35 $openingText .=
" $name=\"$value\"";
37 return $openingText .
">";
40 function getClosingText()
42 return "</$this->name>";
setAttribute($name, $value)