Exemplo n.º 1
0
 /**
  * Return file subcategories by Area ID in JSON format
  * Used with autocompleter
  *
  * @param   integer $id Area ID
  * @return  void
  */
 public function subcategories($id)
 {
     $files = new File_model();
     $view = new X4View_core('json');
     $view->result = $files->get_subcat($id, $_POST['subcategory']);
     $view->render(TRUE);
 }