X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fcbsm%2Futil%2Fdocument.php-class;h=e641d23c56364fec3610153d65803280cf03c726;hp=11ebf973f8738a9b662f0fc8d268eb5827674332;hb=4d4532c4d330be2b2213989b453ad31d2b608925;hpb=ae41c41b1625ce16efdbb919df085658b3e5fc15 diff --git a/include/cbsm/util/document.php-class b/include/cbsm/util/document.php-class index 11ebf97..e641d23 100755 --- a/include/cbsm/util/document.php-class +++ b/include/cbsm/util/document.php-class @@ -70,6 +70,18 @@ class ExtendedDocument extends DOMDocument { // appends an ExtendedDocument::createElementInputSubmit() 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 + // + // function appendElementSelect($name, [$id], [$options], [$default]) + // appends an ExtendedDocument::createElementSelect() as a child of this document (see there for params) + // returns the new child + // + // function appendElementOption($key, $desc, [$selected]) + // appends an ExtendedDocument::createElementOption() as a child of this document (see there for params) + // returns the new child + // // function appendLabel($for_id, $value) // appends an ExtendedDocument::createElementLabel() as a child of this document (see there for params) // returns the new child @@ -90,6 +102,10 @@ class ExtendedDocument extends DOMDocument { // appends an ExtendedDocument::createElementJS() as a child of this document (see there for params) // NO return value! // + // function appendCOMElement($module, $attributes) + // appends an ExtendedDocument::createCOMElement() as a child of this document (see there for params) + // returns the new child + // // function createElementLink($target, [$value]) // returns an ExtendedElement that is an HTML with the given target (href) and (optional) value // @@ -115,16 +131,33 @@ class ExtendedDocument extends DOMDocument { // function createElementInputSubmit($value) // returns an ExtendedElement that is an HTML of type 'submit' with the given name and value // + // function createElementTextArea($name, $columns, $rows, [$id], [$value]) + // returns an ExtendedElement that is an HTML