Previous Up Next
XMLTagClass XMLTagClass

HTMLagClass

This is the base HTML Tag class.

by Walter A. Boring IV by Suren Markossian
© October 2007, Walter A. Boring IV
(phpHtmlLib 3.0.1)

Description

This class is a child of the XMLTagClass. It has all of the functionality for building all of the various HTML tags in either HTML mode or XHTML mode. Each HTML tag has specific attributes that make it unique, and this class provides the framework for all of those features. Each actual HTML tag is a child of this class that specifies the specific attributes and quirks for itself.

Each W3C supported HTML tag is specified as a child of the HTMLTagClass in the phpHtmlLib tag_classes/ALLTAGS.inc file. You should look there to see the particulars on how each supported HTML tag is different from one another.

Creating an HTML tag object.

Since each W3C supported HTML tag is already defined as a child of the HTMLTagClass, we just create the specific tag object that we are interested in.

Each HTML Tag that phpHtmlLib supports is a class that is defined as follows: {TAGNAME}tag(). So if you want an img tag the class name is IMGtag. Lets look at an example for an anchor tag.

$a = new Atag( array('href'" => "http://phphtmllib.newsblob.com"),
                 'phpHtmlLib website');
print $a->render();

Output:

<a href="http://phphtmllib.newsblob.com">phpHtmlLib website</a>

Creating a HTML tag object with a helper function.

Each HTML tag also has a 'helper' function defined to help build the tag with parameters that are for the most common attributes/values for each specific tag. The function name is always in the format of html_{tagname}(). So an anchor tag function would be as follows.

$a = html_a("http://phphtmllib.newsblob.com", 'phpHtmlLib website');
print $a->render();

Output:

<a href="http://phphtmllib.newsblob.com">phpHtmlLib website</a>

Previous Up Next
XMLTagClass XMLTagClass

Documentation generated on Thu, 11 Oct 2007 12:05:14 -0700 by phpDocumentor 1.4.0