Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 985 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php
class Statuts extends Eflore {
                
        public function getStatuts($nn) {
                $tpl = Config::get('statutsTpl');
                $params = array('projet' => 'sptb','id' => $nn);
                $url = $this->formaterUrl($tpl, $params);
                return $this->chargerDonnees($url);
        }
        
        public function getStatutsZoneGeo($nn) {
                $tpl = Config::get('statutsZoneGeoTpl');
                $params = array('projet' => 'sptb','id' => $nn);
                $url = $this->formaterUrl($tpl, $params);
                return $this->chargerDonnees($url);
        }
}