Sha256: d1d6d34e26bea720274bafd204308fbb0ff395200dd101c9a7002b366e9819a0
Contents?: true
Size: 1.22 KB
Versions: 6
Compression:
Stored size: 1.22 KB
Contents
# frozen_string_literal: true require 'ui_bibz/ui/core/boxes/components/card_footer' module UiBibz::Ui::Ux::Containers::Components # Create a panel footer # # ==== Attributes # # * +content+ - Content of element # * +options+ - Options of element # * +html_options+ - Html Options of element # # ==== Options # # You can add HTML attributes using the +html_options+. # You can pass arguments in options attribute: # # ==== Signatures # # UiBibz::Ui::Core::Boxes::PanelFooter.new(content, options = nil, html_options = nil) # # UiBibz::Ui::Core::Boxes::PanelFooter.new(options = nil, html_options = nil) do # content # end # # ==== Examples # # UiBibz::Ui::Core::Boxes::PanelFooter.new.render # # UiBibz::Ui::Core::Boxes::PanelFooter.new do # 'Exemple' # end.render # class PanelFooter < UiBibz::Ui::Core::Component # See UiBibz::Ui::Core::Component.initialize def initialize(content = nil, options = nil, html_options = nil, &block) super end # Render html tag def pre_render content_tag :div, glyph_and_content_html, html_options end private def component_html_classes super << ['panel-footer'] end end end
Version data entries
6 entries across 6 versions & 1 rubygems