Sha256: fafd7111c1dd72bca57f7e62f223cdbd278928e198241f90e03047d261ba882c
Contents?: true
Size: 1.16 KB
Versions: 11
Compression:
Stored size: 1.16 KB
Contents
module Themes module ThemeClass module MainHelper def self.included(klass) # klass.helper_method [:my_helper_method] rescue "" # here your methods accessible from views end def themeKey_settings(theme) # callback to save custom values of fields added in my_theme/views/admin/settings.html.erb end # callback called after theme installed def themeKey_on_install_theme(theme) # # Sample Custom Field # unless theme.get_field_groups.where(slug: "fields").any? # group = theme.add_field_group({name: "Main Settings", slug: "fields", description: ""}) # group.add_field({"name"=>"Background color", "slug"=>"bg_color"},{field_key: "colorpicker"}) # group.add_field({"name"=>"Links color", "slug"=>"links_color"},{field_key: "colorpicker"}) # group.add_field({"name"=>"Background image", "slug"=>"bg"},{field_key: "image"}) # end # # Sample Meta Value # theme.set_meta("installed_at", Time.current.to_s) # save a custom value end # callback executed after theme uninstalled def themeKey_on_uninstall_theme(theme); end end end end
Version data entries
11 entries across 11 versions & 1 rubygems