File indexing completed on 2024-11-24 05:19:13
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 ?>