File indexing completed on 2024-05-12 17:26:17

0001 <?php
0002 class SearchController extends EController {
0003   public function search ($args) {
0004     $cat = new RetrieveModel();
0005     $dat = new SearchModel();
0006     EStructure::view("search", $cat->getCategories(), $dat->search());
0007 
0008   }
0009 }
0010 ?>