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

0001 <?php
0002 class App_descriptionController extends EController {
0003   public function show ($args) {
0004     $cat = new RetrieveModel();
0005     EStructure::view("app_description",
0006      $cat->getCategories(),
0007      $cat->getSingleContentData($args[0]),
0008      $cat->getComments($args[0])
0009      );
0010   }
0011   public function leaveComment ($args) {
0012     $dat = new CommentsModel();
0013     $dat->leaveComment($args[0]);
0014   } 
0015 }
0016 ?>