Module: Engine2::ActionTabSupport
- Included in:
- ActionFormSupport, ActionListSupport, ActionViewSupport
- Defined in:
- lib/engine2/action.rb
Instance Method Summary collapse
Instance Method Details
#field_tabs(hash) ⇒ Object
451 452 453 454 |
# File 'lib/engine2/action.rb', line 451 def field_tabs hash [:tab_list] = hash.keys [:tabs] = hash.reduce({}){|h, (k, v)| h[k] = {name: k, loc: LOCS[k], field_list: v}; h} end |
#select_tabs(tabs, *args, &blk) ⇒ Object
446 447 448 449 |
# File 'lib/engine2/action.rb', line 446 def select_tabs tabs, *args, &blk field_tabs tabs select *tabs.map{|name, fields|fields}.flatten, *args, &blk end |
#tab(*tabs, options) ⇒ Object
456 457 458 459 460 461 |
# File 'lib/engine2/action.rb', line 456 def tab *tabs, raise E2Error.new("No tabs given to info") if tabs.empty? tabs.each do |tab| [:tabs][tab].merge! # rmerge ? end end |