Class: Tr8n::LanguageForumTopic
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Tr8n::LanguageForumTopic
- Defined in:
- app/models/tr8n/language_forum_topic.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::LanguageForumTopic Schema Information
Table name: tr8n_language_forum_topics
id INTEGER not null, primary key
translator_id integer not null
language_id integer
topic text not null
created_at datetime
updated_at datetime
Indexes
tr8n_forum_topics_translator_id (translator_id)
tr8n_forum_topics_lang_id (language_id)
++
Instance Method Summary collapse
Instance Method Details
#last_post ⇒ Object
59 60 61 |
# File 'app/models/tr8n/language_forum_topic.rb', line 59 def last_post @last_post ||= Tr8n::LanguageForumMessage.where("language_forum_topic_id = ?", self.id).order("created_at desc").first end |
#post_count ⇒ Object
55 56 57 |
# File 'app/models/tr8n/language_forum_topic.rb', line 55 def post_count @post_count ||= Tr8n::LanguageForumMessage.where("language_forum_topic_id = ?", self.id).count end |