Class: Radiant::AdminUI::NavTab
- Inherits:
-
Array
- Object
- Array
- Radiant::AdminUI::NavTab
- Defined in:
- lib/radiant/admin_ui.rb
Overview
The NavTab Class holds the structure of a navigation tab (including its sub-nav items).
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #<<(*args) ⇒ Object (also: #add)
- #[](id) ⇒ Object
- #add_item(*args) ⇒ Object
- #deprecated_add(name, url, caller) ⇒ Object
-
#initialize(name) ⇒ NavTab
constructor
A new instance of NavTab.
- #visible?(user) ⇒ Boolean
Constructor Details
#initialize(name) ⇒ NavTab
Returns a new instance of NavTab.
19 20 21 |
# File 'lib/radiant/admin_ui.rb', line 19 def initialize(name) @name = name end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
17 18 19 |
# File 'lib/radiant/admin_ui.rb', line 17 def name @name end |
Instance Method Details
#<<(*args) ⇒ Object Also known as: add
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/radiant/admin_ui.rb', line 31 def <<(*args) = args. item = args.size > 1 ? deprecated_add(*(args << caller)) : args.first raise DuplicateTabNameError.new("duplicate tab name `#{item.name}'") if self[item.name] item.tab = self if item.respond_to?(:tab=) if .empty? super(item) else .symbolize_keys! before = .delete(:before) after = .delete(:after) tab_name = before || after if self[tab_name] _index = index(self[tab_name]) _index += 1 unless before insert(_index, item) else super(item) end end end |
#[](id) ⇒ Object
23 24 25 26 27 28 29 |
# File 'lib/radiant/admin_ui.rb', line 23 def [](id) unless id.kind_of? Fixnum self.find {|| .name.to_s.titleize == id.to_s.titleize } else super end end |
#add_item(*args) ⇒ Object
55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/radiant/admin_ui.rb', line 55 def add_item(*args) = args. .symbolize_keys! before = .delete(:before) after = .delete(:after) tab_name = before || after if self[tab_name] _index = index(self[tab_name]) _index += 1 unless before insert(_index, NavSubItem.new(args.first, args.second)) else add NavSubItem.new(args.first, args.second) end end |
#deprecated_add(name, url, caller) ⇒ Object
74 75 76 77 |
# File 'lib/radiant/admin_ui.rb', line 74 def deprecated_add(name, url, caller) ActiveSupport::Deprecation.warn("admin.tabs.add is no longer supported in Radiant 0.9.x. Please update your code to use: \ntab \"Content\" do\n\tadd_item(...)\nend", caller) NavSubItem.new(name, url) end |
#visible?(user) ⇒ Boolean
70 71 72 |
# File 'lib/radiant/admin_ui.rb', line 70 def visible?(user) any? { |sub_item| sub_item.visible?(user) } end |