By editor, 6 December, 2015 Create a module setting page link on Drupal 8 Tags Drupal 8 Code Module name : simple_analyse
By editor, 5 December, 2015 Create a custom permission in Drupal 8 Tags Drupal 8 Code Permission Drupal 9 Example with a module 'mymodule' Step 1. Create if not exist yet, mymodule.permissions.yml (root of mymodule) Add your new permission like:
By editor, 5 December, 2015 Update a node / Entity programmatically in Drupal 8 Tags Drupal 8 Code Node Update a node: Example 1 : Update title $node = \Drupal\node\Entity\Node::load($nid); $node->setTitle('The new Title') $node->save();
By editor, 4 December, 2015 Create a node With date field Tags Drupal 8 Code Node It is same as normal node creation but must be in format "Y-m-d" (YYYY-MM-DD) Example: