summaryrefslogtreecommitdiff
path: root/appli_3_alpha_old/include/je.inc.php
blob: 08861d5e20c31ac76160b306634e91ef2e0273ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
require_once ('include/connect.inc.php');

	function traiter_formulaire_valider_modif_personnes()
	{

		$result = mysql_query("SELECT P.idP,P.courrielP FROM Appartenir A, Personne P WHERE P.idP = A.idP AND A.idL=".$_GET['idL']);
		if (mysql_num_rows($result)>=0)
		{
			//Fabrication des trois tableaux
			$tabOldPers = array();
			$tabOldPersMail = array();
			$tabNewPers = array();
			if (isset( $_GET['dataParticipants'] ) ) $tabNewPers = $_GET['dataParticipants'];
			for($i=0;$i<mysql_num_rows($result);$i++)
			{
				$row = mysql_fetch_array($result);
				$tabOldPers[$i] = $row[0];
				$tabOldPersMail[$i] = $row[1];
			}			
			//Boucle permettant de mettre a NULL les �lements identiques aux deux tableaux
			$i = 0;
			while ($i < count($tabOldPers))
			{
				$exist=false;
				for ($j=0;$j<count($tabNewPers);$j++)
				{
					if (($tabOldPers[$i] == $tabNewPers[$j]) or ($tabOldPersMail[$i] == $tabNewPers[$j]))  
					{
						$exist = true;
						$tabNewPers[$j]=NULL;
					}
				}
				if ($exist)
				{
					$tabOldPers[$i]=NULL;
					$tabOldPersMail[$i]=NULL;
				}
				$i++;
			}
		}
		
		//Construction du tableau des participants a ajouter
		$tabAdd = array();
		foreach ($tabNewPers as $pers)
		{
			//Si c'est une adresse Mail : Inscription + Ajout Sinon Ajour simplement
			if (!stristr($pers,'@')===false)
			{
				$tabAdd[] = new_pers($pers);
			}
			else
			{
				if ($pers != NULL)	$tabAdd[] = $pers;
			} 
		}
		//Enleve les redondances d'idP
		$tabAdd=array_unique($tabAdd);
		//Envoie a la fonction d'ajout de personne
		list_add_pers($tabAdd,$_GET['idL']);
		
		//Construction du tableau des participants a ajouter
		$tabRemove = array();
		foreach ($tabOldPers as $pers)
		{
			if ($pers != NULL)	$tabRemove[] = $pers;
		}
		//Envoie a la fonction de suppression de personne
		list_remove_pers($tabRemove,$_GET['idL']);
		
	}
	
	function list_add_pers ($tabPers,$idL)
	{
		foreach ($tabPers as $pers)
		{
			$result=mysql_query("INSERT INTO Appartenir (idP,idL) VALUES ($pers,$idL);");
		}

	}
	
	function list_remove_pers ($tabPers,$idL)
	{
		
		foreach ($tabPers as $pers)
		{
			$result = mysql_query("DELETE FROM Appartenir WHERE idP=$pers AND idL=$idL;");
		}
		
	}
	
	
	//Fonction Inscription qui prends en parametre une adresse mail $persMail et qui retourne l'id de la perssonne (s'il elle existe) 
	// ou Insert une personne et retourne son identifiant
	function new_pers ($persMail)
	{
		$result = mysql_query("SELECT idP,courrielP FROM Personne WHERE courrielP = '$persMail'");
		if (mysql_num_rows($result)>0)
		{
			$row = mysql_fetch_array($result);
			return ($row['idP']);
		}
		else
		{
			$result = mysql_query("INSERT INTO Personne (courrielP,loginP) VALUES ('$persMail','$persMail')");
			//return (mysql_insert_id($result));
			return (mysql_insert_id());
		}
			
		return (0);
	}
	
	
	
	//Fonction qui affiche toutes les liste public ainsi que les liste priv�e poss�d�es par idP
	function generate_html_array_list ($idP)
	{
		$result = mysql_query("SELECT idL,libelleL,estPrivee FROM Liste WHERE idP_Createur=$idP OR estPrivee='non' ORDER BY estPrivee");
		echo "<table>\n<tr>\n<th>Type</th>\n<th>Libell&eacute;</th>\n</tr>\n";	
		if (mysql_num_rows($result)>0)
		{
			
			for($i=0;$i<mysql_num_rows($result);$i++)
			{
				$row = mysql_fetch_array($result);
				echo "<tr>\n<td>";
				if ($row['estPrivee'] == 'oui') echo 'Priv&eacute;e' ; else echo 'Public';
				echo "</td>\n<td>";
				echo "<a href=\"#\" onclick=\"loadid('poppersonne.php?idR=2&amp;idL=".$row['idL']."&amp;idP_orga=$idP','poppersonne',true);popon('poppersonne')\">";
				echo $row['libelleL'];
				echo "</a>\n";
				echo "</td>\n</tr>\n";
			}
			
		}
		echo "</table>\n";
		
	}
?>