object =& $obj; } // ################################################################### /** * The user-end cumulative reporter requires that the class be * instantiated. This collects messages in the set message reporting * object, but never throws the error. It is the caller's responsibility * to check for the presence of errors and to throw the front-end * warning using the message object. * * @access public * * @param string Error message */ function user_cumulative($error) { $this->object->addError($error); } // ################################################################### /** * This calls the simple ISSO.Printer error message for the * administrative-side errors. * * @access public * * @param string Error message */ function admin_error($error) { $this->object->error($error); } }