<?php

include_once(dirname(__FILE__).'/../../Base/Controller.php');
include_once(dirname(__FILE__).'/../View/Graph.php');

class GraphController extends Controller
{
  function Show()
  {
    $this->System->Output->FullPage = false;

    $View = new GraphView($this->System);
    return($View->Render());
  }
}
