Now that Drupalcon Chicago is over, I found some time to fix the slides from my session at the Drupal Dev Days in Brussels. It took some time because neither Google Presentations nor Slideshare apparently like the MgOpen font family.
The presentation is now on Slideshare at http://www.slideshare.net/fgm-osinet/drupal-views-development.
The progressive code samples are attached to this blog entry, as a tarred Git repository.
To use them, checkout each tag in turn: for the first exercise: git checkout demo1-hva
then for the second: git checkout demo2-hvd
demo5-area
. The list of samples goes like this:
- demo1-hva: hook_views_api
- demo2-hvd: hook_views_data
- demo3-hvdv: hook_views_default_views
- demo4-access: access plugin
- demo5-area: area handler
Video also available
Thanks for sharing the slides Frédéric!
Also note that the video of this presentation can be found here: http://bxl2011.drupaldays.org/node/259 or http://www.archive.org/details/DevelopingForViews3Api
Erratum: hook_views_pre_render()
Contrary to what I said during the presentation and what the documentation says,
hook_views_pre_render()
actually runs before the field handlerspre_render
methods, not after them.