You are here

public function PatternDefinitionSetting::setAllowExpose in UI Patterns Settings 8.2

Set Exposable property.

Parameters

string $allow_expose: Property value.

Return value

$this

File

src/Definition/PatternDefinitionSetting.php, line 249

Class

PatternDefinitionSetting
Pattern setting definition class.

Namespace

Drupal\ui_patterns_settings\Definition

Code

public function setAllowExpose($allow_expose) {
  $this->definition['allow_expose'] = $allow_expose;
  return $this;
}