Class: Tr8n::LanguageForumMessage
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Tr8n::LanguageForumMessage
- Defined in:
- app/models/tr8n/language_forum_message.rb
Overview
– Copyright © 2010-2012 Michael Berkovich, tr8n.net
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ++
– Tr8n::LanguageForumMessage Schema Information
Table name: tr8n_language_forum_messages
id INTEGER not null, primary key
language_id integer not null
language_forum_topic_id integer not null
translator_id integer not null
text not null
created_at datetime
updated_at datetime
Indexes
tr8n_forum_msgs_lang_id_topic_id (language_id, language_forum_topic_id)
tr8n_forums_msgs_translator_id (translator_id)
tr8n_forum_msgs_lang_id (language_id)
++
Instance Method Summary collapse
Instance Method Details
#submit_abuse_report(reporter) ⇒ Object
58 59 60 61 62 63 |
# File 'app/models/tr8n/language_forum_message.rb', line 58 def submit_abuse_report(reporter) report = Tr8n::LanguageForumAbuseReport.where("language_forum_message_id = ? and translator_id = ?", self.id, reporter.id).first report ||= Tr8n::LanguageForumAbuseReport.create(:language_forum_message => self, :translator => reporter, :language => language) translator.update_attributes(:reported => true) report end |
#toHTML ⇒ Object
65 66 67 68 |
# File 'app/models/tr8n/language_forum_message.rb', line 65 def toHTML return "" unless ERB::Util.html_escape().gsub("\n", "<br>") end |