Class: ActiveScaffold::Config::Update
- Defined in:
- lib/six-updater-web/vendor/plugins/active_scaffold/lib/active_scaffold/config/update.rb
Constant Summary collapse
- @@link =
ActiveScaffold::DataStructures::ActionLink.new('edit', :label => :edit, :type => :record, :security_method => :update_authorized?)
- @@nested_links =
false
Instance Attribute Summary collapse
-
#nested_links ⇒ Object
Returns the value of attribute nested_links.
Attributes inherited from Form
Attributes inherited from Base
Class Method Summary collapse
-
.link ⇒ Object
global level configuration ————————– the ActionLink for this action.
- .link=(val) ⇒ Object
Instance Method Summary collapse
-
#initialize(*args) ⇒ Update
constructor
A new instance of Update.
-
#label ⇒ Object
the label= method already exists in the Form base class.
Methods inherited from Form
#columns, #columns=, #multipart?
Methods inherited from Base
#crud_type, #formats, #formats=, inherited
Methods included from ActiveScaffold::Configurable
Constructor Details
#initialize(*args) ⇒ Update
Returns a new instance of Update.
4 5 6 7 |
# File 'lib/six-updater-web/vendor/plugins/active_scaffold/lib/active_scaffold/config/update.rb', line 4 def initialize(*args) super self.nested_links = self.class.nested_links end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class ActiveScaffold::Configurable
Instance Attribute Details
#nested_links ⇒ Object
Returns the value of attribute nested_links.
28 29 30 |
# File 'lib/six-updater-web/vendor/plugins/active_scaffold/lib/active_scaffold/config/update.rb', line 28 def nested_links @nested_links end |
Class Method Details
.link ⇒ Object
global level configuration
the ActionLink for this action
12 13 14 |
# File 'lib/six-updater-web/vendor/plugins/active_scaffold/lib/active_scaffold/config/update.rb', line 12 def self.link @@link end |
.link=(val) ⇒ Object
15 16 17 |
# File 'lib/six-updater-web/vendor/plugins/active_scaffold/lib/active_scaffold/config/update.rb', line 15 def self.link=(val) @@link = val end |
Instance Method Details
#label ⇒ Object
the label= method already exists in the Form base class
24 25 26 |
# File 'lib/six-updater-web/vendor/plugins/active_scaffold/lib/active_scaffold/config/update.rb', line 24 def label @label ? as_(@label) : as_(:update_model, :model => @core.label(:count => 1)) end |