X-Git-Url: https://git-public.kairo.at/?a=blobdiff_plain;ds=sidebyside;f=include%2Fcbsm%2Futil%2Fdocument.php-class;h=257d52bcbcda23848532fbba679ba071a6d78e27;hb=1109f526885e1e23ab52321ddb941dda14eb5f2f;hp=58637850153d708b5015f58f128f0df484be1dec;hpb=53510e9ea65c1e344e0a3b2f8c75319f8bf5f001;p=php-utility-classes.git diff --git a/include/cbsm/util/document.php-class b/include/cbsm/util/document.php-class index 5863785..257d52b 100755 --- a/include/cbsm/util/document.php-class +++ b/include/cbsm/util/document.php-class @@ -74,6 +74,10 @@ class ExtendedDocument extends DOMDocument { // appends an ExtendedDocument::createElementInputSubmit() as a child of this document (see there for params) // returns the new child // + // function appendButton($value, $onclick = null) + // appends an ExtendedDocument::createElementButton() as a child of this document (see there for params) + // returns the new child + // // function appendTextArea($name, $columns, $rows, [$id], [$value]) // appends an ExtendedDocument::createElementTextArea() as a child of this document (see there for params) // returns the new child @@ -94,6 +98,10 @@ class ExtendedDocument extends DOMDocument { // appends a DOMDocument::createTextNode() as a child of this document (see there for params) // returns the new child // + // function appendComment($comment_data) + // appends a DOMDocument::createComment() as a child of this document (see there for params) + // returns the new child + // // function appendHTMLMarkup($htmldata, [$parentNode]) // appends a representation of the HTML data as children of the given parent node, by default this document // NO return value! @@ -136,7 +144,10 @@ class ExtendedDocument extends DOMDocument { // checked state // // function createElementInputSubmit($value) - // returns an ExtendedElement that is an HTML of type 'submit' with the given name and value + // returns an ExtendedElement that is an HTML of type 'submit' with the given value as label + // + // function createElementButton($value, $onclick = null) + // returns an ExtendedElement that is an HTML button with the given value as label and optionally onclick attribute // // function createElementTextArea($name, $columns, $rows, [$id], [$value]) // returns an ExtendedElement that is an HTML