Example #1
0
 public function rendBarEtPub()
 {
     $res = $this->model->rendBarEtPub();
     $tableau_partie = "";
     foreach ($res as $i => $partie) {
         $tableau_partie[$i] = $partie;
     }
     return $tableau_partie;
 }
Example #2
0
 public function rendNodeLePlusProche()
 {
     return $this->model->rendNodeLePlusProche();
 }
Example #3
0
 /**
  * Rend une liste des Barathons proposés
  * @return type
  */
 public function rendBarathonsProposes()
 {
     return $this->model->rendBarathonsProposes();
 }
Example #4
0
 public function ajouterBarPourBarathon()
 {
     return $this->model->ajouterBarPourBarathon();
 }
Example #5
0
 public function rendUserParLogin()
 {
     return $this->model->rendUserParLogin();
 }