2010-01-14 10:30:53 +00:00
|
|
|
class Admin::LinksController < ApplicationController
|
|
|
|
|
2011-05-13 01:08:42 +00:00
|
|
|
layout "content"
|
|
|
|
|
2010-03-04 08:33:26 +00:00
|
|
|
before_filter :authenticate_user!
|
2010-01-14 10:30:53 +00:00
|
|
|
before_filter :find_parent_item
|
2011-04-13 10:19:51 +00:00
|
|
|
before_filter :is_admin?
|
2010-01-14 10:30:53 +00:00
|
|
|
|
|
|
|
def show
|
2011-05-13 01:08:42 +00:00
|
|
|
@link ||= Link.find(params[:id])
|
2010-01-14 10:30:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
@link = Link.new
|
|
|
|
@link.is_published = true
|
2011-05-13 01:08:42 +00:00
|
|
|
@link.parent_id = Page.find(params[:parent_id]).id rescue nil
|
2010-01-14 10:30:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
@link = Link.find(params[:id])
|
2011-04-13 10:19:51 +00:00
|
|
|
@i18n_variable = @link.i18n_variable
|
2010-01-14 10:30:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@link = Link.new(params[:link])
|
|
|
|
|
|
|
|
if @link.save
|
2011-05-13 01:08:42 +00:00
|
|
|
flash.now[:notice] = t('admin.create_success_link')
|
|
|
|
respond_to do |format|
|
|
|
|
format.html {
|
|
|
|
redirect_to admin_link_url(@link)
|
|
|
|
}
|
|
|
|
format.js {}
|
|
|
|
end
|
2010-01-14 10:30:53 +00:00
|
|
|
else
|
2011-05-13 01:08:42 +00:00
|
|
|
flash.now[:error] = t('admin.create_error_link')
|
|
|
|
@i18n_variable = @link.i18n_variable
|
|
|
|
render :action => "new"
|
2010-01-14 10:30:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
@link = Link.find(params[:id])
|
|
|
|
|
|
|
|
if @link.update_attributes(params[:link])
|
2011-05-13 01:08:42 +00:00
|
|
|
flash.now[:notice] = t('admin.update_success_link')
|
|
|
|
respond_to do |format|
|
|
|
|
format.html {
|
|
|
|
redirect_to admin_link_url(@link)
|
|
|
|
}
|
|
|
|
format.js {}
|
|
|
|
end
|
2010-01-14 10:30:53 +00:00
|
|
|
else
|
2011-05-13 01:08:42 +00:00
|
|
|
flash.now[:error] = t('admin.update_error_link')
|
|
|
|
@i18n_variable = @link.i18n_variable
|
2010-01-14 10:30:53 +00:00
|
|
|
render :action => "edit"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@link = Link.find(params[:id])
|
|
|
|
@link.destroy
|
2011-01-28 06:44:08 +00:00
|
|
|
@link.destroy_i18n_variable
|
2011-05-13 01:08:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def delete
|
|
|
|
destroy
|
|
|
|
respond_to do |format|
|
|
|
|
format.html {
|
|
|
|
redirect_to admin_items_url
|
|
|
|
}
|
|
|
|
format.js {}
|
|
|
|
end
|
2010-01-14 10:30:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|