egroupware/notifications/inc/class.iface_notification.inc.php

32 lines
587 B
PHP
Raw Normal View History

2006-09-07 09:04:15 +02:00
<?php
/**
* eGroupWare - Notifications
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package notifications
* @link http://www.egroupware.org
* @author Cornelius Weiss <nelius@cwtech.de>
* @version $id$
2006-09-07 09:04:15 +02:00
*/
/**
* Instant user notification
*/
interface iface_notification {
/**
* constructor
*
* @param object $_account
* @param object $_preferences
*/
public function __construct( $_account, $_preferences );
/**
* sends notification
*
* @param string $_message
*/
public function send( $_message );
}