textfilter_controller.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:

Ajax

开发平台:

Others

  1. class TextfilterController < ApplicationController
  2.   def public_action
  3.     filter = params[:filter]
  4.     action = params[:public_action]
  5.     plugin = TextFilter.filters_map[filter]
  6.     if(plugin and plugin.plugin_public_actions.include? action.to_sym)
  7.       render_component(:controller => "plugins/textfilters/#{params[:filter]}",
  8.         :action => params[:public_action], :params => params)
  9.     else
  10.       render :text => '', :status => 404
  11.     end
  12.   end
  13.   def test_action
  14.     render :text => ''
  15.   end
  16. end