Sha256: 15cb24ba1b716029e722a9ade59da56a591e6c2d7dec8e9b0ad02c1c9fa79bcd

Contents?: true

Size: 1.35 KB

Versions: 1

Compression:

Stored size: 1.35 KB

Contents

module ThemesForRails
  module ViewHelpers
    
    extend ActiveSupport::Concern
  
    included do
      include ThemesForRails::CommonMethods
    end
    module InstanceMethods
      def current_theme_stylesheet_path(asset)
        base_theme_stylesheet_path(:theme => self.theme_name, :asset => "#{asset}.css")
      end
      def current_theme_javascript_path(asset)
        base_theme_javascript_path(:theme => self.theme_name, :asset => "#{asset}.js")
      end
      def current_theme_image_path(asset)
        base_theme_image_path(:theme => self.theme_name, :asset => asset)
      end
      
      alias_method :theme_image_path, :current_theme_image_path
      alias_method :theme_javascript_path, :current_theme_javascript_path
      alias_method :theme_stylesheet_path, :current_theme_stylesheet_path

      def theme_image_tag(source)
        image_tag(theme_image_path(source))
      end
      
      def theme_javascript_include_tag(*files)
        files.collect! {|file| theme_javascript_path(file) }
        javascript_include_tag *files
      end
      
      def theme_stylesheet_link_tag(*files)
        options = files.extract_options!
        files.collect! {|file| theme_stylesheet_path(file) }
        files << options
        stylesheet_link_tag(*files)
      end
    end
  end
end

ActiveSupport.on_load(:action_view) { include ThemesForRails::ViewHelpers }

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
themes_for_rails-0.4.0 lib/themes_for_rails/view_helpers.rb