on * TOOL_.class.php * See lp_list_search for an example of calling the process. * * @package chamilo.include.search */ abstract class search_processor { /** * Search engine api results. */ protected $rows = []; /** * Process the data sorted by the constructor. */ abstract protected function process(); }