<?php

include_once(dirname(__FILE__).'/../../Base/Controller.php');
include_once(dirname(__FILE__).'/../../Application/View/Page.php');
include_once(dirname(__FILE__).'/View.php');

class UpdateController extends Controller
{
  function ItemList()
  {
    $Page = new PageView($this->System);
    $View = new UpdateView($this->System);
    return($Page->GetOutput($View->ItemList()));
  }    
  
  function Update()
  {
    $Page = new PageView($this->System);
    $View = new UpdateView($this->System);
    return($Page->GetOutput($View->Update()));
  }    
}
