Documentation is available at wml.php
- <?php
- /* Here will be a set of WML classes, derived from the XML classes */
- /* Not all wml tags are implemented, for example, <table> are not, since their
- * WML form is just a stripped down form of HTML tables, so they are not implemented */
- class wml_card extends xml_element
- {
- function wml_card($id,$title)
- {
- $attribs=array("id" => $id,
- "title" => $title);
- $this->xml_element("card",$attribs);
- }
- }
- class wml_para extends xml_element
- {
- function wml_para($content)
- {
- $this->xml_element("p");
- $this->add_child($content);
- }
- }
Documentation generated on Tue, 24 May 2005 03:59:12 -0400 by phpDocumentor 1.3.0RC3