Subversion Repositories eFlore/Applications.cel

Rev

Rev 3521 | Rev 3569 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3521 Rev 3556
Line 250... Line 250...
250
		$requete .= ' ORDER BY '.(isset($this->orderby) && (!is_null($this->orderby)) ? $this->orderby  :
250
		$requete .= ' ORDER BY '.(isset($this->orderby) && (!is_null($this->orderby)) ? $this->orderby  :
251
			'date_modification DESC, zone_geo ASC').' '.
251
			'date_modification DESC, zone_geo ASC').' '.
252
				"LIMIT $this->start,$this->limit ";
252
				"LIMIT $this->start,$this->limit ";
Line 253... Line 253...
253
 
253
 
254
		$elements = Cel::db()->requeter($requete);
-
 
-
 
254
		$elements = Cel::db()->requeter($requete);
255
 
255
print_r($elements);exit;
256
		// Création du contenu
256
		// Création du contenu
257
		if ($elements != false && count($elements) > 0) {
257
		if ($elements != false && count($elements) > 0) {
258
			$contenu = $this->executerService($elements);
258
			$contenu = $this->executerService($elements);
259
		} else {
259
		} else {
Line 594... Line 594...
594
		} else {
594
		} else {
595
			$intitule = $courriel;
595
			$intitule = $courriel;
596
		}
596
		}
597
		return $intitule;
597
		return $intitule;
598
	}
598
	}
599
}
-
 
600
599
}
-
 
600