public Analyze::buildForm(array $form, FormStateInterface $form_state)
Form constructor.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form structure.
Overrides FormInterface::buildForm
File
- core/modules/views_ui/src/Form/Ajax/Analyze.php, line 30
Class
- Analyze
- Displays analysis information for a view.
Namespace
Drupal\views_ui\Form\Ajax
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 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' ] = array ( '#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 ; } |
Please login to continue.