17 lines
389 B
PHP
17 lines
389 B
PHP
<?php
|
|
class DashboardController extends Controller {
|
|
public function index() {
|
|
$habit = new Habit();
|
|
$habits = $habit->getHabitsByUser($_SESSION['user']['id']);
|
|
|
|
$this->view('dashboard/index', [
|
|
'title' => 'Dashboard',
|
|
'habits' => $habits,
|
|
]);
|
|
}
|
|
|
|
public function reroute(){
|
|
$this->redirect('/dashboard');
|
|
}
|
|
}
|