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

Ajax

开发平台:

Others

  1. module Admin::ThemesHelper
  2.   require('find')
  3.   def fetch_stylesheets
  4.     list = ''
  5.     Find.find(this_blog.current_theme.path + "/stylesheets") do |path|
  6.       if path =~ /css$/ 
  7.         list << content_tag(:p, link_to(File.basename(path), {:controller => 'themes', :action => 'editor', :type => 'stylesheet', :file => File.basename(path)}))
  8.       end
  9.     end
  10.     list
  11.   end
  12.   def fetch_layouts
  13.     list = ''
  14.     Find.find(this_blog.current_theme.path + "/layouts") do |path|
  15.       if path =~ /rhtml$|erb$/ 
  16.         list << content_tag(:p, link_to(File.basename(path), {:controller => 'themes', :action => 'editor', :type => 'layout', :file => File.basename(path)}))
  17.       end
  18.     end
  19.     list
  20.   end
  21.   
  22. end