added widget and engine settings

This commit is contained in:
Harry Bomrah 2014-05-23 14:04:26 +08:00
parent 3868aed034
commit f414473897
2 changed files with 33 additions and 7 deletions

View File

@ -29,6 +29,31 @@ class GalleriesController < ApplicationController
}
end
def widget
albums = Album.filter_by_widget_categories
params = OrbitHelper.params
images = []
while images.count < 9
albums.each do |album|
img = album.album_images.sample
if !images.include?(img) && img != nil
images << img
end
end
end
images = images.collect do |a|
{
"link_to_show" => "/" + I18n.locale.to_s + params[:url] + "/-" + a.id.to_s + "?method=theater",
"thumb-src" => a.file.thumb.url
}
end
{
"images" => images,
"extras" => {"widget-title"=>"Gallery"}
}
end
def theater
params = OrbitHelper.params
image = AlbumImage.find(params[:uid])

View File

@ -4,7 +4,8 @@ module Gallery
OrbitApp.registration "Gallery", :type => "ModuleApp" do
module_label "gallery.gallery"
base_url File.expand_path File.dirname(__FILE__)
widget_methods ["widget"]
widget_settings [{"data_count"=>10}]
categorizable
authorizable
frontend_enabled