Implements interfaces:
Abstract class for Zend_View to help enforce private constructs.
Located in /Zend/View/Abstract.php (line 39)
Class | Description |
---|---|
![]() |
Concrete class for handling view scripts. |
Constructor.
Add one or more filters to the stack in FIFO order.
Adds to the stack of filter paths in LIFO order.
Adds to the stack of helper paths in LIFO order.
Adds to the stack of view script paths in LIFO order.
Assigns variables to the view script via differing strategies.
Zend_View::assign('name', $value) assigns a variable called 'name' with the corresponding $value.
Zend_View::assign($array) assigns the array keys as variable names (with the corresponding array values).
Clear all assigned variables
Clears all variables assigned to Zend_View either via assign() or property overloading (__set()).
Escapes a value for output in a view script.
If escaping mechanism is one of htmlspecialchars or htmlentities, uses $_encoding setting.
Return associative array of path types => paths
Return current escape encoding
Return the template engine object
Returns the object instance, as it is its own template engine
Returns an array of all currently set filter paths
Returns an array of all currently set helper paths
Returns an array of all currently set script paths
Return list of all assigned variables
Returns all public properties of the object. Reflection is not used here as testing reflection properties for visibility is buggy.
Processes a view script and returns the output.
Set encoding to use with htmlentities() and htmlspecialchars()
Sets the _escape() callback.
Resets the filter stack.
To clear all filters, use Zend_View::setFilter(null).
Resets the stack of filter paths.
To clear all paths, use Zend_View::setFilterPath(null).
Resets the stack of helper paths.
To clear all paths, use Zend_View::setHelperPath(null).
Resets the stack of view script paths.
To clear all paths, use Zend_View::setScriptPath(null).
Use to include the view script in a scope that only allows public members.
Finds a view script from the available directories.
Accesses a helper object from within a script.
Allows testing with empty() and isset() to work inside templates.
Directly assigns a variable to the view script.
Checks first to ensure that the caller is not attempting to set a protected or private member (by checking for a prefixed underscore); if not, the public member is set; otherwise, an exception is raised.
Allows unset() on object properties to work
Documentation generated on Wed, 21 Feb 2007 11:45:17 -0800 by phpDocumentor 1.3.1