selector = $selector ? $selector : '#drupal-modal'; $this->optionName = $option_name; $this->optionValue = $option_value; } /** * {@inheritdoc} */ public function render() { return [ 'command' => 'setDialogOption', 'selector' => $this->selector, 'optionName' => $this->optionName, 'optionValue' => $this->optionValue, ]; } }