class Analyze in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views_ui/src/Form/Ajax/Analyze.php \Drupal\views_ui\Form\Ajax\Analyze
- 9 core/modules/views_ui/src/Form/Ajax/Analyze.php \Drupal\views_ui\Form\Ajax\Analyze
Displays analysis information for a view.
@internal
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, RedirectDestinationTrait, StringTranslationTrait
- class \Drupal\views_ui\Form\Ajax\ViewsFormBase implements ViewsFormInterface
- class \Drupal\views_ui\Form\Ajax\Analyze
- class \Drupal\views_ui\Form\Ajax\ViewsFormBase implements ViewsFormInterface
Expanded class hierarchy of Analyze
File
- core/
modules/ views_ui/ src/ Form/ Ajax/ Analyze.php, line 13
Namespace
Drupal\views_ui\Form\AjaxView source
class Analyze extends ViewsFormBase {
/**
* {@inheritdoc}
*/
public function getFormKey() {
return 'analyze';
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'views_ui_analyze_view_form';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$view = $form_state
->get('view');
$form['#title'] = $this
->t('View analysis');
$form['#section'] = 'analyze';
$analyzer = Views::analyzer();
$messages = $analyzer
->getMessages($view
->getExecutable());
$form['analysis'] = [
'#prefix' => '<div class="js-form-item form-item">',
'#suffix' => '</div>',
'#markup' => $analyzer
->formatMessages($messages),
];
// Inform the standard button function that we want an OK button.
$form_state
->set('ok_button', TRUE);
$view
->getStandardButtons($form, $form_state, 'views_ui_analyze_view_form');
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
/** @var \Drupal\views_ui\ViewUI $view */
$view = $form_state
->get('view');
$form_state
->setRedirectUrl($view
->toUrl('edit-form'));
}
}