2011-07-12 17:51:43 -07:00
|
|
|
module ClosetPagesHelper
|
2011-07-25 11:15:23 -07:00
|
|
|
def link_to_neopets_login(content)
|
|
|
|
link_to content, neopets_login_url, :target => "_blank"
|
|
|
|
end
|
|
|
|
|
|
|
|
def neopets_login_url
|
2023-10-25 15:16:46 -07:00
|
|
|
"https://www.neopets.com/loginpage.phtml"
|
2011-07-25 11:15:23 -07:00
|
|
|
end
|
2011-07-12 17:51:43 -07:00
|
|
|
end
|
2011-07-25 11:15:23 -07:00
|
|
|
|