Module: Themes::CamaleonFirst::MainHelper

Defined in:
app/apps/themes/camaleon_first/main_helper.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



2
3
4
# File 'app/apps/themes/camaleon_first/main_helper.rb', line 2

def self.included(klass)
  klass.helper_method [:camaleon_first_list_select] rescue "" # here your methods accessible from views
end

Instance Method Details

#camaleon_first_list_selectObject

return a list of options for “Recent items from ” on site settings -> theme settings



11
12
13
14
15
# File 'app/apps/themes/camaleon_first/main_helper.rb', line 11

def camaleon_first_list_select
  res = []
  current_site.the_post_types.decorate.each {|p| res << "<option value='#{p.the_slug}'>#{p.the_title}</option>" }
  res.join("").html_safe
end

#camaleon_first_on_install_theme(theme) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
# File 'app/apps/themes/camaleon_first/main_helper.rb', line 17

def camaleon_first_on_install_theme(theme)
  group = theme.add_field_group({name: "Home Page", slug: "home_page"})
  group.add_field({"name"=>"Home Page", "slug"=>"home_page", description: "Select your home page"},{field_key: "posts", post_types: "all"})
  group.add_field({"name"=>"Recent items from", "slug"=>"recent_post_type"}, {field_key: "select_eval", command: "camaleon_first_list_select"})
  group.add_field({"name"=>"Maximum of items", "slug"=>"home_qty"}, {field_key: "numeric", default_value: 6})

  group = theme.add_field_group({name: "Footer", slug: "footer"})
  group.add_field({"name"=>"Column Left", "slug"=>"footer_left"}, {field_key: "editor", translate: true, default_value: "<h4>My Bunker</h4><p>Some Address 987,<br> +34 9054 5455, <br> Madrid, Spain. </p>"})
  group.add_field({"name"=>"Column Center", "slug"=>"footer_center"}, {field_key: "editor", translate: true, default_value: "<h4>My Links</h4> <p><a href='#'>Dribbble</a><br> <a href='#'>Twitter</a><br> <a href='#'>Facebook</a></p>"})
  group.add_field({"name"=>"Column Right", "slug"=>"footer_right"}, {field_key: "editor", translate: true, default_value: "<h4>About Theme</h4><p>This cute theme was created to showcase your work in a simple way. Use it wisely.</p>"})

end

#camaleon_first_on_uninstall_theme(theme) ⇒ Object



30
31
32
# File 'app/apps/themes/camaleon_first/main_helper.rb', line 30

def camaleon_first_on_uninstall_theme(theme)
  theme.destroy
end

#camaleon_first_settings(theme) ⇒ Object



6
7
8
# File 'app/apps/themes/camaleon_first/main_helper.rb', line 6

def camaleon_first_settings(theme)

end