Class: atkPHPView
Source Location: /ui/class.atkphpview.inc
Class atkPHPView
Method Summary
| mixed |
__call() |
Allows closures in the template variables to be called. |
| void |
__get() |
Returns the template variable with the given name. |
| boolean |
__isset() |
Checks whatever the given template variable is set / exists. |
Methods
atkPHPView __construct(
string
$path, array
$vars
)
|
|
Constructor.
Parameters:
|
string |
$path: |
template path |
|
array |
$vars: |
template variables (name/value) |
API Tags:
mixed __call(
string
$name, array
$args
)
|
|
Allows closures in the template variables to be called.
Parameters:
|
string |
$name: |
function name |
|
array |
$args: |
function arguments |
API Tags:
| Return: | function result |
| Access: | public |
void __get(
string
$name
)
|
|
Returns the template variable with the given name.
Parameters:
|
string |
$name: |
template variable name |
API Tags:
boolean __isset(
string
$name
)
|
|
Checks whatever the given template variable is set / exists.
Parameters:
|
string |
$name: |
template variable name |
API Tags:
| Return: | is variable set? |
| Access: | public |