Beispiel #1
0
Datei: sti.php Projekt: AF83/morm
 public function mormTearDown()
 {
     $this->sql->queryDB(OtherUser::dropTable());
 }
 public function handleRequest()
 {
     $otheruser = OtherUser::find(array('idusers' => $_GET['idusers']));
     $areWeFriend = OtherUser::areWeFriends(array('idusers' => $_GET['idusers']));
     render('otheruser', array('title' => 'My Profile', 'otheruser' => $otheruser, 'areWeFriend' => $areWeFriend));
 }