Class: Phcscriptcdnpro::Script::LicencesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/phcscriptcdnpro/script/licences_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#current_user, #get_member_profile_info, #membership_info, #new_login_url, #phcpress_recent_posts, #require_user

Instance Method Details

#createObject

POST - Script Licences



29
30
31
32
33
34
35
36
# File 'app/controllers/phcscriptcdnpro/script/licences_controller.rb', line 29

def create
	@script_licence = Script::Licence.new(script_licence_params)
	if @script_licence.save
		redirect_to script_licences_url, notice: 'Licence was successfully created.'
		else
			render :new
	end
end

#destroyObject

DELETE - Script Licences



48
49
50
51
# File 'app/controllers/phcscriptcdnpro/script/licences_controller.rb', line 48

def destroy
	@script_licence.destroy
	redirect_to script_licences_url, notice: 'Licence was successfully destroyed.'
end

#editObject

EDIT - Script Licences



25
26
# File 'app/controllers/phcscriptcdnpro/script/licences_controller.rb', line 25

def edit
end

#indexObject

INDEX - Script Licences



11
12
13
# File 'app/controllers/phcscriptcdnpro/script/licences_controller.rb', line 11

def index
	@script_licences = Script::Licence.all
end

#newObject

NEW - Script Licences



20
21
22
# File 'app/controllers/phcscriptcdnpro/script/licences_controller.rb', line 20

def new
	@script_licence = Script::Licence.new
end

#showObject

DETAILS - Script Licences



16
17
# File 'app/controllers/phcscriptcdnpro/script/licences_controller.rb', line 16

def show
end

#updateObject

PATCH/PUT - Script Licences



39
40
41
42
43
44
45
# File 'app/controllers/phcscriptcdnpro/script/licences_controller.rb', line 39

def update
	if @script_licence.update(script_licence_params)
		redirect_to script_licences_url, notice: 'Licence was successfully updated.'
		else
			render :edit
	end
end