コード例 #1
0
ファイル: Bars.php プロジェクト: nbaudet/OGO_projetBarathon
 public function rend()
 {
     $res = $this->model->rend();
     $tableau_partie = "";
     foreach ($res as $i => $partie) {
         $tableau_partie[$i] = $partie;
     }
     return $tableau_partie;
 }
コード例 #2
0
ファイル: Users.php プロジェクト: nbaudet/OGO_projetBarathon
 public function rend()
 {
     $res = $this->model->rend();
     return $res;
     /*$tableau_users = "";
     	foreach($res as $i => $user){
     	    $tableau_users = $user;
     	}
     	return $tableau_users;*/
 }
コード例 #3
0
ファイル: Ways.php プロジェクト: nbaudet/OGO_projetBarathon
 /**
  * Rend tous les Barathons en BD
  * @return type
  */
 public function rend()
 {
     return $this->model->rend();
 }