Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1381 Rev 1382
Line 387... Line 387...
387
	public static function trierTableauMd($array, $cols) {
387
	public static function trierTableauMd($array, $cols) {
388
		$colarr = array();
388
		$colarr = array();
389
		foreach ($cols as $col => $order) {
389
		foreach ($cols as $col => $order) {
390
		$colarr[$col] = array();
390
		$colarr[$col] = array();
391
			foreach ($array as $k => $row) {
391
			foreach ($array as $k => $row) {
392
				$colarr[$col]['_'.$k] = strtolower(self::supprimerAccents($row[$col], encodage_appli));
392
				$colarr[$col]['_'.$k] = strtolower(self::supprimerAccents($row[$col]));
393
			}
393
			}
394
		}
394
		}
395
		$params = array();
395
		$params = array();
396
		foreach ($cols as $col => $order) {
396
		foreach ($cols as $col => $order) {
397
			$params[] =& $colarr[$col];
397
			$params[] =& $colarr[$col];