Browse Source

Template tags for who added the post and for comments number on the homepage

pecesama 16 years ago
parent
commit
f1578c0a52
3 changed files with 21 additions and 9 deletions
  1. 17 5
      index.php
  2. 3 0
      themes/tumblr/template_details.htm
  3. 1 4
      themes/tumblr/template_regular_post.htm

+ 17 - 5
index.php View File

115
 								$register["description"] = $register["description"];
115
 								$register["description"] = $register["description"];
116
 
116
 
117
                                 $register["title"] = stripslashes($register["title"]);
117
                                 $register["title"] = stripslashes($register["title"]);
118
-                                $register["description"] = stripslashes($register["description"]);
119
-								
120
-								$comment = new comments();
118
+                                $register["description"] = stripslashes($register["description"]);								
121
 								
119
 								
122
                                 switch ($tumble->getType($register["id_post"])) {
120
                                 switch ($tumble->getType($register["id_post"])) {
123
                                         case "1":
121
                                         case "1":
124
-                                                $input = array("{Date_Added}", "{Permalink}", "{Title}", "{Body}", "{URL_Tumble}", "{Comments_Number}");
125
-                                                $output = array($formatedDate, $permalink, $register["title"], $register["description"], $conf->urlGelato, $comment->countComments($register["id_post"]));
122
+                                                $input = array("{Date_Added}", "{Permalink}", "{Title}", "{Body}", "{URL_Tumble}");
123
+                                                $output = array($formatedDate, $permalink, $register["title"], $register["description"], $conf->urlGelato, );
126
                                                                                         
124
                                                                                         
127
                                                 $template->cargarPlantilla($input, $output, "template_regular_post");
125
                                                 $template->cargarPlantilla($input, $output, "template_regular_post");
128
                                                 $template->mostrarPlantilla();
126
                                                 $template->mostrarPlantilla();
185
                                                 $template->mostrarPlantilla();
183
                                                 $template->mostrarPlantilla();
186
                                                 break;
184
                                                 break;
187
                                 }
185
                                 }
186
+								
187
+								
188
+								$comment = new comments();
189
+								$noComments = $comment->countComments($register["id_post"]);
190
+								
191
+								$user = new user();
192
+								$username = $user->getUserByID($register["id_user"]);
193
+								
194
+								
195
+								$input = array("{Permalink}", "{User}", "{Comments_Number}");
196
+								$output = array($permalink, $username["name"], $noComments);
197
+																		
198
+								$template->cargarPlantilla($input, $output, "template_details");
199
+								$template->mostrarPlantilla();
188
                         }
200
                         }
189
 
201
 
190
                         $p = new pagination;
202
                         $p = new pagination;

+ 3 - 0
themes/tumblr/template_details.htm View File

1
+	<div class="totalComments">
2
+        <h3>Posted by {User} - <a href="{Permalink}#comments">( {Comments_Number} ) comments</a></h3>
3
+    </div>	

+ 1 - 4
themes/tumblr/template_regular_post.htm View File

9
 				<div class="regular">
9
 				<div class="regular">
10
 					<h2><a href="{Permalink}">{Title}</a></h2>
10
 					<h2><a href="{Permalink}">{Title}</a></h2>
11
 					{Body}
11
 					{Body}
12
-				</div>
13
-				<div class="totalComments">
14
-					<h3><a href="{Permalink}#comments">( {Comments_Number} ) comments</a></h3>
15
-				</div>		
12
+				</div>					
16
 			</div>
13
 			</div>