By editor, 15 January, 2016 Form redirection on submit Tags Drupal 8 Code Form Example : (Insert this line in to your form submitForm() methode) Redirect to the user page ( Redirection on form submit) $form_state->setRedirect('user.page');
By editor, 15 January, 2016 Show a Form on another page Tags Drupal 8 Code Form Example : Display user login form on a page
By editor, 15 January, 2016 Create a Form with Drupal 8 using Form API Tags Drupal 8 Code Module Form Drupal 9 Step 1: Create a module. (Example)
By editor, 12 January, 2016 Set the initial Auto Increment value Tags Drupal 8 Code Database Example: $con = Drupal\Core\Database\Database::getConnection(); $start_value = 100000; $query = "ALTER TABLE {the_table} AUTO_INCREMENT = $start_value"; $con->query($query);
By editor, 12 January, 2016 Display contents using Drupal8 Render API Tags Drupal 8 Code Theming Render arrays