|
From: mdw c. <myd...@li...> - 2001-09-03 12:54:45
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs/tools/events
Modified Files:
stats.php
Log Message:
Added the synopsys of two new functions that returns boxes.
This is done to provide much more stuff for building the website.
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/tools/events/stats.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- stats.php 2001/06/08 21:28:48 1.5
+++ stats.php 2001/09/03 12:54:44 1.6
@@ -141,4 +141,34 @@
}
}
+function get_whatsup_box($DBH)
+/*
+This function returns the "What's Up Box".
+That box would contains
+- last news posted
+- last comment posted
+- last page posted
+*/
+{
+ $BOX = '';
+
+ return ($BOX);
+}
+
+function get_global_stats_box($DBH)
+/*
+This function returns a box with number of
+elements in the site :
+- nr of piece of news recorded
+- nr of comments recorded
+- nr of pages recorded
+- nr of users
+- nr of pages viewed
+*/
+{
+ $BOX = '';
+
+ return ($BOX);
+}
+
?>
|