| 
									
										
										
										
											2016-10-29 10:10:31 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							|  |  |  | # Copyright (C) 2006-2016  Jean-Philippe Lang | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  | # modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  | # as published by the Free Software Foundation; either version 2 | 
					
						
							|  |  |  | # of the License, or (at your option) any later version. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | # but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | # GNU General Public License for more details. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | # along with this program; if not, write to the Free Software | 
					
						
							|  |  |  | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module Redmine | 
					
						
							|  |  |  |   module MyPage | 
					
						
							|  |  |  |     include Redmine::I18n | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     CORE_BLOCKS = { | 
					
						
							| 
									
										
										
										
											2017-03-14 18:18:19 +00:00
										 |  |  |         'issuesassignedtome' => {:label => :label_assigned_to_me_issues, :partial => 'my/blocks/issues'}, | 
					
						
							|  |  |  |         'issuesreportedbyme' => {:label => :label_reported_issues, :partial => 'my/blocks/issues'}, | 
					
						
							|  |  |  |         'issueswatched' => {:label => :label_watched_issues, :partial => 'my/blocks/issues'}, | 
					
						
							| 
									
										
										
										
											2017-03-15 17:59:31 +00:00
										 |  |  |         'issuequery' => {:label => :label_issue_plural, :partial => 'my/blocks/issues'}, | 
					
						
							| 
									
										
										
										
											2017-03-14 18:18:19 +00:00
										 |  |  |         'news' => {:label => :label_news_latest, :partial => 'my/blocks/news'}, | 
					
						
							|  |  |  |         'calendar' => {:label => :label_calendar, :partial => 'my/blocks/calendar'}, | 
					
						
							|  |  |  |         'documents' => {:label => :label_document_plural, :partial => 'my/blocks/documents'}, | 
					
						
							|  |  |  |         'timelog' => {:label => :label_spent_time, :partial => 'my/blocks/timelog'} | 
					
						
							| 
									
										
										
										
											2016-10-29 10:10:31 +00:00
										 |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Returns the available blocks | 
					
						
							|  |  |  |     def self.blocks | 
					
						
							|  |  |  |       CORE_BLOCKS.merge(additional_blocks).freeze | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def self.block_options | 
					
						
							|  |  |  |       options = [] | 
					
						
							| 
									
										
										
										
											2017-03-14 18:18:19 +00:00
										 |  |  |       blocks.each do |block, block_options| | 
					
						
							|  |  |  |         label = block_options[:label] | 
					
						
							|  |  |  |         options << [l("my.blocks.#{label}", :default => [label, label.to_s.humanize]), block.dasherize] | 
					
						
							| 
									
										
										
										
											2016-10-29 10:10:31 +00:00
										 |  |  |       end | 
					
						
							|  |  |  |       options | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Returns the additional blocks that are defined by plugin partials | 
					
						
							|  |  |  |     def self.additional_blocks | 
					
						
							|  |  |  |       @@additional_blocks ||= Dir.glob("#{Redmine::Plugin.directory}/*/app/views/my/blocks/_*.{rhtml,erb}").inject({}) do |h,file| | 
					
						
							|  |  |  |         name = File.basename(file).split('.').first.gsub(/^_/, '') | 
					
						
							| 
									
										
										
										
											2017-03-14 18:18:19 +00:00
										 |  |  |         h[name] = {:label => name.to_sym, :partial => "my/blocks/#{name}"} | 
					
						
							| 
									
										
										
										
											2016-10-29 10:10:31 +00:00
										 |  |  |         h | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Returns the default layout for My Page | 
					
						
							|  |  |  |     def self.default_layout | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  |         'left' => ['issuesassignedtome'], | 
					
						
							|  |  |  |         'right' => ['issuesreportedbyme'] | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |