<?php
require_once('class.Event_Handler.php');

class handler_Edit extends Event_Handler
{
   private $handle;

   function __construct($event_handle){
      $this->handle = $event_handle;
   }

   function handled_event(){
      echo "Zdarzenie $this->handle jest wanie obsugiwane - to nie art! <BR>";
   }
}
?>