You are here

QuickNodeCloneParagraphSettingsForm.php in Quick Node Clone 8

File

src/Form/QuickNodeCloneParagraphSettingsForm.php
View source
<?php

namespace Drupal\quick_node_clone\Form;


/**
 * Module settings form.
 */
class QuickNodeCloneParagraphSettingsForm extends QuickNodeCloneEntitySettingsForm {

  /**
   * The machine name of the entity type.
   *
   * @var string
   *   The entity type id i.e. node
   */
  protected $entityTypeId = 'paragraph';

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

}

Classes

Namesort descending Description
QuickNodeCloneParagraphSettingsForm Module settings form.