class Admin::LinksController < ApplicationController layout "site_editor" before_filter :authenticate_user! before_filter :find_parent_item before_filter :is_admin? def show @item ||= Link.find(params[:id]) end def new @item = Link.new @item.parent = Page.find(params[:parent_id]) rescue nil end def edit @item = Link.find(params[:id]) end def create @item = Link.new(params[:link]) if @item.save flash.now[:notice] = t('admin.create_success_link') respond_to do |format| format.html { redirect_to admin_link_url(@item) } format.js {} end else flash.now[:error] = t('admin.create_error_link') render :action => "new" end end def update @item = Link.find(params[:id]) if @item.update_attributes(params[:link]) flash.now[:notice] = t('admin.update_success_link') respond_to do |format| format.html { redirect_to admin_link_url(@item) } format.js {} end else flash.now[:error] = t('admin.update_error_link') render :action => "edit" end end def destroy @item = Link.find(params[:id]) @item.destroy respond_to do |format| format.html { redirect_to admin_items_url } format.js {} end end def delete @item = Link.find(params[:id]) @item.destroy respond_to do |format| format.html {} format.js { @item = @item.parent } end end end