Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 1175 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1175 Rev 1285
Line 100... Line 100...
100
				$this->champs_recherches = " baseflor, rangSup ";
100
				$this->champs_recherches = " baseflor, rangSup ";
101
				$this->requete_condition[] = " `bdnt.nn` = '{$retour[0]}'  ";
101
				$this->requete_condition[] = " `bdnt.nn` = '{$retour[0]}'  ";
102
			} else {
102
			} else {
103
				$e = 'Erreur dans l\'url de votre requête : </br> La ressource demandée n\'existe pas.';
103
				$e = 'Erreur dans l\'url de votre requête : </br> La ressource demandée n\'existe pas.';
104
				throw new Exception($e, RestServeur::HTTP_CODE_MAUVAISE_REQUETE);
104
				throw new Exception($e, RestServeur::HTTP_CODE_MAUVAISE_REQUETE);
105
				break;
-
 
106
			}
105
			}
107
		}		
106
		}		
108
	}
107
	}
Line 282... Line 281...
282
	
281
	
283
	static function retournerRequeteJointure($join) {
282
	static function retournerRequeteJointure($join) {
284
		return $join ? implode(' ', $join) : '';
283
		return $join ? implode(' ', $join) : '';
Line 285... Line -...
285
	}
-
 
286
	
284
	}
-
 
285