By editor, 19 November, 2015 Drupal 8.0.0 released Today we released Drupal 8.0.0, the first fully supported release of Drupal 8! This is the biggest update ever to Drupal, our open source content management platform. Here are just a few of the hundreds of improvements in Drupal 8:
By editor, 19 November, 2015 Drupal crash - What can I do !!! Tags Drupal 8 Server Error As the solution depend on your error, first of all, you must find why drupal crash. 1. First thing is, You must check the serveur error log. # tail -f /var/log/apache2/error.log
By editor, 19 November, 2015 Create a link with Drupal 8 like l() and url() on D7 Tags Drupal 8 Code Exemple:
By editor, 19 November, 2015 Create the module help page on Drupal 8 Tags Drupal 8 Code Here an exemple : Module name : mymodule
By editor, 19 November, 2015 Get the current page URI on Drupal 8 Tags Drupal 8 Code Here an example to get the current page path programmatically in Drupal 8 $current_url = Url::fromRoute('<current>'); $path = $current_url->toString();