Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 475 → Rev 476

/trunk/modules/popup_illustrations/PopupIllustrations.php
New file
0,0 → 1,49
<?php
/**
* Service fournissant une popup
* Encodage en entr�e : ISO-8859-15
* Encodage en sortie : ISO-8859-15
* Cas d'utilisation :
*
* @author David DELON <david.delon@clapas.net>abstract
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
* @version $Id$
* @copyright 2007
*/
 
class PopupIllustrations extends aControleur {
private $conteneur = null;
private $id_image = '';
public function initialiser() {
$this->capturerParametres();
$this->conteneur = new Conteneur();
$this->images = $this->conteneur->getApiImages();
}
private function capturerParametres() {
if (isset($_GET['id'])) {
$this->id_image = $_GET['id'];
}
}
public function executerActionParDefaut() {
$this->executerFiche();
}
public function executerFiche(){
$cel = array();
$this->images->setProjet('cel');
$images = $this->images->getInfosImageParIdImage($this->id_image);
$cel['id'] = $this->id_image;
$cel['image'] = $images;
header('Content-type: text/html');
print_r($this->getVue('popup_fiche_illustrations', $cel));
exit;
}
 
}
?>