Sha256: 0136c56e05f1991bf66ad160d12022329d2c0eef282a1817fb408fe5e2db2bb7

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 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}.js")
      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)
        self.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)
        files.collect! {|file| theme_stylesheet_path(file) }
        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.2.4 lib/themes_for_rails/view_helpers.rb