Ejemplo n.º 1
0
Archivo: sti.php Proyecto: AF83/morm
 public function mormTearDown()
 {
     $this->sql->queryDB(OtherUser::dropTable());
 }
Ejemplo n.º 2
0
 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));
 }