Proposal: Modernise the Drupal update framework
The current Drupal update framework (roughly: hook_update_N
) is quite old. It is still firmly rooted in the procedural origins of Drupal. Also, it has several shortcomings.
The current Drupal update framework (roughly: hook_update_N
) is quite old. It is still firmly rooted in the procedural origins of Drupal. Also, it has several shortcomings.
Recently, I ran into a strange issue with a Drupal site. Phrases that were based on a count, using the formatPlural() method to determine the correct phrase to report a count, were all translated with the phrase meant for a count of 1.
The last three days, I was at the code sprint for the Drupal Camp Munich 2016, hosted at the Hubert Burda Media offices. It was a great experience. It was my first community code sprint, I've met some great people and I've learned a ton in three days. I have to thank the organizers of the sprint as well as the camp organizers, and of course my employer One Shoe to give me this opportunity. We have been working on the Media Initiative, to get a solid Media solution into Drupal core in an upcoming minor release (e.g.
Update 15/4/2017: This is a fairly old post, by now. I've done a more recent post on debugging drush on a setup with PhpStorm and Vagrant.
For a customer I've been running an import of old content into a Drupal installation and I got the feeling that the process seemed to run slower and slower. We say "meten is weten" in Dutch ("measuring is knowing"), so I wondered if it was possible to write a single SQL query to find out how many nodes were created per hour since the start of the import. This is the query I came up with:
SELECT FLOOR((node.changed - 1304604369) / 3600) AS hour, COUNT(nid) FROM node WHERE node.changed >= 1304604369 GROUP BY hour;
None of this Drupalified "there's a module for that" stuff. This is hard core, direct talking to Solr
Nice presentation from Drupal Dojo getting you right up to speed with SEO in Drupal.
Original article: Drupal Search Engine Optimization & the modules that get it done @ Drupal Dojo
It's taken a while, but I finally made some time to sort out my pictures from DrupalCon Copenhagen 2010. Everything is on Flickr, as usual. Eelke's DrupalCon Copenhagen 2010 pictures.
David Burns of Lullabot makes a comparison of using Panels and Context for building page layouts in Drupal.
I've recently been saying that one big advantage Drupal and WordPress have over Joomla is the centralized hosting of "third party" contributions (plugins/extensions/modules). Yes, Joomla has the extensions directory, but come actually downloading the software, you get directed to the individual developer's island website to do the download (where you might actually need to first register, are likely to needing to do some digging to find the actual download, etc.).