* @version $Id$ */ /** * Instant user notification */ interface iface_notification { /** * constructor * * @param object $_sender * @param object $_recipient * @param object $_preferences */ public function __construct( $_sender=false, $_recipient=false, $_config=false, $_preferences=false ); /** * sends notification * * @abstract NOTE, $_message contains some html-tags (


) * implementing class needs to handle them somehow. * @param string $_message */ public function send( $_subject = false, $_messages, $_attachments = false); }