parent
bf0f561c2e
commit
3925c22408
|
@ -35,9 +35,7 @@ class GalleriesController < ApplicationController
|
|||
"extras" => {"widget-title"=>"Gallery"},
|
||||
"total_pages" => albums.total_pages
|
||||
}
|
||||
|
||||
end
|
||||
|
||||
def show
|
||||
params = OrbitHelper.params
|
||||
album = Album.find_by_param(params[:uid])
|
||||
|
@ -57,13 +55,11 @@ class GalleriesController < ApplicationController
|
|||
"album-description" => (flag ? "<p><span>#{album.description}</span></p>" : "")}
|
||||
}
|
||||
end
|
||||
|
||||
def widget
|
||||
tags = OrbitHelper.widget_tags.empty? ? ["all"] : OrbitHelper.widget_tags
|
||||
albums = Album.filter_by_widget_categories.filter_by_tags(tags)
|
||||
params = OrbitHelper.params
|
||||
counts = OrbitHelper.widget_data_count
|
||||
|
||||
images = []
|
||||
total_images = 0
|
||||
if !albums.blank?
|
||||
|
@ -84,7 +80,6 @@ class GalleriesController < ApplicationController
|
|||
end
|
||||
images = images.collect do |a|
|
||||
alt_text = (a.description.nil? || a.description == "" ? "gallery image" : a.description)
|
||||
|
||||
{
|
||||
"link_to_show" => OrbitHelper.widget_more_url + "/" + a.album.to_param + "#" + a.id.to_s,
|
||||
"alt_title" => alt_text,
|
||||
|
@ -93,7 +88,8 @@ class GalleriesController < ApplicationController
|
|||
"thumb-large-src" => a.file.thumb_large.url,
|
||||
"image_description" => a.description,
|
||||
"mobile-src" => a.file.mobile.url,
|
||||
"theater-src" => a.file.theater.url
|
||||
"theater-src" => a.file.theater.url,
|
||||
"album-name" => a.album.name_translations[I18n.locale]
|
||||
}
|
||||
end
|
||||
{
|
||||
|
@ -101,7 +97,6 @@ class GalleriesController < ApplicationController
|
|||
"extras" => {"widget-title"=>"Gallery","more_url" => OrbitHelper.widget_more_url}
|
||||
}
|
||||
end
|
||||
|
||||
def imgs(album_id)
|
||||
album = Album.find(album_id)
|
||||
tag_names = Array.new
|
||||
|
@ -120,7 +115,6 @@ class GalleriesController < ApplicationController
|
|||
end
|
||||
return output
|
||||
end
|
||||
|
||||
def theater
|
||||
image = AlbumImage.find(params[:id])
|
||||
albumid = image.album_id
|
||||
|
@ -131,7 +125,6 @@ class GalleriesController < ApplicationController
|
|||
"image" => image.id.to_s,
|
||||
"images" => imgs(albumid)
|
||||
}
|
||||
|
||||
render :json => {"data" => data}.to_json
|
||||
end
|
||||
private
|
||||
|
|
Loading…
Reference in New Issue