You are here

function toc_node_entity_set_form_value in TOC Node 8

1 string reference to 'toc_node_entity_set_form_value'
toc_node_form_node_form_alter in ./toc_node.module
Implementation of hook_form_FORM_ID_alter().

File

./toc_node.module, line 292
This is the main module file for TOC Node.

Code

function toc_node_entity_set_form_value($element, FormStateInterface $form_state, $form) {
  $values = $form_state
    ->getValues();
  $build_info = $form_state
    ->getBuildInfo();
  $node = $build_info['callback_object']
    ->getEntity();
  $node->toc_node = $values['toc_node'];
}