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 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
|
<?php
// Start of tidy v.2.0
class tidy {
/**
* Returns the value of the specified configuration option for the tidy document
* @link http://www.php.net/manual/en/tidy.getopt.php
* @param option string <p>
* You will find a list with each configuration option and their types
* at: &url.tidy.conf;.
* </p>
* @return mixed the value of the specified option.
* The return type depends on the type of the specified one.
*/
public function getOpt ($option) {}
/**
* Execute configured cleanup and repair operations on parsed markup
* @link http://www.php.net/manual/en/tidy.cleanrepair.php
* @return bool Returns true on success, false on failure.
*/
public function cleanRepair () {}
/**
* Parse markup in file or URI
* @link http://www.php.net/manual/en/tidy.parsefile.php
* @param filename string <p>
* If the filename parameter is given, this function
* will also read that file and initialize the object with the file,
* acting like tidy_parse_file.
* </p>
* @param config mixed[optional] <p>
* The config config can be passed either as an
* array or as a string. If a string is passed, it is interpreted as the
* name of the configuration file, otherwise, it is interpreted as the
* options themselves.
* </p>
* <p>
* For an explanation about each option, see
* &url.tidy.conf;.
* </p>
* @param encoding string[optional] <p>
* The encoding parameter sets the encoding for
* input/output documents. The possible values for encoding are:
* ascii, latin0, latin1,
* raw, utf8, iso2022,
* mac, win1252, ibm858,
* utf16, utf16le, utf16be,
* big5, and shiftjis.
* </p>
* @param use_include_path bool[optional] <p>
* Search for the file in the include_path.
* </p>
* @return bool Returns true on success, false on failure.
*/
public function parseFile ($filename, $config = null, $encoding = null, $use_include_path = null) {}
/**
* Parse a document stored in a string
* @link http://www.php.net/manual/en/tidy.parsestring.php
* @param input string <p>
* The data to be parsed.
* </p>
* @param config mixed[optional] <p>
* The config config can be passed either as an
* array or as a string. If a string is passed, it is interpreted as the
* name of the configuration file, otherwise, it is interpreted as the
* options themselves.
* </p>
* <p>
* For an explanation about each option, visit &url.tidy.conf;.
* </p>
* @param encoding string[optional] <p>
* The encoding parameter sets the encoding for
* input/output documents. The possible values for encoding are:
* ascii, latin0, latin1,
* raw, utf8, iso2022,
* mac, win1252, ibm858,
* utf16, utf16le, utf16be,
* big5, and shiftjis.
* </p>
* @return bool a new tidy instance.
*/
public function parseString ($input, $config = null, $encoding = null) {}
/**
* Repair a string using an optionally provided configuration file
* @link http://www.php.net/manual/en/tidy.repairstring.php
* @param data string <p>
* The data to be repaired.
* </p>
* @param config mixed[optional] <p>
* The config config can be passed either as an
* array or as a string. If a string is passed, it is interpreted as the
* name of the configuration file, otherwise, it is interpreted as the
* options themselves.
* </p>
* <p>
* Check &url.tidy.conf; for
* an explanation about each option.
* </p>
* @param encoding string[optional] <p>
* The encoding parameter sets the encoding for
* input/output documents. The possible values for encoding are:
* ascii, latin0, latin1,
* raw, utf8, iso2022,
* mac, win1252, ibm858,
* utf16, utf16le, utf16be,
* big5, and shiftjis.
* </p>
* @return string the repaired string.
*/
public function repairString ($data, $config = null, $encoding = null) {}
/**
* Repair a file and return it as a string
* @link http://www.php.net/manual/en/tidy.repairfile.php
* @param filename string <p>
* The file to be repaired.
* </p>
* @param config mixed[optional] <p>
* The config config can be passed either as an
* array or as a string. If a string is passed, it is interpreted as the
* name of the configuration file, otherwise, it is interpreted as the
* options themselves.
* </p>
* <p>
* Check http://tidy.sourceforge.net/docs/quickref.html for an
* explanation about each option.
* </p>
* @param encoding string[optional] <p>
* The encoding parameter sets the encoding for
* input/output documents. The possible values for encoding are:
* ascii, latin0, latin1,
* raw, utf8, iso2022,
* mac, win1252, ibm858,
* utf16, utf16le, utf16be,
* big5, and shiftjis.
* </p>
* @param use_include_path bool[optional] <p>
* Search for the file in the include_path.
* </p>
* @return string the repaired contents as a string.
*/
public function repairFile ($filename, $config = null, $encoding = null, $use_include_path = null) {}
/**
* Run configured diagnostics on parsed and repaired markup
* @link http://www.php.net/manual/en/tidy.diagnose.php
* @return bool Returns true on success, false on failure.
*/
public function diagnose () {}
/**
* Get release date (version) for Tidy library
* @link http://www.php.net/manual/en/tidy.getrelease.php
* @return string a string with the release date of the Tidy library.
*/
public function getRelease () {}
/**
* Get current Tidy configuration
* @link http://www.php.net/manual/en/tidy.getconfig.php
* @return array an array of configuration options.
* </p>
* <p>
* For an explanation about each option, visit &url.tidy.conf;.
*/
public function getConfig () {}
/**
* Get status of specified document
* @link http://www.php.net/manual/en/tidy.getstatus.php
* @return int 0 if no error/warning was raised, 1 for warnings or accessibility
* errors, or 2 for errors.
*/
public function getStatus () {}
/**
* Get the Detected HTML version for the specified document
* @link http://www.php.net/manual/en/tidy.gethtmlver.php
* @return int the detected HTML version.
* </p>
*
* <p>
* This function is not yet implemented in the Tidylib itself, so it always
* return 0.
*/
public function getHtmlVer () {}
/**
* Returns the documentation for the given option name
* @link http://www.php.net/manual/en/tidy.getoptdoc.php
* @param optname string <p>
* The option name
* </p>
* @return string a string if the option exists and has documentation available, or
* false otherwise.
*/
public function getOptDoc ($optname) {}
/**
* Indicates if the document is a XHTML document
* @link http://www.php.net/manual/en/tidy.isxhtml.php
* @return bool This function returns true if the specified tidy
* object is a XHTML document, or false otherwise.
* </p>
*
* <p>
* This function is not yet implemented in the Tidylib itself, so it always
* return false.
*/
public function isXhtml () {}
/**
* Indicates if the document is a generic (non HTML/XHTML) XML document
* @link http://www.php.net/manual/en/tidy.isxml.php
* @return bool This function returns true if the specified tidy
* object is a generic XML document (non HTML/XHTML),
* or false otherwise.
* </p>
*
* <p>
* This function is not yet implemented in the Tidylib itself, so it always
* return false.
*/
public function isXml () {}
/**
* Returns a <classname>tidyNode</classname> object representing the root of the tidy parse tree
* @link http://www.php.net/manual/en/tidy.root.php
* @return tidyNode the tidyNode object.
*/
public function root () {}
/**
* Returns a <classname>tidyNode</classname> object starting from the <head> tag of the tidy parse tree
* @link http://www.php.net/manual/en/tidy.head.php
* @return tidyNode the tidyNode object.
*/
public function head () {}
/**
* Returns a <classname>tidyNode</classname> object starting from the <html> tag of the tidy parse tree
* @link http://www.php.net/manual/en/tidy.html.php
* @return tidyNode the tidyNode object.
*/
public function html () {}
/**
* Returns a <classname>tidyNode</classname> object starting from the <body> tag of the tidy parse tree
* @link http://www.php.net/manual/en/tidy.body.php
* @return tidyNode a tidyNode object starting from the
* tag of the tidy parse tree.
*/
public function body () {}
/**
* Constructs a new <classname>tidy</classname> object
* @link http://www.php.net/manual/en/tidy.construct.php
*/
public function __construct () {}
}
final class tidyNode {
/**
* Checks if a node has children
* @link http://www.php.net/manual/en/tidynode.haschildren.php
* @return bool true if the node has children, false otherwise.
*/
public function hasChildren () {}
/**
* Checks if a node has siblings
* @link http://www.php.net/manual/en/tidynode.hassiblings.php
* @return bool true if the node has siblings, false otherwise.
*/
public function hasSiblings () {}
/**
* Checks if a node represents a comment
* @link http://www.php.net/manual/en/tidynode.iscomment.php
* @return bool true if the node is a comment, false otherwise.
*/
public function isComment () {}
/**
* Checks if a node is part of a HTML document
* @link http://www.php.net/manual/en/tidynode.ishtml.php
* @return bool true if the node is part of a HTML document, false otherwise.
*/
public function isHtml () {}
/**
* Checks if a node represents text (no markup)
* @link http://www.php.net/manual/en/tidynode.istext.php
* @return bool true if the node represent a text, false otherwise.
*/
public function isText () {}
/**
* Checks if this node is JSTE
* @link http://www.php.net/manual/en/tidynode.isjste.php
* @return bool true if the node is JSTE, false otherwise.
*/
public function isJste () {}
/**
* Checks if this node is ASP
* @link http://www.php.net/manual/en/tidynode.isasp.php
* @return bool true if the node is ASP, false otherwise.
*/
public function isAsp () {}
/**
* Checks if a node is PHP
* @link http://www.php.net/manual/en/tidynode.isphp.php
* @return bool true if the current node is PHP code, false otherwise.
*/
public function isPhp () {}
/**
* Returns the parent node of the current node
* @link http://www.php.net/manual/en/tidynode.getparent.php
* @return tidyNode a tidyNode if the node has a parent, or &null;
* otherwise.
*/
public function getParent () {}
private function __construct () {}
}
/**
* @param option
*/
function tidy_getopt ($option) {}
/**
* @param input
* @param config_options[optional]
* @param encoding[optional]
*/
function tidy_parse_string ($input, $config_options, $encoding) {}
/**
* @param file
* @param config_options[optional]
* @param encoding[optional]
* @param use_include_path[optional]
*/
function tidy_parse_file ($file, $config_options, $encoding, $use_include_path) {}
/**
* Return a string representing the parsed tidy markup
* @link http://www.php.net/manual/en/function.tidy-get-output.php
* @param object tidy <p>
* &tidy.object;
* </p>
* @return string the parsed tidy markup.
*/
function tidy_get_output (tidy $object) {}
function tidy_get_error_buffer () {}
function tidy_clean_repair () {}
/**
* @param data
* @param config_file[optional]
* @param encoding[optional]
*/
function tidy_repair_string ($data, $config_file, $encoding) {}
/**
* @param filename
* @param config_file[optional]
* @param encoding[optional]
* @param use_include_path[optional]
*/
function tidy_repair_file ($filename, $config_file, $encoding, $use_include_path) {}
function tidy_diagnose () {}
function tidy_get_release () {}
function tidy_get_config () {}
function tidy_get_status () {}
function tidy_get_html_ver () {}
function tidy_is_xhtml () {}
function tidy_is_xml () {}
/**
* Returns the Number of Tidy errors encountered for specified document
* @link http://www.php.net/manual/en/function.tidy-error-count.php
* @param object tidy <p>
* &tidy.object;
* </p>
* @return int the number of errors.
*/
function tidy_error_count (tidy $object) {}
/**
* Returns the Number of Tidy warnings encountered for specified document
* @link http://www.php.net/manual/en/function.tidy-warning-count.php
* @param object tidy <p>
* &tidy.object;
* </p>
* @return int the number of warnings.
*/
function tidy_warning_count (tidy $object) {}
/**
* Returns the Number of Tidy accessibility warnings encountered for specified document
* @link http://www.php.net/manual/en/function.tidy-access-count.php
* @param object tidy <p>
* &tidy.object;
* </p>
* @return int the number of warnings.
*/
function tidy_access_count (tidy $object) {}
/**
* Returns the Number of Tidy configuration errors encountered for specified document
* @link http://www.php.net/manual/en/function.tidy-config-count.php
* @param object tidy <p>
* &tidy.object;
* </p>
* @return int the number of errors.
*/
function tidy_config_count (tidy $object) {}
/**
* @param resource
* @param optname
*/
function tidy_get_opt_doc ($resource, $optname) {}
function tidy_get_root () {}
function tidy_get_head () {}
function tidy_get_html () {}
/**
* @param tidy
*/
function tidy_get_body ($tidy) {}
/**
* description
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_TAG_UNKNOWN', 0);
define ('TIDY_TAG_A', 1);
define ('TIDY_TAG_ABBR', 2);
define ('TIDY_TAG_ACRONYM', 3);
define ('TIDY_TAG_ADDRESS', 4);
define ('TIDY_TAG_ALIGN', 5);
define ('TIDY_TAG_APPLET', 6);
define ('TIDY_TAG_AREA', 7);
define ('TIDY_TAG_B', 8);
define ('TIDY_TAG_BASE', 9);
define ('TIDY_TAG_BASEFONT', 10);
define ('TIDY_TAG_BDO', 11);
define ('TIDY_TAG_BGSOUND', 12);
define ('TIDY_TAG_BIG', 13);
define ('TIDY_TAG_BLINK', 14);
define ('TIDY_TAG_BLOCKQUOTE', 15);
define ('TIDY_TAG_BODY', 16);
define ('TIDY_TAG_BR', 17);
define ('TIDY_TAG_BUTTON', 18);
define ('TIDY_TAG_CAPTION', 19);
define ('TIDY_TAG_CENTER', 20);
define ('TIDY_TAG_CITE', 21);
define ('TIDY_TAG_CODE', 22);
define ('TIDY_TAG_COL', 23);
define ('TIDY_TAG_COLGROUP', 24);
define ('TIDY_TAG_COMMENT', 25);
define ('TIDY_TAG_DD', 26);
define ('TIDY_TAG_DEL', 27);
define ('TIDY_TAG_DFN', 28);
define ('TIDY_TAG_DIR', 29);
define ('TIDY_TAG_DIV', 30);
define ('TIDY_TAG_DL', 31);
define ('TIDY_TAG_DT', 32);
define ('TIDY_TAG_EM', 33);
define ('TIDY_TAG_EMBED', 34);
define ('TIDY_TAG_FIELDSET', 35);
define ('TIDY_TAG_FONT', 36);
define ('TIDY_TAG_FORM', 37);
define ('TIDY_TAG_FRAME', 38);
define ('TIDY_TAG_FRAMESET', 39);
define ('TIDY_TAG_H1', 40);
define ('TIDY_TAG_H2', 41);
define ('TIDY_TAG_H3', 42);
define ('TIDY_TAG_H4', 43);
define ('TIDY_TAG_H5', 44);
define ('TIDY_TAG_H6', 45);
define ('TIDY_TAG_HEAD', 46);
define ('TIDY_TAG_HR', 47);
define ('TIDY_TAG_HTML', 48);
define ('TIDY_TAG_I', 49);
define ('TIDY_TAG_IFRAME', 50);
define ('TIDY_TAG_ILAYER', 51);
define ('TIDY_TAG_IMG', 52);
define ('TIDY_TAG_INPUT', 53);
define ('TIDY_TAG_INS', 54);
define ('TIDY_TAG_ISINDEX', 55);
define ('TIDY_TAG_KBD', 56);
define ('TIDY_TAG_KEYGEN', 57);
define ('TIDY_TAG_LABEL', 58);
define ('TIDY_TAG_LAYER', 59);
define ('TIDY_TAG_LEGEND', 60);
define ('TIDY_TAG_LI', 61);
define ('TIDY_TAG_LINK', 62);
define ('TIDY_TAG_LISTING', 63);
define ('TIDY_TAG_MAP', 64);
define ('TIDY_TAG_MARQUEE', 65);
define ('TIDY_TAG_MENU', 66);
define ('TIDY_TAG_META', 67);
define ('TIDY_TAG_MULTICOL', 68);
define ('TIDY_TAG_NOBR', 69);
define ('TIDY_TAG_NOEMBED', 70);
define ('TIDY_TAG_NOFRAMES', 71);
define ('TIDY_TAG_NOLAYER', 72);
define ('TIDY_TAG_NOSAVE', 73);
define ('TIDY_TAG_NOSCRIPT', 74);
define ('TIDY_TAG_OBJECT', 75);
define ('TIDY_TAG_OL', 76);
define ('TIDY_TAG_OPTGROUP', 77);
define ('TIDY_TAG_OPTION', 78);
define ('TIDY_TAG_P', 79);
define ('TIDY_TAG_PARAM', 80);
define ('TIDY_TAG_PLAINTEXT', 81);
define ('TIDY_TAG_PRE', 82);
define ('TIDY_TAG_Q', 83);
define ('TIDY_TAG_RB', 84);
define ('TIDY_TAG_RBC', 85);
define ('TIDY_TAG_RP', 86);
define ('TIDY_TAG_RT', 87);
define ('TIDY_TAG_RTC', 88);
define ('TIDY_TAG_RUBY', 89);
define ('TIDY_TAG_S', 90);
define ('TIDY_TAG_SAMP', 91);
define ('TIDY_TAG_SCRIPT', 92);
define ('TIDY_TAG_SELECT', 93);
define ('TIDY_TAG_SERVER', 94);
define ('TIDY_TAG_SERVLET', 95);
define ('TIDY_TAG_SMALL', 96);
define ('TIDY_TAG_SPACER', 97);
define ('TIDY_TAG_SPAN', 98);
define ('TIDY_TAG_STRIKE', 99);
define ('TIDY_TAG_STRONG', 100);
define ('TIDY_TAG_STYLE', 101);
define ('TIDY_TAG_SUB', 102);
define ('TIDY_TAG_SUP', 103);
define ('TIDY_TAG_TABLE', 104);
define ('TIDY_TAG_TBODY', 105);
define ('TIDY_TAG_TD', 106);
define ('TIDY_TAG_TEXTAREA', 107);
define ('TIDY_TAG_TFOOT', 108);
define ('TIDY_TAG_TH', 109);
define ('TIDY_TAG_THEAD', 110);
define ('TIDY_TAG_TITLE', 111);
define ('TIDY_TAG_TR', 112);
define ('TIDY_TAG_TT', 113);
define ('TIDY_TAG_U', 114);
define ('TIDY_TAG_UL', 115);
define ('TIDY_TAG_VAR', 116);
define ('TIDY_TAG_WBR', 117);
define ('TIDY_TAG_XMP', 118);
/**
* root node
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_ROOT', 0);
/**
* doctype
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_DOCTYPE', 1);
/**
* HTML comment
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_COMMENT', 2);
/**
* Processing Instruction
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_PROCINS', 3);
/**
* Text
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_TEXT', 4);
/**
* start tag
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_START', 5);
/**
* end tag
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_END', 6);
/**
* empty tag
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_STARTEND', 7);
/**
* CDATA
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_CDATA', 8);
/**
* XML section
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_SECTION', 9);
/**
* ASP code
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_ASP', 10);
/**
* JSTE code
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_JSTE', 11);
/**
* PHP code
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_PHP', 12);
/**
* XML declaration
* @link http://www.php.net/manual/en/tidy.constants.php
*/
define ('TIDY_NODETYPE_XMLDECL', 13);
// End of tidy v.2.0
?>
|