X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fcbsm%2Futil%2Fdocument.php-class;fp=include%2Fcbsm%2Futil%2Fdocument.php-class;h=46d4293fe81d105c8aa025e4bd6e75ba9f06957f;hp=11ebf973f8738a9b662f0fc8d268eb5827674332;hb=bf91764c43dfd3ff85994c3668b1c3c1fcfba176;hpb=ea29ba0c875bd7bfb762d831e81e8074c5f6ce32 diff --git a/include/cbsm/util/document.php-class b/include/cbsm/util/document.php-class index 11ebf97..46d4293 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 @@ -115,6 +127,18 @@ 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