<?php
## NEW LIST DESIGN IMPLIMENTATION ## LIST USERS FROM CONVERGENCE 2017 DATABASE
//20191210 - Add Appointment Calendar - Rachel


## FRAMEWORK FILE INCLUDES
include_once("_framework/_nemo.cls.php");
include_once("_framework/_nemo.details2.cls.php");
include_once("includes/dashboard.cls.php");

$page = new Nemo(); 
$Action = $_REQUEST['Action'];
## EVENTS
switch($Action)
{  
   case "Save": 
      break;

   case "Delete":  
      break; 

	default:
		break;
} 

## NAVIGATION
switch($Action)
{	
	case "Save":
      case "Edit":
      case "New": 
         break;

	default:  
      ## TILE STATS ROW
      $page->ContentBootstrap[0]["col-md-12"] = Dashboard::TileStats();

      //20191210 - Add Appointment Calendar - Rachel
       $page->ContentBootstrap[1]["col-md-6 col-xs-12"] = Dashboard::getCTCalendar();

       $page->ContentBootstrap[2]["col-md-6 col-xs-12"] = Dashboard::getBedfordCalendar();

      break;
}

//PHP 8
$page->Message = new stdclass();
$page->Message->Text = $Message; 
$page->Display("layout.back.incl.php");

?>