public static function get_linecount_to_remove($messagedata) { return parent::get_linecount_to_remove($messagedata); }
/** * Process the message against the relevant handler. * * @param \stdClass $messagedata The data for the current message being processed. * @return mixed The result of the handler's message processor. A truthy result suggests a successful send. */ public function handle_message(\stdClass $messagedata) { $this->record = $this->get_data(); return $this->handler->process_message($this->record, $messagedata); }
public static function remove_quoted_text($messagedata) { return parent::remove_quoted_text($messagedata); }