' . t('About') . ''; $output .= '

' . t('A special content type for Yaffs documents.') . '

'; return $output; default: } } /** * Implements hook_theme(). */ function yaffs_document_theme() { return [ 'yaffs_document' => [ 'template' => 'yaffs_document', 'render element' => 'children', ], ]; } /** * Implements hook_form_FORM_ID_alter(). */ function yaffs_document_form_node_papertest_form_alter(&$form, \Drupal\Core\Form\FormStateInterface $form_state, $form_id) { /* $form['field_odt']['#ajax']['progress'] = array( 'callback' => 'ajax_yaffs_document_body_callback', 'wrapper' => 'body-odt-div', 'method' => 'replace', 'effect' => 'fade', ); $form['body']['#prefix'] = '
'; $form['body']['#suffix'] = '
'; */ } function ajax_yaffs_document_body_callback($form, $form_state) { /* $form['body']['#default'] = 'hello'; return /*$form['body']; '

hello

'; */ }