function User::buildOptionsForm
Provide the default form for setting options.
Overrides ArgumentDefaultPluginBase::buildOptionsForm
File
- 
              core/
modules/ user/ src/ Plugin/ views/ argument_default/ User.php, line 74  
Class
- User
 - Default argument plugin to extract a user from request.
 
Namespace
Drupal\user\Plugin\views\argument_defaultCode
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
  $form['user'] = [
    '#type' => 'checkbox',
    '#title' => $this->t('Also look for a node and use the node author'),
    '#default_value' => $this->options['user'],
  ];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.