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