コード例 #1
0
ファイル: posts.php プロジェクト: justinnjoh/trackeros
 public function assignedtome()
 {
     // get posts assigned to a user
     $u = new Post_Model($this->template, $this->router->query_string);
     $u->assigned_to_me($this->router->id, null);
     $this->set_view("my_posts");
     $this->template->render(null, "html");
 }