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