mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 03:23:19 +00:00
25 lines
305 B
PHP
25 lines
305 B
PHP
<?php
|
|
abstract class notify extends event
|
|
{
|
|
protected $events = array('__EVENT__');
|
|
|
|
function fire($event,$params,&$object)
|
|
{
|
|
|
|
}
|
|
|
|
abstract function datas($datas, $unread);
|
|
|
|
function is_avalaible()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
function email()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
abstract function icon_url();
|
|
|
|
} |