* @version $Id$ */ /** * Instant user notification */ interface iface_notification { /** * constructor * * @param object $_account * @param object $_preferences */ public function __construct( $_account=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( $_message ); }