Sha256: 3e6408ad108a87e5bd261528db91fd135d919080dbba0d0a0a91dd19b519a7c7

Contents?: true

Size: 1.71 KB

Versions: 12

Compression:

Stored size: 1.71 KB

Contents

require_dependency "phcscriptcdnpro/application_controller"

module Phcscriptcdnpro
	class Scriptcdn::InformationsController < ApplicationController

		# Security & Action Filters
		before_action :require_user
		layout '/layouts/phcscriptcdnpro/application.html.erb'
		before_action :set_scriptcdn_information, only: [:edit, :update, :destroy]

		# Script Information Index
		def index
			@scriptcdn_informations = Scriptcdn::Information.all
		end

		# New Script Information
		def new
			@scriptcdn_information = Scriptcdn::Information.new
		end

		# Edit Script Information
		def edit
		end

		# POST Script Information
		def create
			@scriptcdn_information = Scriptcdn::Information.new(scriptcdn_information_params)

			if @scriptcdn_information.save
				redirect_to scriptcdn_informations_url, notice: 'Information was successfully created.'
				else
					render :new
			end
		end

		# PATCH/PUT Script Information
		def update
			if @scriptcdn_information.update(scriptcdn_information_params)
				redirect_to scriptcdn_informations_url, notice: 'Information was successfully updated.'
				else
					render :edit
			end
		end

		# DELETE Script Information
		def destroy
			@scriptcdn_information.destroy
			redirect_to scriptcdn_informations_url, notice: 'Information was successfully destroyed.'
		end

		private

		# Common Callbacks
		def set_scriptcdn_information
			@scriptcdn_information = Scriptcdn::Information.find(params[:id])
		end

		# Whitelist
		def scriptcdn_information_params
			params.require(:scriptcdn_information).permit(:scripttitle, :scriptdescription, :scriptcategory, :scriptwebsite, :scripttwitter, :scriptgithub, :scriptinitialrelease, :scriptlicence, :scriptplatform, :scriptstatus, :version_id, :main_id)
		end

	end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
phcscriptcdnpro-1.10.1 app/controllers/phcscriptcdnpro/scriptcdn/informations_controller.rb
phcscriptcdnpro-1.10.0 app/controllers/phcscriptcdnpro/scriptcdn/informations_controller.rb
phcscriptcdnpro-1.9.12 app/controllers/phcscriptcdnpro/scriptcdn/informations_controller.rb
phcscriptcdnpro-1.9.11 app/controllers/phcscriptcdnpro/scriptcdn/informations_controller.rb
phcscriptcdnpro-1.9.10 app/controllers/phcscriptcdnpro/scriptcdn/informations_controller.rb
phcscriptcdnpro-1.9.8 app/controllers/phcscriptcdnpro/scriptcdn/informations_controller.rb
phcscriptcdnpro-1.9.7 app/controllers/phcscriptcdnpro/scriptcdn/informations_controller.rb
phcscriptcdnpro-1.9.6 app/controllers/phcscriptcdnpro/scriptcdn/informations_controller.rb
phcscriptcdnpro-1.9.5 app/controllers/phcscriptcdnpro/scriptcdn/informations_controller.rb
phcscriptcdnpro-1.9.4 app/controllers/phcscriptcdnpro/scriptcdn/informations_controller.rb
phcscriptcdnpro-1.9.2 app/controllers/phcscriptcdnpro/scriptcdn/informations_controller.rb
phcscriptcdnpro-1.9.1 app/controllers/phcscriptcdnpro/scriptcdn/informations_controller.rb