| 1 |
<?php |
<?php |
| 2 |
|
|
| 3 |
// $Id$ |
// $Id: glance.module,v 1.1 2008/05/12 18:02:14 malex Exp $ |
| 4 |
|
|
| 5 |
function glance_perm() |
function glance_perm() |
| 6 |
{ |
{ |
| 25 |
$cache = cache_get("glance_stats", 'cache'); |
$cache = cache_get("glance_stats", 'cache'); |
| 26 |
if($cache === 0 || trim($cache->data) == "" || $cache->created < (time() - 86400)) //Cache is invalid, please rebuild. |
if($cache === 0 || trim($cache->data) == "" || $cache->created < (time() - 86400)) //Cache is invalid, please rebuild. |
| 27 |
{ |
{ |
| 28 |
$out = "<p>Some data regarding your drupal site:</p>\n"; |
$out = "<p>" . t('Some information about this site:') . "</p>\n"; |
| 29 |
|
|
| 30 |
$num_users = 0; |
$num_users = 0; |
| 31 |
$users = array(); |
$users = array(); |