2010-11-12 22:39:45 +00:00
|
|
|
<?php
|
2010-11-30 12:23:46 +00:00
|
|
|
/**
|
|
|
|
* Abstract class of notifation system
|
|
|
|
*
|
|
|
|
* @category DMS
|
2013-02-14 11:10:53 +00:00
|
|
|
* @package SeedDMS
|
2010-11-30 12:23:46 +00:00
|
|
|
* @license GPL 2
|
|
|
|
* @version @version@
|
|
|
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
* @copyright Copyright (C) 2002-2005 Markus Westphal,
|
|
|
|
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
|
|
|
|
* 2010 Uwe Steinmann
|
|
|
|
* @version Release: @package_version@
|
|
|
|
*/
|
2010-11-12 22:39:45 +00:00
|
|
|
|
2010-11-30 12:23:46 +00:00
|
|
|
/**
|
|
|
|
* Abstract class of notification systems
|
|
|
|
*
|
|
|
|
* @category DMS
|
2013-02-14 11:10:53 +00:00
|
|
|
* @package SeedDMS
|
2010-11-30 12:23:46 +00:00
|
|
|
* @author Markus Westphal, Malcolm Cowe, Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
* @copyright Copyright (C) 2002-2005 Markus Westphal,
|
|
|
|
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
|
|
|
|
* 2010 Uwe Steinmann
|
|
|
|
* @version Release: @package_version@
|
|
|
|
*/
|
2013-02-14 11:10:53 +00:00
|
|
|
abstract class SeedDMS_Notify {
|
2013-04-08 18:48:07 +00:00
|
|
|
abstract function toIndividual($sender, $recipient, $subject, $message, $params=array());
|
2010-11-12 22:39:45 +00:00
|
|
|
}
|