Class: Phcpresspro::Article::CategoriesController

Inherits:
Phcpresspro::ApplicationController show all
Includes:
Phccorehelpers::PhcpluginsproHelper
Defined in:
app/controllers/phcpresspro/article/categories_controller.rb

Instance Method Summary collapse

Methods inherited from Phcpresspro::ApplicationController

#user_for_paper_trail

Instance Method Details

#createObject

CREATE



33
34
35
36
37
38
39
40
41
42
# File 'app/controllers/phcpresspro/article/categories_controller.rb', line 33

def create
  @article_category = Phcpresspro::Article::Category.new()
  @article_category.user_id = current_user.id
  @article_category.org_id = current_user.org_id
  if @article_category.save
    redirect_to article_categories_url, :flash => { :success => 'Category was successfully created.' }
  else
    render :new
  end
end

#destroyObject

DELETE



54
55
56
57
# File 'app/controllers/phcpresspro/article/categories_controller.rb', line 54

def destroy
  @article_category.destroy
  redirect_to article_categories_url, :flash => { :success => 'Category was successfully destroyed.' }
end

#editObject

EDIT



29
30
# File 'app/controllers/phcpresspro/article/categories_controller.rb', line 29

def edit
end

#indexObject

INDEX



13
14
15
# File 'app/controllers/phcpresspro/article/categories_controller.rb', line 13

def index
  @article_categories = Phcpresspro::Article::Category.where(org_id: current_user.org_id)
end

#newObject

NEW



24
25
26
# File 'app/controllers/phcpresspro/article/categories_controller.rb', line 24

def new
  @article_category = Phcpresspro::Article::Category.new
end

#showObject

SHOW



18
19
20
21
# File 'app/controllers/phcpresspro/article/categories_controller.rb', line 18

def show
  @article_category = Phcpresspro::Article::Category.friendly.find(params[:id])
  @versions = Phcpresspro::CategoryVersions.where(item_id: params[:id], item_type: 'Phcpresspro::Article::Category')
end

#updateObject

UPDATE



45
46
47
48
49
50
51
# File 'app/controllers/phcpresspro/article/categories_controller.rb', line 45

def update
  if @article_category.update()
    redirect_to article_categories_url, :flash => { :success => 'Category was successfully updated.' }
  else
    render :edit
  end
end