Thanks. Can I pass this data to a rockfinder-instance, and use rockfinder dump-method?
<?php namespace ProcessWire;
/** @var $rockfinder RockFinder3 */
$rf = $rockfinder->find("template=dummy");
$q = new DatabaseQuerySelect();
$result = $q->select('id, class, created')
->from('modules')
->execute();
//dump($result->fetchAll());
// how do pass $result->fetchAll() to $rf-variable?
$rf->dump();