2011-08-31 10:11:00 +04:00
|
|
|
# Redmine - project management software
|
|
|
|
# Copyright (C) 2006-2011 Jean-Philippe Lang
|
2007-03-12 20:59:02 +03:00
|
|
|
#
|
|
|
|
# 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.
|
2011-08-31 10:11:00 +04:00
|
|
|
#
|
2007-03-12 20:59:02 +03:00
|
|
|
# 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.
|
2011-08-31 10:11:00 +04:00
|
|
|
#
|
2007-03-12 20:59:02 +03:00
|
|
|
# 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.
|
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
module AdminHelper
|
2007-05-27 21:42:04 +04:00
|
|
|
def project_status_options_for_select(selected)
|
2011-08-31 10:11:00 +04:00
|
|
|
options_for_select([[l(:label_all), ''],
|
2011-12-05 02:31:02 +04:00
|
|
|
[l(:status_active), '1']], selected.to_s)
|
2007-05-27 21:42:04 +04:00
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|