blob: 1c0491b0530ffbe9106a4eb591522ff31282edbd (
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
|
module Refinery
module Blog
module ControllerHelper
protected
def find_blog_post
unless (@post = Refinery::Blog::Post.with_globalize.friendly.find(params[:id])).try(:live?)
if current_refinery_user && current_refinery_user.has_plugin?("refinerycms_blog")
@post = Refinery::Blog::Post.friendly.find(params[:id])
else
error_404
end
end
end
def find_all_blog_posts
@posts = Refinery::Blog::Post.live.includes(:comments, :categories).with_globalize.newest_first.page(params[:page])
end
def find_tags
@tags = Refinery::Blog::Post.live.tag_counts_on(:tags)
end
def find_all_blog_categories
@categories = Refinery::Blog::Category.translated
end
end
end
end
|