2012-02-05 23:54:09 +00:00
|
|
|
module Locomotive
|
|
|
|
class ContentLocalePickerCell < Cell::Base
|
2012-01-14 00:38:09 +00:00
|
|
|
|
2012-02-05 23:54:09 +00:00
|
|
|
def show(args)
|
|
|
|
site = args[:site]
|
|
|
|
locale = args[:locale].to_s
|
2012-01-14 00:38:09 +00:00
|
|
|
|
2012-02-05 23:54:09 +00:00
|
|
|
if site.locales.empty? || site.locales.size < 2
|
|
|
|
''
|
|
|
|
else
|
|
|
|
@locales = site.locales - [locale]
|
|
|
|
render
|
|
|
|
end
|
2012-01-14 00:38:09 +00:00
|
|
|
end
|
|
|
|
|
2012-02-05 23:54:09 +00:00
|
|
|
end
|
2012-01-14 00:38:09 +00:00
|
|
|
end
|