X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fcbsm%2Futil%2Fdocument.php-class;h=41e817a4d96b678740e1fa0ca82591a886af529c;hp=475f2c4ae91e35811c91b398c10d89bf50d48ba0;hb=6638efd5690cd46471a3e01c164e572956a34aa3;hpb=61cc8aa9e32b806030754bd5988ca7ae0033ee8a diff --git a/include/cbsm/util/document.php-class b/include/cbsm/util/document.php-class index 475f2c4..41e817a 100755 --- a/include/cbsm/util/document.php-class +++ b/include/cbsm/util/document.php-class @@ -68,6 +68,10 @@ class ExtendedDocument extends DOMDocument { // appends an ExtendedDocument::createElementInputNumber() as a child of this document (see there for params) // returns the new child // + // public function appendInputEmail($name, $maxlength, $size, [$id], [$value]) + // appends an ExtendedDocument::createElementInputEmail() as a child of this document (see there for params) + // returns the new child + // // public function appendInputPassword($name, $maxlength, $size, [$id], [$value]) // appends an ExtendedDocument::createElementInputPassword() as a child of this document (see there for params) // returns the new child @@ -112,6 +116,10 @@ class ExtendedDocument extends DOMDocument { // appends a DOMDocument::createTextNode() as a child of this document (see there for params) // returns the new child // + // public function appendEntity($name) + // appends a DOMDocument::createEntityReference() as a child of this document (see there for params) + // returns the new child + // // public function appendComment($comment_data) // appends a DOMDocument::createComment() as a child of this document (see there for params) // returns the new child @@ -128,6 +136,10 @@ class ExtendedDocument extends DOMDocument { // appends an ExtendedDocument::createElementJS() as a child of this document (see there for params) // NO return value! // + // public function appendJSFile($jsURL) + // appends an ExtendedDocument::createElementJSFile() as a child of this document (see there for params) + // returns the new child + // // public function appendCOMElement($module, $attributes) // appends an ExtendedDocument::createCOMElement() as a child of this document (see there for params) // returns the new child @@ -153,6 +165,10 @@ class ExtendedDocument extends DOMDocument { // returns an ExtendedElement that is an HTML of type 'number' with the given name, maxlength, size, // and optionally id and value // + // public function createElementInputEmail($name, $maxlength, $size, [$id], [$value]) + // returns an ExtendedElement that is an HTML of type 'email' with the given name, maxlength, size, + // and optionally id and value + // // public function createElementInputPassword($name, $maxlength, $size, [$id], [$value]) // returns an ExtendedElement that is an HTML of type 'password' with the given name, maxlength, size, // and optionally id and value @@ -192,6 +208,9 @@ class ExtendedDocument extends DOMDocument { // public function createElementJS($jsdata) // returns an ExtendedElement that is an HTML