Skip to main content

Articles tagged with "Drupal core"

Drupal node load references : Drupal 7

12th Jul 2011

In Drupal 6, if you called node_load then what you'd be returned would be your own copy of the node to change and modify as you pleased, but in Drupal 7 this was changed. By default, what you actually get back from a node_load is essentially a reference to a global singleton for that node. This has the interesting side effect of meaning that if you change anything in the node object, you are probably changing everyone else's copies of that node too. This is explained in this issue: http://drupal.org/node/154859

So, why should you care? Well, in the right circumstances...

Read more

Playing second fiddle

16th Mar 2011

While at Drupalcon I couldn't help but want to get involved in core development of Drupal. I have been involved on the fringe of Drupal core development for a number of years, and I've found bugs, submitted patches, tested others' patches, fixed others' patches and contributed documentation, but to get really involved in development you have to basically immerse yourself in it. It's really hard to follow the issue queues and get any sense of what is going on in the Drupal community. I just don't have the time to invest in core development.

Also at Drupalcon there were quite...

Read more

Drupalcon Chicago - Core conversations - Content vs Configuration

15th Mar 2011

Drupalcon Chicago had a track for 'Core conversations' that were discussion focused and about the future of Drupal core.

On the first day there were two sessions essentially about managing content and configuration in Drupal. They focused on the differences, similarity and possible solutions for moving content and configuration around and between sites.

Greg Dunlap started a discussion about configuration management, he suggested that we shouldn't try to define a line between content and configuration. He said that actually the problems of being able to stage content, and being able to move configuration around were essentially the same, and could...

Read more

Drupalcon Chicago - Keynote - Dries Buytaert

8th Mar 2011

Dries kicked off another Drupalcon today by giving his keynote presentation to the community. If you missed it then you can view it on the [Drupalcon website][1] but read on for my summary and thoughts.

Dries has been doing these keynotes for a while now, and every one gets better and more polished. Today's was no exception. Dries summarised the process of Drupal 7 development and suggested changes and improvements to the Drupal 8 development workflow. He also outlined some of his priorities for Drupal 8.

In the keynote at Drupalcon Chicago, Dries pulled out several good things that came...

Read more