Sha256: 1b2633393a0ab2923e4f58c9131032e6aa810011a395b97e2071f44e0d650105

Contents?: true

Size: 1.05 KB

Versions: 5

Compression:

Stored size: 1.05 KB

Contents

module UiBibz::Ui::Core

  # Create a card block title
  #
  # ==== 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::CardBlockLink.new(content, options = nil, html_options = nil)
  #
  #   UiBibz::Ui::Core::CardBlockLink.new(options = nil, html_options = nil) do
  #     content
  #   end
  #
  # ==== Examples
  #
  #   UiBibz::Ui::Core::CardBlockLink.new.render
  #
  #   UiBibz::Ui::Core::CardBlockLink.new do
  #     'Exemple'
  #   end.render
  #
  class CardBlockLink < Component

    # See UiBibz::Ui::Core::Component.initialize
    def initialize content = nil, options = nil, html_options = nil, &block
      super
    end

    # Render html tag
    def render
      link_to content, options[:url], html_options
    end

  private

    def component_html_classes
      "card-link"
    end

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ui_bibz-2.0.0.alpha14 lib/ui_bibz/ui/core/card/components/block/card_block_link.rb
ui_bibz-2.0.0.alpha13 lib/ui_bibz/ui/core/card/components/block/card_block_link.rb
ui_bibz-2.0.0.alpha12 lib/ui_bibz/ui/core/card/components/block/card_block_link.rb
ui_bibz-2.0.0.alpha11 lib/ui_bibz/ui/core/card/components/block/card_block_link.rb
ui_bibz-2.0.0.alpha10 lib/ui_bibz/ui/core/card/components/block/card_block_link.rb