![]() |
Documentación GVHIDRA 3.1.5
|
Métodos públicos | |
ActionForward ($name, $forward=null) | |
getName () | |
setName ($name) | |
getPath () | |
setPath ($path) | |
getRedirect () | |
setRedirect ($redirect) | |
put ($clave, $valor) | |
get ($clave) | |
Campos de datos | |
$_name | |
$_path | |
$_redirect = 0 | |
$_saco = null |
The ActionForward class represents a destination to which the ActionController might be directed to forward or redirect to, as a result of the processing activities of an Action class. Instances of this class may be created dynamically as necessary, or configured in association with an ActionMapping instance for named lookup of potentially multiple destinations for a particular ActionMapping instance.
An ActionForward has the following minimal set of properties. Additional properties can be provided as needed by subclasses.
Definición en la línea 24 del archivo ActionForward.php.
ActionForward | ( | $ | name, |
$ | forward = null |
||
) |
Create an ActionForward with the specified values.
public
string | $name | |
array | $forward |
Definición en la línea 51 del archivo ActionForward.php.
get | ( | $ | clave | ) |
Obtiene un valor en la coleccion
public
string | $clave | Clave de la coleccion |
Definición en la línea 142 del archivo ActionForward.php.
{
return($this->_saco[$clave]);
}
getName | ( | ) |
Get the name of the ActionForward.
public
Definición en la línea 69 del archivo ActionForward.php.
{
return $this->_name;
}
getPath | ( | ) |
Get the path of the ActionForward.
public
Definición en la línea 89 del archivo ActionForward.php.
{
return $this->_path;
}
getRedirect | ( | ) |
Get the redirect flag of the ActionForward.
public
Definición en la línea 109 del archivo ActionForward.php.
{
return $this->_redirect;
}
put | ( | $ | clave, |
$ | valor | ||
) |
Fija un valor en la coleccion
public
string | $clave | Clave del objeto en la coleccin |
string | $valor | Valor del objeto de la coleccin |
Definición en la línea 131 del archivo ActionForward.php.
{ $this->_saco[$clave] = $valor; }
setName | ( | $ | name | ) |
Set the name of the ActionForward.
public
string | $name |
Definición en la línea 79 del archivo ActionForward.php.
{ $this->_name = $name; }
setPath | ( | $ | path | ) |
Set the path of the ActionForward.
public
string | $path |
Definición en la línea 99 del archivo ActionForward.php.
{ $this->_path = $path; }
setRedirect | ( | $ | redirect | ) |
Set the redirect flag of the ActionForward.
public
integer | $redirect |
Definición en la línea 119 del archivo ActionForward.php.
{ $this->_redirect = $redirect; }
$_name |
Definición en la línea 29 del archivo ActionForward.php.
$_path |
Definición en la línea 33 del archivo ActionForward.php.
$_redirect = 0 |
Definición en la línea 37 del archivo ActionForward.php.
$_saco = null |
Definición en la línea 42 del archivo ActionForward.php.