Jump to content

AtkUrlAttribute

From NusaATK
Revision as of 17:21, 19 December 2007 by bahtiar (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Attribute: atkUrlAttribute

API docs | Flags

List of other attributes

File:AtkUrlAttribute.png
atkUrlAttribute screenshot

Description

The atkUrlAttribute, in combination with the AF_VALIDATE_URL flag, is used for validating URL fields.

Params

The constructor of the atkUrlAttribute has the following params: atkUrlAttribute($name, $flags=0, $size=0)

name String
Name of the attribute (the same as the fieldname used in the database)
flags (optional) int
Flags for the attribute. For more information about flags, please checkout the flags section.
size (optional) int
Size of the attribute.


Examples

(in a node constructor):

$this->add(new atkUrlAttribute("url", AF_VALIDATE_URL));

Adds a field 'url' to the node. When a URL is entered and saved, it will be validated.