Class: LWS::DigitalSignage::Player::Component

Inherits:
Generic::Model
  • Object
show all
Defined in:
lib/lws/apps/digital_signage.rb

Overview

The player component class

Defined Under Namespace

Classes: Part

Instance Attribute Summary collapse

Attributes inherited from Generic::Model

#created_at, #id, #updated_at, #url, #url_html

Method Summary

Methods inherited from Generic::Model

#deep_dup, #dig, #reload, #rollback, #save

Instance Attribute Details

#descriptionString?

Returns the description of the player component.

Returns:

  • (String, nil)

    the description of the player component



1139
# File 'lib/lws/apps/digital_signage.rb', line 1139

attribute :description

#model_idsArray<Integer>

Returns the IDs of the player models that use the component.

Returns:

  • (Array<Integer>)

    the IDs of the player models that use the component



1144
# File 'lib/lws/apps/digital_signage.rb', line 1144

attribute :model_ids

#modelsArray<Player::Model>

Returns the player models that use the component.

Returns:

  • (Array<Player::Model>)

    the player models that use the component



1148
1149
# File 'lib/lws/apps/digital_signage.rb', line 1148

has_many :models, class_name: "LWS::DigitalSignage::Player::Model",
uri: "player/components/:component_id/models(/:id)"

#nameString

Returns the name of the player component.

Returns:

  • (String)

    the name of the player component



1153
# File 'lib/lws/apps/digital_signage.rb', line 1153

attribute :name

#part_idsArray<Integer>

Returns the IDs of the parts the component is made out of.

Returns:

  • (Array<Integer>)

    the IDs of the parts the component is made out of



1157
# File 'lib/lws/apps/digital_signage.rb', line 1157

attribute :part_ids

#partsArray<Player::Component::Part>

Returns the parts the component is made out of.

Returns:



1161
1162
# File 'lib/lws/apps/digital_signage.rb', line 1161

has_many :parts, class_name: "LWS::DigitalSignage::Player::Component::Part",
uri: "player/components/:component_id/parts(/:id)"

#slugString (readonly)

Returns the slug(ified name) of the player component.

Returns:

  • (String)

    the slug(ified name) of the player component



1166
# File 'lib/lws/apps/digital_signage.rb', line 1166

attribute :slug

#supplierLWS::Auth::Company

Returns the supplier of the component part.

Returns:



1170
1171
1172
# File 'lib/lws/apps/digital_signage.rb', line 1170

belongs_to :supplier, class_name: "LWS::Auth::Company",
foreign_key: :supplier_id,
uri: "companies/:id"

#supplier_idInteger

Returns the ID of the supplier of the component part.

Returns:

  • (Integer)

    the ID of the supplier of the component part



1176
# File 'lib/lws/apps/digital_signage.rb', line 1176

attribute :supplier_id