mailr/app/helpers/contacts_helper.rb
Wojciech Todryk 217c7a2288 contacts done
2011-08-16 20:05:58 +02:00

18 lines
505 B
Ruby
Executable file

module ContactsHelper
def contacts_table_header
html = ""
$defaults["contacts_table_fields"].each do |f|
html << "<th>"
if params[:sort_field] == f
params[:sort_dir].nil? ? dir = 'desc' : dir = nil
end
html << link_to(Contact.human_attribute_name(f), {:controller => 'contacts',:action => 'index',:sort_field => f,:sort_dir => dir}, {:class=>"header"})
html << "</th>"
end
html
end
end