Sha256: 69a782d59931d3429ea34fed764fd9ecddbce279b8ed86a3426919aa5b8d25d5
Contents?: true
Size: 1.8 KB
Versions: 29
Compression:
Stored size: 1.8 KB
Contents
=begin Camaleon CMS is a content management system Copyright (C) 2015 by Owen Peredo Diaz Email: owenperedo@gmail.com This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License (GPLv3) for more details. =end module Themes::New::CustomHelper def theme_custom_settings(theme) case params[:action_name] when "settings" render "themes/new/views/admin/settings" when "save_settings" theme.set_field_values(params[:field_options]) flash[:notice] = "Settings saved!" redirect_to action: :settings, action_name: "settings" end end def theme_custom_on_install_theme(theme) unless theme.get_field_groups.where(slug: "theme_new_fields").any? group = theme.add_custom_field_group({name: "New theme settings", slug: "theme_new_fields", description: "new theme"}) group.add_manual_field({"name"=>"Background color", "slug"=>"theme_custom_bg_color"},{field_key: "colorpicker", required: true}) group.add_manual_field({"name"=>"Links color", "slug"=>"theme_custom_links_color"},{field_key: "colorpicker", required: true}) group.add_manual_field({"name"=>"Footer text", "slug"=>"theme_custom_footer_text"},{field_key: "editor", translate: true}) end theme.site.nav_menus.create(name: "Main Menu", slug: "main_menu") end def theme_custom_on_uninstall_theme(theme) theme.get_field_groups().destroy_all theme.destroy end end
Version data entries
29 entries across 29 versions & 1 rubygems