<?php

class ModuleClub extends AppModule
{
  function __construct($System)
  {
    parent::__construct($System);
    $this->Name = 'Club';
    $this->Version = '1.0';
    $this->Creator = 'Chronos';
    $this->License = 'GNU/GPL';
    $this->Description = 'List of dance clubs';
    $this->Dependencies = array();
    $this->RSSChannels = array();
  }

  function Start()
  {
    $this->System->RegisterPage('tancirny', 'PageDanceClub');
  }  
}

class PageClub extends Page
{  
  function __construct($System)
  {
    parent::__construct($System);
    $this->FullTitle = 'Tančírny';
    $this->ShortTitle = 'Tančírny';
  }
  
  function Show()
  {
    
    return 'Dance clubs';
  }
}