shopping_cart_plugin.rb
1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
class ShoppingCartPlugin < Noosfero::Plugin
def self.plugin_name
"Shopping Cart"
end
def self.plugin_description
_("A shopping cart feature for enterprises")
end
def add_to_cart_button(item, enterprise = context.profile)
if enterprise.shopping_cart && item.available
lambda {
link_to(_('Add to cart'), "add:#{item.name}",
:class => 'cart-add-item',
:onclick => "Cart.addItem('#{enterprise.identifier}', #{item.id}, this); return false"
)
}
end
end
alias :product_info_extras :add_to_cart_button
alias :catalog_item_extras :add_to_cart_button
alias :asset_product_extras :add_to_cart_button
def stylesheet?
true
end
def js_files
language = FastGettext.locale
[ 'cart.js',
'colorbox/jquery.colorbox.js',
'jquery-validation/jquery.validate.js',
'jquery-validation/localization/messages_'+language+'.js',
'jquery-validation/localization/methods_'+language+'.js'
]
end
def body_beginning
expanded_template('cart.html.erb',{:cart => context.session[:cart]})
end
def control_panel_buttons
if context.profile.enterprise?
{ :title => 'Shopping cart', :icon => 'shopping_cart_icon', :url => {:controller => 'shopping_cart_plugin_myprofile', :action => 'edit'} }
end
end
end