From: Robert Kaiser Date: Sun, 3 Nov 2024 00:06:21 +0000 (+0100) Subject: make sure we don't get a null uastring X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=commitdiff_plain;h=HEAD;hp=97472ddcd376ade81ef3bed3ab2ca2b0dd0b048f make sure we don't get a null uastring --- diff --git a/classes/document.php-class b/classes/document.php-class index 198296f..00852d5 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