Subversion Repositories Applications.referentiel

Compare Revisions

Ignore whitespace Rev 324 → Rev 325

/trunk/interfaces/controleurs/AppliControleur.php
263,6 → 263,16
return $url;
}
protected function obtenirUrlDetailReferentielTelechargement($referentiel) {
$this->url->setRequete(false);
$this->url->setVariableRequete('module', 'Informations');
$this->url->setVariableRequete('action', 'telecharger');
$this->url->setVariableRequete('ref', $referentiel);
$url = $this->url->getURL();
$this->url->unsetVariablesRequete(array('module', 'action', 'ref'));
return $url;
}
protected function obtenirUrlMenuInformations($referentiel) {
return $this->obtenirUrlMenu('Informations', $referentiel);
}