class HTML (View source)

HTML Helper class

Traits

Provides extensions to this object to integrate it with standard config API methods.

Config options

void_elements array

List of HTML5 void elements

Properties

Methods

public static 
config()

Get a configuration accessor for this class. Short hand for Config::inst()->get($this->class, .....).

public
mixed
uninherited(string $name)

Gets the uninherited value for the given config option

public static 
string
createTag(string $tag, array $attributes, string $content = null)

Construct and return HTML tag.

Details

static Config_ForClass config()

Get a configuration accessor for this class. Short hand for Config::inst()->get($this->class, .....).

Return Value

Config_ForClass

mixed uninherited(string $name)

Gets the uninherited value for the given config option

Parameters

string $name

Return Value

mixed

static string createTag(string $tag, array $attributes, string $content = null)

Construct and return HTML tag.

Parameters

string $tag
array $attributes
string $content

Content to use between two tags. Not valid for void elements (e.g. link)

Return Value

string