Inheritance diagram for GenieGate_View_Php:


Public Member Functions | |
| GenieGate_View_Php ($page, $tpl=FALSE) | |
| Construct a view. | |
| display () | |
| Display the view. | |
| input ($name, $value="", $sz=20, $type="TEXT") | |
| Create an INPUT tag. | |
| passThrough ($skip=array()) | |
| Passes form variables on. | |
| param ($param=FALSE, $value=FALSE) | |
| Get/Set a named parameter. | |
| getLink ($qry=array()) | |
| Returns a link to this page. | |
Public Attributes | |
| $page | |
| the PHP document that will be included. | |
| $shell_template | |
| Shell template, view will use this, (if set to something) to "wrap" the results in, this is a handy place to put header and footer HTML code. | |
This is just a glorified include() that provides view methods to the underlying PHP document, and a notion of a "shell" that provides a handy place to store global HEADERS/FOOTERS etc..
Definition at line 13 of file Php.php.
|
||||||||||||
|
Construct a view.
|
|
|
Display the view. In this case, does nothing. (a "blank" view for Controller methods that "cheat" by sending output themselves.) Reimplemented from GenieGate_View. |
|
|
Returns a link to this page.
|
|
||||||||||||||||||||
|
Create an INPUT tag.
|
|
||||||||||||
|
Get/Set a named parameter. With no parameters, returns an associative array of all the available parameters. (Same as $view->PARAM, but encapsulated) With 1 parameter, ($param) just returns the value of the named parameter. With 2 parameters, assigns $param a new value (returns old value).
Definition at line 36 of file View.php. Referenced by GenieGate_View_XMLExport::display(). |
|
|
Passes form variables on. Create series of HTML HIDDEN input variables for all the current form variables, except those found in $skip.
|
Documentation generated by DoxyGen