From: Robert Kaiser Date: Sun, 25 Apr 2010 11:42:41 +0000 (+0200) Subject: convert sm dev classes to new extended DOM classes and add some method to support... X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=commitdiff_plain;h=bf91764c43dfd3ff85994c3668b1c3c1fcfba176 convert sm dev classes to new extended DOM classes and add some method to support what those are using --- 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