Class: Avo::Resources::Controls::CreateButton

Inherits:
BaseControl
  • Object
show all
Defined in:
lib/avo/resources/controls/create_button.rb

Instance Attribute Summary

Attributes inherited from BaseControl

#as_index_control, #color, #confirmation_message, #icon, #icon_class, #label, #size, #style, #title

Instance Method Summary collapse

Methods inherited from BaseControl

#type

Constructor Details

#initialize(**args) ⇒ CreateButton

Returns a new instance of CreateButton.



5
6
7
8
9
10
11
# File 'lib/avo/resources/controls/create_button.rb', line 5

def initialize(**args)
  super(**args)

  if args[:item].present?
    @label = I18n.t("avo.create_new_item", item: args[:item].humanize(capitalize: false)) if label.nil?
  end
end