webmaster@0
|
1 <?php |
webmaster@0
|
2 setlocale(LC_ALL, "fr_FR.utf8@euro", "fr_FR.utf8"); |
webmaster@0
|
3 include("classes.php"); |
webmaster@0
|
4 $type = $_GET['type']; |
webmaster@0
|
5 $year = $_GET['year']; |
webmaster@0
|
6 $month = $_GET['month']; |
webmaster@0
|
7 $prevMonth = ($month - 1)%12; if($prevMonth == 0) $prevMonth = 12; $prevYear = ($month == 1)?$year-1:$year; |
webmaster@0
|
8 $nextMonth = $month % 12 + 1; $nextYear = ($month == 12)?$year+1:$year; |
webmaster@0
|
9 $Data = new DataAccess; |
webmaster@0
|
10 include("top.php"); |
webmaster@0
|
11 $Data->Connect(); |
webmaster@0
|
12 if($type != "cal") |
webmaster@0
|
13 $Data->Query("SELECT * FROM Mess Where num_version='Version 10' ORDER BY num_mess DESC"); |
webmaster@0
|
14 else |
webmaster@0
|
15 $Data->Query("SELECT * FROM Mess WHERE YEAR(DatePost)={$year} AND MONTH(DatePost)={$month} ORDER BY num_mess DESC"); |
webmaster@0
|
16 $i=0; |
webmaster@0
|
17 if($type == "cal") { |
webmaster@0
|
18 echo("<div class='cal'>"); |
webmaster@0
|
19 if($prevYear > $startDate['year'] - 1 || ($prevYear > $startDate['Year'] - 2 && $prevMonth > $startDate['month'] - 1)) |
webmaster@0
|
20 echo("<a class='calPrev' href='/blog/posts/{$prevYear}/{$prevMonth}'>{$arMonth[$prevMonth - 1]} {$prevYear}</a>"); |
webmaster@0
|
21 else |
webmaster@0
|
22 echo("<a class='calPrev'>{$arMonth[$prevMonth - 1]} {$prevYear}</a>"); |
webmaster@0
|
23 if(($curYear == $nextYear && $nextMonth < $curMonth + 1) || ($nextYear < $curYear) ) |
webmaster@0
|
24 echo("<a class='calNext' href='/blog/posts/{$nextYear}/" . ($month % 12 + 1) ."'>{$arMonth[$month%12]} {$nextYear}</a>"); |
webmaster@0
|
25 else |
webmaster@0
|
26 echo("<a class='calNext'>{$arMonth[$month%12]} {$nextYear}</a>"); |
webmaster@0
|
27 echo("{$arMonth[$month - 1]} {$year}</div> "); |
webmaster@0
|
28 } |
webmaster@0
|
29 while(($row=$Data->GetRow()) && ($i++<10 || $type == "cal")) { |
webmaster@0
|
30 $mood = ''; |
webmaster@0
|
31 $Mess=$Data->utf8_ensure(str_replace("<P>","<p>",str_replace("</P>","</p>", $row['Message']))); |
webmaster@0
|
32 $dateFormatee = strftime("%A %d %B %Y, %Hh%M", strtotime($row['DatePost'])); |
webmaster@0
|
33 $Titre = $Data->utf8_ensure($row['Titre']); |
webmaster@0
|
34 $Titre_url = str_replace(" ", "_", strip_tags($Titre)); |
webmaster@0
|
35 $Titre_url = str_replace("-", "_", $Titre_url); |
webmaster@0
|
36 $Titre_url = str_replace(array("é", "è"), "e", $Titre_url); |
webmaster@0
|
37 $Titre_url = str_replace("à", "a", $Titre_url); |
webmaster@0
|
38 $Titre_url = str_replace("ù", "u", $Titre_url); |
webmaster@0
|
39 $Titre_url = str_replace(array("î", "ï"), "i", $Titre_url); |
webmaster@0
|
40 if(!empty($row['Emot'])) { |
webmaster@0
|
41 $mood = "<img src='/blog/mood/{$row['Emot']}.png' alt='Mood : {$row['Emot']}' class='mood' />"; |
webmaster@0
|
42 $row['Emot'] = " " . $row['Emot']; |
webmaster@0
|
43 } |
webmaster@0
|
44 echo(" |
webmaster@0
|
45 <div class='PostContent{$row['Emot']}'> |
webmaster@0
|
46 <h2>{$Titre} | <span class='Date'>{$dateFormatee}</span></h2> |
webmaster@0
|
47 {$mood} |
webmaster@0
|
48 {$Mess}<br /> |
webmaster@0
|
49 <a href=\"/blog/posts/{$row['num_mess']}-{$Titre_url}\">#{$row['num_mess']}</a> - |
webmaster@0
|
50 <a href=\"/blog/posts/{$row['num_mess']}-{$Titre_url}\"> |
webmaster@0
|
51 "); |
webmaster@0
|
52 if(!is_null($row['NbCommentaires']) && $row['NbCommentaires']!=0) |
webmaster@0
|
53 echo("Un 'tit commentaire ( {$row['NbCommentaires']} ) ?"); |
webmaster@0
|
54 else |
webmaster@0
|
55 echo("Un 'tit commentaire ?"); |
webmaster@0
|
56 echo(" |
webmaster@0
|
57 </a>"); |
webmaster@0
|
58 $nb = $Data->debugQuery(" |
webmaster@0
|
59 SELECT T.Tag |
webmaster@0
|
60 FROM Tags T, Lien_Tags_Posts L |
webmaster@0
|
61 WHERE L.idMess={$row['num_mess']} AND L.idTag = T.idTag |
webmaster@0
|
62 ORDER BY T.Tag |
webmaster@0
|
63 ", 2); |
webmaster@0
|
64 if($nb > 0) |
webmaster@0
|
65 { |
webmaster@0
|
66 $tags = ''; |
webmaster@0
|
67 while(0 !== ($tag = $Data->GetRow(2))) |
webmaster@0
|
68 $tags .= " <a href='/blog/tags/{$tag['Tag']}'>{$tag['Tag']}</a> -"; |
webmaster@0
|
69 $tags = substr($tags, 0, -1); |
webmaster@0
|
70 echo(" ; <em>Tags</em> : {$tags}"); |
webmaster@0
|
71 } |
webmaster@0
|
72 echo(" |
webmaster@0
|
73 |
webmaster@0
|
74 </div>"); |
webmaster@0
|
75 } |
webmaster@0
|
76 if($type == "cal") { |
webmaster@0
|
77 echo("<div class='cal'>"); |
webmaster@0
|
78 if($prevYear > $startDate['year'] - 1 && $prevMonth > $startDate['month'] - 1) |
webmaster@0
|
79 echo("<a class='calPrev' href='/blog/posts/{$prevYear}/{$prevMonth}'>{$arMonth[$prevMonth - 1]} {$prevYear}</a>"); |
webmaster@0
|
80 else |
webmaster@0
|
81 echo("<a class='calPrev'>{$arMonth[$prevMonth - 1]} {$prevYear}</a>"); |
webmaster@0
|
82 if(($curYear == $nextYear && $nextMonth < $curMonth + 1) || ($nextYear < $curYear) ) |
webmaster@0
|
83 echo("<a class='calNext' href='/blog/posts/{$nextYear}/" . ($month % 12 + 1) ."'>{$arMonth[$month%12]} {$nextYear}</a>"); |
webmaster@0
|
84 else |
webmaster@0
|
85 echo("<a class='calNext'>{$arMonth[$month%12]} {$nextYear}</a>"); |
webmaster@0
|
86 echo("{$arMonth[$month - 1]} {$year}</div> "); |
webmaster@0
|
87 } |
webmaster@0
|
88 $Data->Close(); |
webmaster@0
|
89 include("foot.php"); |
webmaster@0
|
90 ?> |