mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-19 15:01:14 +00:00
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.0-stable@4116 e93f8b46-1217-0410-a6f0-8f06a7374b81
39 lines
1.4 KiB
Ruby
39 lines
1.4 KiB
Ruby
module CalendarsHelper
|
|
def link_to_previous_month(year, month)
|
|
target_year, target_month = if month == 1
|
|
[year - 1, 12]
|
|
else
|
|
[year, month - 1]
|
|
end
|
|
|
|
name = if target_month == 12
|
|
"#{month_name(target_month)} #{target_year}"
|
|
else
|
|
"#{month_name(target_month)}"
|
|
end
|
|
|
|
link_to_remote ('« ' + name),
|
|
{:update => "content", :url => { :year => target_year, :month => target_month }},
|
|
{:href => url_for(:action => 'show', :year => target_year, :month => target_month)}
|
|
end
|
|
|
|
def link_to_next_month(year, month)
|
|
target_year, target_month = if month == 12
|
|
[year + 1, 1]
|
|
else
|
|
[year, month + 1]
|
|
end
|
|
|
|
name = if target_month == 1
|
|
"#{month_name(target_month)} #{target_year}"
|
|
else
|
|
"#{month_name(target_month)}"
|
|
end
|
|
|
|
link_to_remote (name + ' »'),
|
|
{:update => "content", :url => { :year => target_year, :month => target_month }},
|
|
{:href => url_for(:action => 'show', :year => target_year, :month =>target_month)}
|
|
|
|
end
|
|
end
|