You are here

DataCollectorTableTestForm.php in Charts 5.0.x

Same filename and directory in other branches
  1. 8.4 tests/modules/charts_test/src/Form/DataCollectorTableTestForm.php

File

tests/modules/charts_test/src/Form/DataCollectorTableTestForm.php
View source
<?php

namespace Drupal\charts_test\Form;

use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;

/**
 * Class DataCollectorTableTestForm.
 *
 * @package Drupal\charts_test\Form
 */
class DataCollectorTableTestForm extends FormBase {
  const INITIAL_ROWS = 3;
  const INITIAL_COLUMNS = 2;

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'charts_data_collector_table_test_form';
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $form['series'] = [
      '#type' => 'chart_data_collector_table',
      '#initial_rows' => self::INITIAL_ROWS,
      '#initial_columns' => self::INITIAL_COLUMNS,
      '#table_drag' => FALSE,
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {

    // {"name":"Number of players","color":"#0d233a","data":
    // [50,60,100,132,133,234]},{"name":"Number of coaches","color":.
    // "#ff0000","data":
    // [50,80,100,32,133,234]}.
    // A,b,c,d,e,f
  }

}

Classes

Namesort descending Description
DataCollectorTableTestForm Class DataCollectorTableTestForm.