Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1741 Rev 1754
Line 145... Line 145...
145
			   // TODO: importable = FALSE car pas de merge de données importées
145
			   // TODO: importable = FALSE car pas de merge de données importées
146
			   'ordre'				=> self::GenColInfo('ordre', 'Ordre', 1, NULL, NULL, FALSE),
146
			   'ordre'				=> self::GenColInfo('ordre', 'Ordre', 1, NULL, NULL, FALSE),
147
			   'id_observation'		=> self::GenColInfo('id_observation', 'Identifiant', 1, NULL, NULL, FALSE),
147
			   'id_observation'		=> self::GenColInfo('id_observation', 'Identifiant', 1, NULL, NULL, FALSE),
Line 148... Line 148...
148
 
148
 
149
			   'mots_cles_texte'	=> self::GenColInfo('mots_cles_texte', 'Mots Clés', 1),
-
 
150
			   'commentaire'		=> self::GenColInfo('commentaire', 'Commentaires', 1),
149
			   'mots_cles_texte'	=> self::GenColInfo('mots_cles_texte', 'Mots Clés', 1),
151
			   'date_creation'		=> self::GenColInfo('date_creation', 'Date Création', 1, NULL, NULL, FALSE),
150
			   'date_creation'		=> self::GenColInfo('date_creation', 'Date Création', 1, NULL, NULL, FALSE),
Line 152... Line 151...
152
			   'date_modification'	=> self::GenColInfo('date_modification', 'Date Modification', 1, NULL, NULL, FALSE),
151
			   'date_modification'	=> self::GenColInfo('date_modification', 'Date Modification', 1, NULL, NULL, FALSE),
153
 
152
 
Line 304... Line 303...
304
	*		  La fonction doit prendre comme arguments ($cel, $obs, &$ligne_formatee)
303
	*		  La fonction doit prendre comme arguments ($cel, $obs, &$ligne_formatee)
305
	*/
304
	*/
306
	static function GenColInfo($abbrev, $nom, $is_extra = 0, $fonction = NULL, $fonction_data = NULL, $importable = TRUE, $preload = NULL, $fonction_dynamique = NULL) {
305
	static function GenColInfo($abbrev, $nom, $is_extra = 0, $fonction = NULL, $fonction_data = NULL, $importable = TRUE, $preload = NULL, $fonction_dynamique = NULL) {
307
		return Array('abbrev' => $abbrev,
306
		return Array('abbrev' => $abbrev,
308
					 'nom' => $nom,
307
					 'nom' => $nom,
309
					 'extra' => $is_extra ? 1 : 0,
308
					 'extra' => $is_extra,
310
					 'fonction' => $fonction,
309
					 'fonction' => $fonction,
311
					 'fonction_data' => $fonction_data,
310
					 'fonction_data' => $fonction_data,
312
					 'importable' => $importable,
311
					 'importable' => $importable,
313
					 'preload' => $preload,
312
					 'preload' => $preload,
314
					 'dyna' => $fonction_dynamique,
313
					 'dyna' => $fonction_dynamique,