MTrackWeb/Project.php
[web.mtrack] / MTrackWeb / Project.php
1 <?php
2
3 class MTrackWeb_Project extends MTrackWeb
4 {
5     
6     //function getAuth-- inherit
7     
8     function get($code='') {
9         
10         if (isset($_REQUEST['active_project_id'])) {
11             $this->currentProject($_REQUEST['active_project_id']);
12             return $this->jok($this->currentProject());
13         }
14         
15         die("TODO - what happens when you go to a project page..")
16         
17     }
18     
19 }