Sha256: 4e9ad0b64ce6eb50c0ad9df7cb48cceafe005c72fa07a92b519a3464d1abaae3

Contents?: true

Size: 1.26 KB

Versions: 2

Compression:

Stored size: 1.26 KB

Contents

module TranslateHelper
  def simple_filter(labels, param_name = 'filter', selected_value = nil)
    selected_value ||= params[param_name]
    filter = []
    labels.each do |item|
      if item.is_a?(Array)
        type, label = item
      else
        type = label = item
      end
      if type.to_s == selected_value.to_s
        filter << "<i>#{label}</i>"
      else
        link_params = params.merge({param_name.to_s => type})
        link_params.merge!({"page" => nil}) if param_name.to_s != "page"
        filter << link_to(label, link_params)
      end
    end
    filter.join(" | ")    
  end

  def n_lines(text, line_size)
    n_lines = 1
    if text.present?
      n_lines = text.split("\n").size
      if n_lines == 1 && text.length > line_size
        n_lines = text.length / line_size + 1
      end
    end
    n_lines
  end
  
  def translate_javascript_includes
    sources = []
    if File.exists?(File.join(Rails.root, "public", "javascripts", "prototype.js"))
      sources << "/javascripts/prototype.js"
    else
      sources << "http://ajax.googleapis.com/ajax/libs/prototype/1.6.1.0/prototype.js"
    end
    sources << "http://www.google.com/jsapi"
    sources.map do |src|
      %Q{<script src="#{src}" type="text/javascript"></script>}
    end.join("\n")
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
translate-rails3-0.1.1 app/helpers/translate_helper.rb
translate-rails3-0.1.0 app/helpers/translate_helper.rb