Sha256: b695a172d61b058d8b2feb4505551d15e77c714037a40c389b7c84cf5b8c32eb
Contents?: true
Size: 1.66 KB
Versions: 5
Compression:
Stored size: 1.66 KB
Contents
module CmAdmin module ViewHelpers module PageInfoHelper def page_title @action.title || @model.title || "#{@model.ar_model.name} | #{@action.name&.titleize} | Admin" end def action_title show_action = CmAdmin::Models::Action.find_by(@model, name: 'show') title = @model.current_action.page_title || show_action.page_title if title title = (title.class == Symbol) ? @ar_object.send(title) : title else title = "#{@model.name}" case action_name when 'index' title + " list record" when 'new' title + " create record" when 'edit' title + " edit record" end end end def action_description show_action = CmAdmin::Models::Action.find_by(@model, name: 'show') if @model.current_action.page_description title = @model.current_action.page_description elsif show_action.page_description title = show_action.page_description else title = "#{@model.name}" case action_name when 'index' title + " list record" when 'new' title + " new record" when 'edit' title + " edit record" end end end def page_url(action_name=@action.name, ar_object=nil) base_path = CmAdmin::Engine.mount_path + '/' + @model.name.downcase.pluralize case action_name when 'index' base_path when 'new' base_path + '/new' when 'edit' base_path + "/#{ar_object.id}" + '/edit' end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems