This function fetch a multipe row from a table. See below format
App::InformationSet(NAME)->findAll(CONDITION);
We can pass condition of WHERE clause as parameter of the function.
For example:
$data = App::InformationSet('blogpost')->findAll();
$data = App::InformationSet('blogpost')->findAll("title LIKE '%how%'");
// Return value
/*
Array
(
[data] => Array
(
[0] => Array
(
[id] => 1
[adminref] => 1
[entrydate] => 2012-12-12 22:23:41
[lastmodified] => 2012-12-14 00:13:02
[title] => How to install Application
[category] => 2
[description] => Application is one of the easiest solutions to incorporate new features
[status] => Public
)
)
)
*/