| Line 99... |
Line 99... |
| 99 |
);
|
99 |
);
|
| 100 |
if ($this->depart > 0) {
|
100 |
if ($this->depart > 0) {
|
| 101 |
$donnees['entete']['href.precedent'] = $url_base . '/' . $this->serviceNom . '?'
|
101 |
$donnees['entete']['href.precedent'] = $url_base . '/' . $this->serviceNom . '?'
|
| 102 |
. 'navigation.depart=' . max(0, ($this->depart - $this->limite)) . '&navigation.limite=' . $this->limite
|
102 |
. 'navigation.depart=' . max(0, ($this->depart - $this->limite)) . '&navigation.limite=' . $this->limite
|
| 103 |
. '&retour.tri=' . $this->tri . '&retour.ordre=' . $this->tri_dir
|
103 |
. '&retour.tri=' . $this->tri . '&retour.ordre=' . $this->tri_dir
|
| 104 |
. '&' . $masqueEnParams;
|
104 |
. ($masqueEnParams ? '&' . $masqueEnParams : '');
|
| 105 |
}
|
105 |
}
|
| 106 |
if (($this->depart + $this->limite) < $total ) {
|
106 |
if (($this->depart + $this->limite) < $total ) {
|
| 107 |
$donnees['entete']['href.suivant'] = $url_base . '/' . $this->serviceNom . '?'
|
107 |
$donnees['entete']['href.suivant'] = $url_base . '/' . $this->serviceNom . '?'
|
| 108 |
. 'navigation.depart=' . ($this->depart + $this->limite) . '&navigation.limite=' . $this->limite
|
108 |
. 'navigation.depart=' . ($this->depart + $this->limite) . '&navigation.limite=' . $this->limite
|
| 109 |
. '&retour.tri=' . $this->tri . '&retour.ordre=' . $this->tri_dir
|
109 |
. '&retour.tri=' . $this->tri . '&retour.ordre=' . $this->tri_dir
|
| 110 |
. '&' . $masqueEnParams;
|
110 |
. ($masqueEnParams ? '&' . $masqueEnParams : '');
|
| 111 |
}
|
111 |
}
|
| 112 |
$donnees['resultat'] = $noms;
|
112 |
$donnees['resultat'] = $noms;
|
| Line 113... |
Line 113... |
| 113 |
|
113 |
|
| 114 |
return $donnees;
|
114 |
return $donnees;
|