You are here

function thunder_article_form_node_form_alter in Thunder 8.4

Same name and namespace in other branches
  1. 8.5 modules/thunder_article/thunder_article.module \thunder_article_form_node_form_alter()
  2. 8.2 modules/thunder_article/thunder_article.module \thunder_article_form_node_form_alter()
  3. 8.3 modules/thunder_article/thunder_article.module \thunder_article_form_node_form_alter()
  4. 6.2.x modules/thunder_article/thunder_article.module \thunder_article_form_node_form_alter()
  5. 6.0.x modules/thunder_article/thunder_article.module \thunder_article_form_node_form_alter()
  6. 6.1.x modules/thunder_article/thunder_article.module \thunder_article_form_node_form_alter()

Implements hook_form_FORM_ID_alter().

File

modules/thunder_article/thunder_article.module, line 33
Thunder Article module hooks.

Code

function thunder_article_form_node_form_alter(&$form, FormStateInterface $form_state) {
  \Drupal::service('class_resolver')
    ->getInstanceFromDefinition(ThunderNodeForm::class)
    ->formAlter($form, $form_state);
}