1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
| <?php
//TODO ajouter la gestion de fragment
class Document_Html_Element {
protected $_parent;
protected $_tag;
protected $_attributes = array ();
protected $_styles = array();
protected $_content = array();
//indent system
protected $_tab = ' ';
protected $_indent = true;
protected $_singleLine = false;
protected $_indentContent = true;
protected $_autoClose = true; //accepte <tag />
/**
* Constructor
*
* @param Document_Html_Element $parent
* @param string $tagName
* @param string $attributes
* @param string $styles
* @return void
*/
public function __construct($parent,
$tagName = null,
$attributes = null,
$styles = null,
$singleLine = null,
$indent = null,
$identContent = null)
{
$this->_parent = $parent;
if ($tagName) $this->_tag = $tagName;
if (is_array($attributes)) array_merge($this->_attributes = $attributes);
if (is_array($styles)) array_merge($this->_styles = $styles);
if (null !== $singleLine) $this->_singleLine = $singleLine;
if (null !== $identContent) $this->_indentContent = $identContent;
if (null !== $indent) $this->_indent = $indent;
}
public function getParent() {
return $this->_parent;
}
public function getDocument() {
require_once dirname(dirname(__FILE__)).'/Html.php';
if ($this->_parent instanceOF Document_Html) {
return $this->_parent;
} else {
return $this->_parent-> getDocument();
}
}
public function forceClose() {
$this->_autoClose = false;
return $this;
}
public function setAttribute($name, $value) {
$this->_attributes[$name] = $value;
return $this;
}
Public function addContent($content) {
$this->_content[] = $content;
return $this;
}
function getHtml($tab = null) {
$style = '';
foreach ($this->_styles as $key=>$value) {
$style.= $key.': '.$value.';';
}
if (null === $tab) $tab = $this->_tab;
if ($this->_indent) {
$src = "\n".$tab;
} else {
$src = '';
}
$src.= '<'.$this->_tag;
foreach ($this->_attributes as $name=>$value) {
$src.= ' '.$name."='".$value."'";
}
if ('' != $style) {
$src.= " style='".$style."'";
}
if ($this->_autoClose&&(is_array($this->_content)&&(0 == count($this->_content)))) {
$src.= ' />';
} else {
$src.= '>';
}
if (!(is_array($this->_content)&&(0 == count($this->_content)))||!$this->_autoClose){
if ((is_array($this->_content))||
(is_string($this->_content))) $src.= $this->_getHtmlContent($tab.$this->_tab);
if ($this->_indent&&!$this->_singleLine) {
$src.= "\n".$tab;
}
$src.= '</'.$this->_tag.'>';
}
return $src;
}
function _getHtmlContent($tab = null) {
if (null === $tab) $tab = $this->_tab;
if(is_array($this->_content)) {
$src = '';
foreach ($this->_content as $content) {
if ($content instanceOf Document_Html_Element) {
$src.= $content->getHtml($tab);
} elseif (is_string($content)) {
if ($this->_indentContent) {
$src.= "\n".$tab.$content;
} else {
$src.= $content;
}
}
}
return $src;
}
}
//Methodes pour créer des éléments.
Public function Text($text = null) {
$this->addContent(htmlentities($text));
return $this;
}
Public function Space() {
$this->addContent(' ');
return $this;
}
Public function noBreakSpace($text = null) {
$this->addContent(' ');
return $this;
}
Public function aName($text = null, $name = null, $attributes = null, $styles = null) {
$attributes['name'] = $name;
$a = $this->inlineElement($this, 'a', $text, $attributes, $styles, true, true, false);
$this->addContent($a);
return $a;
}
Public function aHref($text = null, $href = null, $attributes = null, $styles = null) {
$attributes['href'] = $href;
$a = $this->inlineElement($this, 'a', $text, $attributes, $styles, true, true, false);
$this->addContent($a);
return $a;
}
Public function abbr($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'abbr', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function acronym($text = null, $title = null, $attributes = null, $styles = null) {
$attributes['title'] = $title;
$tag = $this->inlineElement($this, 'acronym', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function address($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'address', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function applet($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'applet', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function area($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'area', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function b($text= null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'strong', $text, $attributes, $styles, true, false, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function base($text= null, $href = null, $attributes = null, $styles = null) {
$attributes['href'] = $href;
$tag = $this->inlineElement($this, 'base', $text, $attributes, $styles, true, true, false);
$this->getDocument()->getHead()->addContent($tag);
return $this;
}
Public function baseFont($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'basefont', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function bdo($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'bdo', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function big($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'big', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function blockquote($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'blockquote', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function br($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'br', $attributes, $styles, true, true, false);
$this->addContent($tag);
return $this;
}
Public function nobr($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'nobr', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function button($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'button', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function caption($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'caption', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function center($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'center', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function cite($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'cite', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function code($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'code', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function col($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'col', $attributes, $styles, true, true, false);
$this->addContent($tag);
return $this;
}
Public function colgroup($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'colgroup', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function dd($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'dd', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function del($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'del', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function dfn($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'dfn', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function dir($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'dir', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function div($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'div', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function dl($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'dl', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function dt($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'dt', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function em($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'em', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function fieldset($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'fieldset', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function font($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'font', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function form($action = null, $method = null, $attributes = null, $styles = null) {
$attributes['action'] = $action;
$attributes['method'] = $method;
$tag = new Document_Html_Element($this, 'form', $attributes, $styles, false, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function frame($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'frame', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function frameset($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'frameset', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function h1($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'h1', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function h2($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'h2', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function h3($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'h3', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function h4($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'h4', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function h5($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'h5', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function h6($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'h6', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function hr($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'hr', $attributes, $styles, true, true, false);
$this->addContent($tag);
return $this;
}
Public function i($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'i', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function iframe($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'iframe', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function image($src = null, $attributes = null, $styles = null) {
$attributes['src'] = $src;
$img = new Document_Html_Element($this, 'img', $attributes, $styles, true, false, false);
$this->addContent($img);
return $img;
}
Public function input($type = null, $name = null, $value = null, $attributes = null, $styles = null) {
$attributes['name'] = $name;
$attributes['type'] = $type;
$attributes['value'] = $value;
$tag = new Document_Html_Element($this, 'input', $attributes, $styles, true, true, false);
$this->addContent($tag);
return $this;
}
Public function inputText($name = null, $value = null, $attributes = null, $styles = null) {
return $this->input('text', $name, $value, $attributes, $styles);
}
Public function inputPassword($name = null, $value = null, $attributes = null, $styles = null) {
return $this->input('password', $name, $value, $attributes, $styles);
}
Public function inputCheckBox($name = null, $value = null, $attributes = null, $styles = null) {
return $this->input('checkbox', $name, $value, $attributes, $styles);
}
Public function inputRadio($name = null, $value = null, $attributes = null, $styles = null) {
return $this->input('radio', $name, $value, $attributes, $styles);
}
Public function inputSubmit($name = null, $value = null, $attributes = null, $styles = null) {
return $this->input('submit', $name, $value, $attributes, $styles);
}
Public function inputReset($name = null, $value = null, $attributes = null, $styles = null) {
return $this->input('reset', $name, $value, $attributes, $styles);
}
Public function inputFile($name = null, $value = null, $attributes = null, $styles = null) {
return $this->input('file', $name, $value, $attributes, $styles);
}
Public function inputHidden($name = null, $value = null, $attributes = null, $styles = null) {
return $this->input('hidden', $name, $value, $attributes, $styles);
}
Public function inputImage($name = null, $value = null, $attributes = null, $styles = null) {
return $this->input('image', $name, $value, $attributes, $styles);
}
Public function inputButton($name = null, $value = null, $attributes = null, $styles = null) {
return $this->input('button', $name, $value, $attributes, $styles);
}
Public function ins($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'ins', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function isindex($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'isindex', $attributes, $styles, true, true, false);
$this->addContent($tag);
return $this;
}
Public function kbd($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'kbd', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function label($text = null, $forId = null, $attributes = null, $styles = null) {
$attributes['for'] = $forId;
$tag = $this->inlineElement($this, 'label', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function legend($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'legend', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function li($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'li', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function link($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'link', $attributes, $styles, false, true, false);
$this->getDocument()->getHead()->addContent($tag);
return $this;
}
Public function linkStyle($source = null, $media= null, $attributes = null, $styles = null) {
$attributes['src'] = $source;
$attributes['media'] = $media;
$attributes['rel'] = 'stylesheet';
$attributes['type'] = 'text/css';
$tag = new Document_Html_Element($this, 'link', $attributes, $styles, false, true, false);
$this->getDocument()->getHead()->addContent($tag);
return $this;
}
Public function map($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'map', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function menu($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'menu', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function meta($name='', $content='', $attributes = null, $styles = null) {
$attributes['name'] = $name;
$attributes['content'] = $content;
$tag = new Document_Html_Element($this, 'meta', $attributes, $styles, true, true, false);
$this->getDocument()->getHead()->addContent($tag);
return $this;
}
Public function contentType($content='text/html; charset=iso-8859-1', $attributes = null, $styles = null) {
$attributes['http-equiv'] = 'Content-Type';
$attributes['content'] = $content;
$tag = new Document_Html_Element($this, 'meta', $attributes, $styles, true, true, false);
$this->getDocument()->getHead()->addContent($tag);
return $this;
}
Public function noframes($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'noframes', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function noscript($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'noscript', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function object($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'object', $attributes, $styles, false, true, true);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function ol($text = null, $attributes = null, $styles = null) {
$tag = $this->inlineElement($this, 'ol', $text, $attributes, $styles, true, true, false);
$this->addContent($tag);
return $tag;
}
Public function optgroup($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'optgroup', $attributes, $styles, true, true, false);
$tag->forceClose();
$this->addContent($tag);
return $tag;
}
Public function option($attributes = null, $styles = null) {
$tag = new Document_Html_Element($this, 'option', $attributes, $styles, false, true, true);
$tag->forceClose();
$this->addContent($tag);
return $tag;
} |
Partager