Skip to main content
/
foograde
/
Establecer filtros en accion de forma manual, $this->setFilters()
Establecer filtros en accion de forma manual, $this->setFilters()
- 1 views
started by
Fernando Vega
on 17 Feb 11
#1
Fernando Vega
on 17 Feb 11
Si se recibe un parametro por get desde una acción o metodo se puede establecer el filtro simplemente mandando una array con el nombre del campo y el valor a establecer.
if($this->getRequestParameter('album_id'))
$this->setFilters(array('album_id'=> $this->getRequestParameter('album_id')));
Si se recibe un parametro por get desde una acción o metodo se puede establecer el filtro simplemente mandando una array con el nombre del campo y el valor a establecer.
if($this->getRequestParameter('album_id'))
$this->setFilters(array('album_id'=> $this->getRequestParameter('album_id')));
...
Cancel
#2
federico balderas
on 17 Feb 11
mames!
mames!
...
Cancel
To Top
Start a New Topic »
« Back to the foograde group
Start a New Topic
if($this->getRequestParameter('album_id'))
$this->setFilters(array('album_id'=> $this->getRequestParameter('album_id')));
To Top