mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 03:23:19 +00:00
24 lines
322 B
PHP
24 lines
322 B
PHP
<?php
|
|
abstract class event
|
|
{
|
|
protected $events = array();
|
|
|
|
protected $group = null;
|
|
|
|
public function __construct()
|
|
{
|
|
return $this;
|
|
}
|
|
|
|
public function get_group()
|
|
{
|
|
return $this->group;
|
|
}
|
|
|
|
public function get_events()
|
|
{
|
|
return $this->events;
|
|
}
|
|
|
|
abstract public function fire($event,$params,&$object);
|
|
} |