class UiBibz::Ui::Core::Boxes::Components::CardFooter

Create a card footer

Attributes

Options

You can add HTML attributes using the html_options. You can pass arguments in options attribute:

Signatures

UiBibz::Ui::Core::Boxes::CardFooter.new(content, options = nil, html_options = nil)

UiBibz::Ui::Core::Boxes::CardFooter.new(options = nil, html_options = nil) do
  content
end

Examples

UiBibz::Ui::Core::Boxes::CardFooter.new.render

UiBibz::Ui::Core::Boxes::CardFooter.new do
  'Exemple'
end.render

Public Instance Methods

pre_render() click to toggle source

Render html tag

# File lib/ui_bibz/ui/core/boxes/components/card_footer.rb, line 37
def pre_render
  content_tag :div, glyph_and_content_html, html_options
end

Private Instance Methods

component_html_classes() click to toggle source
# File lib/ui_bibz/ui/core/boxes/components/card_footer.rb, line 47
def component_html_classes
  ['card-footer', muted, outline]
end
muted() click to toggle source
# File lib/ui_bibz/ui/core/boxes/components/card_footer.rb, line 43
def muted
  'text-muted' unless @options[:muted].nil?
end
outline() click to toggle source
# File lib/ui_bibz/ui/core/boxes/components/card_footer.rb, line 51
def outline
  "text-#{@options[:status]} border-#{@options[:status]} bg-transparent" if @options[:outline]
end