Helper Interface. More...
Inheritance diagram for axHelper:Public Member Functions | |
| setAttributes ($attributes) | |
| Set any number of attributes at once. | |
| setValue ($value) | |
| Set the node's value. | |
| getValue () | |
| Get the node's value (if any) | |
| appendChild ($node) | |
| Appends a node to current node and return it. | |
| prependCHild ($node) | |
| Prepend a node to the current node and return it. | |
| __toString () | |
| __toString implementation | |
Helper Interface.
Interface to be implemented by all HTML helpers.
Definition at line 18 of file axHelper.class.php.
__toString implementation
Get a string represenation of current node and its children.
Implemented in axTableRowGroupHelper, axTableHelper, and axBaseHelper.
| axHelper::appendChild | ( | $ | node | ) |
Appends a node to current node and return it.
| mixed | $node | An axHelper instance or a string (or anything with a __toString implementation) |
Implemented in axBaseHelper, axInputHelper, and axColHelper.
Get the node's value (if any)
Implemented in axFormLineHelper, axBaseHelper, axSelectHelper, axOptionHelper, and axInputHelper.
| axHelper::prependCHild | ( | $ | node | ) |
Prepend a node to the current node and return it.
| mixed | $node | An axHelper instance or a string (or anything with a __toString implementation) |
| axHelper::setAttributes | ( | $ | attributes | ) |
Set any number of attributes at once.
| array | $attributes |
Implemented in axBaseHelper.
| axHelper::setValue | ( | $ | value | ) |
Set the node's value.
| mixed | $value |
Implemented in axFormLineHelper, axBaseHelper, axCheckboxGroupHelper, axInputHelper, axSelectHelper, axColHelper, and axOptionHelper.