You are here

TranscodeJobSettingsForm.php in Video 8.2

File

modules/video_transcode/src/Form/TranscodeJobSettingsForm.php
View source
<?php

namespace Drupal\video_transcode\Form;

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

/**
 * Class ContentEntityExampleSettingsForm.
 *
 * @package Drupal\video_transcode\Form
 *
 * @ingroup video_transcode
 */
class TranscodeJobSettingsForm extends FormBase {

  /**
   * Returns a unique string identifying the form.
   *
   * @return string
   *   The unique string identifying the form.
   */
  public function getFormId() {
    return 'video_transcode_job_entity_settings';
  }

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

    // Empty implementation of the abstract submit class.
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    return $form;
  }

}

Classes

Namesort descending Description
TranscodeJobSettingsForm Class ContentEntityExampleSettingsForm.