-
Notifications
You must be signed in to change notification settings - Fork 106
/
advanced_reporting_hooks.rb
43 lines (41 loc) · 1.36 KB
/
advanced_reporting_hooks.rb
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
class AdvancedReportingHooks < Spree::ThemeSupport::HookListener
#
# In this file you can modify the content of the hooks available in the default templates
# and avoid overriding a template in many situations. Multiple extensions can modify the
# same hook, the changes being applied cumulatively based on extension load order
#
# Most hooks are defined with blocks so they span a region of the template, allowing content
# to be replaced or removed as well as added to.
#
# Usage
#
# The following methods are available
#
# * insert_before
# * insert_after
# * replace
# * remove
#
# All accept a block name symbol followed either by arguments that would be valid for 'render'
# or a block which returns the string to be inserted. The block will have access to any methods
# or instance variables accessible in your views
#
# Examples
#
# insert_before :homepage_products, :text => "<h1>Welcome!</h1>"
# insert_after :homepage_products, 'shared/offers' # renders a partial
# replace :taxon_sidebar_navigation, 'shared/my_sidebar
#
# adding a link below product details:
#
# insert_after :product_description do
# '<p>' + link_to('Back to products', products_path) + '</p>'
# end
#
# adding a new tab to the admin navigation
#
# insert_after :admin_tabs do
# tab(:taxonomies)
# end
#
end