Class: Pageflow::Admin::EntryPublicationStateIndicator

Inherits:
ViewComponent
  • Object
show all
Defined in:
app/views/components/pageflow/admin/entry_publication_state_indicator.rb

Instance Method Summary collapse

Methods inherited from ViewComponent

builder_method

Instance Method Details

#build(entry) ⇒ Object



6
7
8
9
10
11
12
# File 'app/views/components/pageflow/admin/entry_publication_state_indicator.rb', line 6

def build(entry)
  if entry.published?
    span(class: css_class(entry)) do
      span(tooltip_text(entry), class: 'tooltip_bubble')
    end
  end
end