| 
									
										
										
										
											2009-05-07 16:53:18 +00:00
										 |  |  | module ApplicationHelper | 
					
						
							| 
									
										
										
										
											2011-02-08 02:07:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   FLASH_NOTICE_KEYS = [:error, :notice, :warning] | 
					
						
							| 
									
										
										
										
											2011-04-13 10:19:51 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def colorize_in_use_locale(locale) | 
					
						
							|  |  |  |     @site_in_use_locales.include?(locale)? 'green' : 'red' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2011-02-08 02:07:40 +00:00
										 |  |  |   def flash_messages | 
					
						
							|  |  |  |     return unless messages = flash.keys.select{|k| FLASH_NOTICE_KEYS.include?(k)} | 
					
						
							|  |  |  |     formatted_messages = messages.map do |type|       | 
					
						
							|  |  |  |       content_tag :div, :class => type.to_s do | 
					
						
							|  |  |  |         message_for_item(flash[type], flash["#{type}_item".to_sym]) | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     raw(formatted_messages.join) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2011-04-13 10:19:51 +00:00
										 |  |  |   def link_back | 
					
						
							| 
									
										
										
										
											2011-05-26 05:48:09 +00:00
										 |  |  |      link_to t('back'), get_go_back, :class => 'nav' | 
					
						
							| 
									
										
										
										
											2011-04-19 07:05:48 +00:00
										 |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   # Clean the link back | 
					
						
							|  |  |  |   # Remove the locale but keep all the other params | 
					
						
							|  |  |  |   def get_go_back | 
					
						
							|  |  |  |     begin | 
					
						
							| 
									
										
										
										
											2011-05-02 05:28:38 +00:00
										 |  |  |       if request.url.include?('locale=') | 
					
						
							| 
									
										
										
										
											2011-04-19 07:05:48 +00:00
										 |  |  |         session[:last_page] | 
					
						
							|  |  |  |       else | 
					
						
							|  |  |  |         target = request.referer.split('?') | 
					
						
							|  |  |  |         vars = target[1].split('&') rescue [] | 
					
						
							|  |  |  |         vars.delete_if {|var| var.include? 'locale=' } | 
					
						
							|  |  |  |         session[:last_page] = if vars.size > 0
 | 
					
						
							|  |  |  |          target[0].to_s + '?' + vars.join('&') | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |           target[0].to_s | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     rescue | 
					
						
							|  |  |  |       eval(params[:controller].split('/').join('_') << '_url') | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-04-13 10:19:51 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-08 02:07:40 +00:00
										 |  |  |   def message_for_item(message, item = nil) | 
					
						
							|  |  |  |     if item.is_a?(Array) | 
					
						
							|  |  |  |       message % link_to(*item) | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       message % item | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-12-23 10:34:21 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def add_attribute(partial, f, attribute) | 
					
						
							|  |  |  |     new_object = f.object.send(attribute).build | 
					
						
							|  |  |  |     fields = f.fields_for(attribute, new_object, :child_index => "new_#{attribute}") do |f| | 
					
						
							|  |  |  |       render :partial => partial, :object => new_object, :locals => {:f => f} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-02-08 02:07:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-07 16:53:18 +00:00
										 |  |  | end |