You are here

public function Skin::setOptions in Skinr 8.2

Sets the skin options.

Parameters

array $options: The array of options.

Return value

$this

Overrides SkinInterface::setOptions

File

src/Entity/Skin.php, line 164
Contains \Drupal\skinr\Entity\Skin.

Class

Skin
Defines the Skin entity.

Namespace

Drupal\skinr\Entity

Code

public function setOptions($options) {
  $this->options = $options;
  return $this;
}