X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fstats-functions.php;h=149e6820f27625f693398d028a52d53d1b07813a;hb=513fdc80ff9a624aafc31dcc52a0ee740a6c1448;hp=a6308e25b3518527a1f868ef39a197ebbebdfeab;hpb=8fad776382e63b3f73f8dbe289f229d79cfc2c22;p=mailer.git diff --git a/inc/stats-functions.php b/inc/stats-functions.php index a6308e25b3..149e6820f2 100644 --- a/inc/stats-functions.php +++ b/inc/stats-functions.php @@ -51,11 +51,11 @@ function initStatsSystem () { loadStatsTable(); // Stats are loaded! - $GLOBALS['stats_loaded'] = true; + $GLOBALS['stats_loaded'] = TRUE; } // END - if } -// Checks if we have a statistics entry +// Checks if a statistics entry has been set function isStatsEntrySet ($entry) { // Is there the entry? return (isset($GLOBALS['stats'][$entry])); @@ -102,7 +102,7 @@ function setStatsEntry ($entry, $value) { // Loads stats table function loadStatsTable () { // Check if the link is up - if (!SQL_IS_LINK_UP()) return false; + if (!SQL_IS_LINK_UP()) return FALSE; // Is it there for today? if (!isStatsTableCreated()) { @@ -111,7 +111,7 @@ function loadStatsTable () { } // END - if // Load it from database - $result = SQL_QUERY_ESC("SELECT `stats_entry`,`stats_value` FROM `{?_MYSQL_PREFIX?}_stats_%s` ORDER BY `stats_entry` ASC", + $result = SQL_QUERY_ESC("SELECT `stats_entry`, `stats_value` FROM `{?_MYSQL_PREFIX?}_stats_%s` ORDER BY `stats_entry` ASC", array( generateDateTime(time(), '6') ), __FUNCTION__, __LINE__); @@ -128,7 +128,7 @@ function loadStatsTable () { // Checks if the the statistics table is created function isStatsTableCreated () { // Check if the link is up - if (!SQL_IS_LINK_UP()) return false; + if (!SQL_IS_LINK_UP()) return FALSE; // Ask for it $result = SQL_QUERY_ESC("SHOW TABLES LIKE '{?_MYSQL_PREFIX?}_stats_%s'", @@ -141,7 +141,7 @@ function isStatsTableCreated () { // Create the dummy table function createStatsTable () { // Check if the link is up - if (!SQL_IS_LINK_UP()) return false; + if (!SQL_IS_LINK_UP()) return FALSE; // Create it here $result = SQL_QUERY_ESC("CREATE TEMPORARY TABLE IF NOT EXISTS `{?_MYSQL_PREFIX?}_stats_%s` ( @@ -155,14 +155,14 @@ PRIMARY KEY (`stats_entry`) // Write all entries to the table function writeStatsTable () { // Check if the link is up - if (!SQL_IS_LINK_UP()) return false; + if (!SQL_IS_LINK_UP()) return FALSE; // Empty the table first SQL_QUERY_ESC("TRUNCATE `{?_MYSQL_PREFIX?}_stats_%s`", array(generateDateTime(time(), '6')), __FUNCTION__, __LINE__); // Begin the SQL command - $sql = sprintf("REPLACE INTO `{?_MYSQL_PREFIX?}_stats_%s` (`stats_entry`,`stats_value`) VALUES ", + $sql = sprintf("REPLACE INTO `{?_MYSQL_PREFIX?}_stats_%s` (`stats_entry`, `stats_value`) VALUES ", generateDateTime(time(), '6')); // Add all entries to the final query