X-Git-Url: https://git-public.kairo.at/?a=blobdiff_plain;ds=inline;f=classes%2Fdocument.php-class;h=198296f3e1a7eaa5ac8906ebec66f1cb3f2b5273;hb=HEAD;hp=ed688b6e38b3c7dd50b38f41e68bc9ebdfeae3cf;hpb=5ae00086e5e4a5ffe979d5462b388d8277417e9f;p=php-utility-classes.git diff --git a/classes/document.php-class b/classes/document.php-class index ed688b6..c48415f 100755 --- a/classes/document.php-class +++ b/classes/document.php-class @@ -65,6 +65,10 @@ class ExtendedDocument extends DOMDocument { // appends an ExtendedDocument::createElementInputRange() as a child of this document (see there for params) // returns the new child // + // public function appendInputSearch($name, $maxlength, $size, [$id], [$value]) + // appends an ExtendedDocument::createElementInputSearch() as a child of this document (see there for params) + // returns the new child + // // public function appendInputUrl($name, $maxlength, $size, [$id], [$value]) // appends an ExtendedDocument::createElementInputUrl() as a child of this document (see there for params) // returns the new child @@ -85,6 +89,10 @@ class ExtendedDocument extends DOMDocument { // appends an ExtendedDocument::createElementInputTime() as a child of this document (see there for params) // returns the new child // + // public function appendInputDateTime($name, [$id], [$min], [$max], [$value]) + // appends an ExtendedDocument::createElementInputDateTime() as a child of this document (see there for params) + // returns the new child + // // public function appendInputColor($name, [$id], [$value]) // appends an ExtendedDocument::createElementInputColor() as a child of this document (see there for params) // returns the new child @@ -125,6 +133,10 @@ class ExtendedDocument extends DOMDocument { // appends an ExtendedDocument::createElementLabel() as a child of this document (see there for params) // returns the new child // + // public function appendElementDatalist([$id], [$options]) + // appends an ExtendedDocument::createElementDatalist() as a child of this document (see there for params) + // returns the new child + // // public function appendText($text) // appends a DOMDocument::createTextNode() as a child of this document (see there for params) // returns the new child @@ -198,6 +210,10 @@ class ExtendedDocument extends DOMDocument { // returns an ExtendedElement that is an HTML of type 'url' with the given name, maxlength, size, // and optionally id and value // + // public function createElementInputSearch($name, $maxlength, $size, [$id], [$value]) + // returns an ExtendedElement that is an HTML of type 'search' 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 @@ -214,6 +230,10 @@ class ExtendedDocument extends DOMDocument { // returns an ExtendedElement that is an HTML of type 'time' with the given name, // and optionally id, min, max, and value // + // public function createElementInputDateTime($name, [$id], [$min], [$max], [$value]) + // returns an ExtendedElement that is an HTML of type 'datetime-local' with the given name, + // and optionally id, min, max, and value + // // public function createElementInputColor($name, [$id], [$value]) // returns an ExtendedElement that is an HTML of type 'color' with the given name, // and optionally id and value @@ -250,6 +270,9 @@ class ExtendedDocument extends DOMDocument { // public function createElementLabel($for_id, $value) // returns an ExtendedElement that is an HTML