aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/refinery/blog/category.rb
blob: acab8bf051d22eb084746325b1156ad6bdbcb2a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module Refinery
  module Blog
    class Category < ActiveRecord::Base

      translates :title, :slug

      extend FriendlyId
      friendly_id :title, :use => [:slugged, :globalize]

      has_many :categorizations, :dependent => :destroy, :foreign_key => :blog_category_id
      has_many :posts, :through => :categorizations, :source => :blog_post

      validates :title, :presence => true, :uniqueness => true

      attr_accessible :title
      attr_accessor :locale

      class Translation
        attr_accessible :locale
      end

      def self.translated
        with_translations(::Globalize.locale)
      end

      def post_count
        posts.live.with_globalize.count
      end

      # how many items to show per page
      self.per_page = Refinery::Blog.posts_per_page

    end
  end
end