$this->
sortSubmit($form,
$form_state);
if (!
empty($this->options
['exposed'
])) { $this->
submitExposeForm($form,
$form_state);
} } /**
* Shortcut to display the value form.
*/
protected function showSortForm(&
$form, FormStateInterface
$form_state) { $options =
$this->
sortOptions();
if (!
empty($options)) { $form['order'
] =
[ '#title' =>
$this->
t('Order',
[],
['context' => 'Sort order'
]),
'#type' => 'radios',
'#options' =>
$options,
'#default_value' =>
$this->options
['order'
],
];
} } protected function sortValidate(&
$form, FormStateInterface
$form_state) {}