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

Ajax

开发平台:

Others

  1. module ThemeHelper
  2.   # adds per theme helpers if file exists. Ugly but at least it works.
  3.   # Use : just add your methods in yourtheme/helpers/theme_helper.rb
  4.   unless Blog.default.nil?
  5.     require "#{Blog.default.current_theme.path}/helpers/theme_helper.rb" if File.exists? "#{Blog.default.current_theme.path}/helpers/theme_helper.rb"
  6.   end
  7. end