Beispiel #1
0
 /**
  * Fonction permettant d'effectuer le comptage sur le dashboard 
  */
 public function dashboard()
 {
     $admin = new Model_Admin();
     $dashboardCountNews = $admin->countNews();
     $dashboardCountArticles = $admin->countArticles();
     $dashboardCountUsers = $admin->countUsers();
     /*$dashboardCountComments = $admin->countComments();*/
     require_once $_SERVER['DOCUMENT_ROOT'] . "/ecommerce/views/admin/home.php";
 }