about summary refs log tree commit diff stats
path: root/data/LL1.yaml
Commit message (Expand)AuthorAgeFilesLines
* Wondrous FIRE should be midred in panel shuffleStar Rauchenberger2023-06-031-1/+1
* Reveal snipes in panel shuffleStar Rauchenberger2023-06-021-6/+3
* Report achievements to AP using data storage (for tracker)Star Rauchenberger2023-05-211-0/+24
* Create "The Wanderer"Star Rauchenberger2023-05-051-1/+1
* ZERO was still marked as blackStar Rauchenberger2023-04-211-1/+1
* Never mind, we are not shuffling the mandatory wall snipesStar Rauchenberger2023-04-211-6/+6
* OPEN and FOURTH are now displaced as wellStar Rauchenberger2023-04-211-9/+9
* Art gallery ORDER is now set to the randomized subpanelsStar Rauchenberger2023-04-191-4/+4
* Move ZERO in front of the black wallStar Rauchenberger2023-04-191-3/+3
* Signs get updated in panel shuffle modeStar Rauchenberger2023-04-191-3/+11
* Set some more static panelsStar Rauchenberger2023-04-191-6/+6
* Set up some static panelsStar Rauchenberger2023-04-181-6/+6
* Prevented shuffling LOW and SECRETStar Rauchenberger2023-04-181-2/+2
* Added painting shufflingStar Rauchenberger2023-04-181-1/+1
* Implemented panel shuffleStar Rauchenberger2023-04-161-9/+71
* Implemented color shuffleStar Rauchenberger2023-04-161-0/+2739
/* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?php
/*
       444444444  
      4::::::::4  
     4:::::::::4  
    4::::44::::4  
   4::::4 4::::4   Four Island
  4::::4  4::::4  
 4::::4   4::::4   Written and maintained by Starla Insigna
4::::444444::::444
4::::::::::::::::4  admin/welcome.php
4444444444:::::444
          4::::4   Please do not use, reproduce or steal the
          4::::4   contents of this file without explicit
          4::::4   permission from Hatkirby.
        44::::::44
        4::::::::4
        4444444444
*/

if (!defined('S_INCLUDE_FILE')) {define('S_INCLUDE_FILE',1);}

require('headerproc.php');

$category = 'home';

$template = new FITemplate('admin/welcome');

$cntposts = "SELECT COUNT(*) FROM updates";
$cntposts2 = mysql_query($cntposts);
$cntposts3 = mysql_fetch_array($cntposts2);
$template->add('POSTS', $cntposts3['COUNT(*)']);

$cntpending = "SELECT COUNT(*) FROM pending";
$cntpending2 = mysql_query($cntpending);
$cntpending3 = mysql_fetch_array($cntpending2);
$template->add('PENDING', $cntpending3['COUNT(*)']);

$cntdrafts = "SELECT COUNT(*) FROM drafts";
$cntdrafts2 = mysql_query($cntdrafts);
$cntdrafts3 = mysql_fetch_array($cntdrafts2);
$template->add('DRAFTS', $cntdrafts3['COUNT(*)']);

$cntcomments = "SELECT COUNT(*) FROM moderation";
$cntcomments2 = mysql_query($cntcomments);
$cntcomments3 = mysql_fetch_array($cntcomments2);
$template->add('COMMENTS', $cntcomments3['COUNT(*)']);

$cntpolls = "SELECT COUNT(*) FROM polloftheweek";
$cntpolls2 = mysql_query($cntpolls);
$cntpolls3 = mysql_fetch_array($cntpolls2);
$template->add('POLLS', $cntpolls3['COUNT(*)']);

$cntquotes = "SELECT COUNT(*) FROM rash_quotes";
$cntquotes2 = mysql_query($cntquotes);
$cntquotes3 = mysql_fetch_array($cntquotes2);
$template->add('QUOTES', $cntquotes3['COUNT(*)']);

$cntflagged = "SELECT COUNT(*) FROM rash_quotes WHERE flag = 1";
$cntflagged2 = mysql_query($cntflagged);
$cntflagged3 = mysql_fetch_array($cntflagged2);
$template->add('FLAGGED', $cntflagged3['COUNT(*)']);

$cntmodcom = "SELECT COUNT(*) FROM rash_queue";
$cntmodcom2 = mysql_query($cntmodcom);
$cntmodcom3 = mysql_fetch_array($cntmodcom2);
$template->add('MODCOM', $cntmodcom3['COUNT(*)']);

$template->display();

?>