You are heredrupalcon
drupalcon
Drupal Module Coding at Drupalcon Chicago
by Irakli Nadareishvili, Director of Product Development at Phase2, @inadarei on Twitter.
Erik Summerfield, Software Developer at Phase2
You will probably have a number of contrib modules, and the queries that these modules execute can have a huge impact on the performance of your site.
Performance on the web is usually described by speed and scalability.
Speed is measured in seconds, and tells you how long it takes a single user to load a single page and all the assets that make up that page.
Apache Solr Coding from Drupalcon Chicago
Drupal interacts with Solr through HTTP. Drupal sends content into the search index via XML documents. It walks through a node and there's a library that converts the node's attributes to XML, and Solr indexes the XML. Solr accepts documents POSTed to /update, and a different POST can be made to delete. Searching is done via GETs.
If you set up Solr locally (you need Java installed) the server will run at the same default port that is specified in the module, so by installing the module and enabling it, Solr should work out of the box.
Making Maps Beautiful at Drupalcon Chicago
Why Make Maps Beautiful?
Google has done amazing stuff with making maps on the web work well. But, Google Maps has become a bit like stock photography; it's not that exciting or novel anymore.
Part of why you want a map to be customized is to match the branding of your site, but maps are also a really powerful way of presenting information to people. The first thing that you do when you look at a map is to say "where am I on this map?" and see where you fit. Maps are a powerful way of presenting information, see the Pakistan Flood Response Map.
Views for Coders at Drupalcon Chicago
by Karim Ratib, infojunkie on d.o. He's the author/maintainer of Views Bulk Operations, Views Hacks, Sheetnode, Feeds Oauth, and Feeds Topics. He's currently a freelancer living in Vancouver.
Objectives
To give you a conceptual overview of how to code views, without going into the details, which can be a bit overwhelming. We'll be talking about high-level stuff. Hopefully by the end of the talk you'll be able to open some Views code and maybe even start coding your own views.
Unifying Drupal Configuration at Drupalcon Chicago
by David Strauss @DavidStrauss on Twitter
Issues we're facing
Drupal has too many overlapping configuration methods. It's confusing and not good enough for developers coming from other platforms. The code relies on configurations which could be in the database or could be in the database. You never take code from production to development and you never push your database to production.
I don't think contrib can solve this.
Terminology
Notes from Configuration Management in Drupal 8
by Howard Tyson
Core isn't really good at either popular type of configuration management. Nothing totally really covers it. I'm in the camp that configuration and content are different but they're connected to each other; exactly where that line is, is not something I'm going to specify.
Media Presentation at Drupalcon Chicago
by Jacob Singh and Aaron Winborn
Jacob:
Media is a module for Dupal 7. It extends the file management capabilities in core. We take the base ways that you can handle files and added enhancements. It's a framework for handling media meta-data such as authorship or quality information, as well as a consistent user interface for managing files. These are the goals of Media.
Apache Solr Search Mastery
Peter Wolanin and Robert Douglass work on the Solr search module in Drupal. They both work for Acquia.
Overview
- What is solr and how do you run it locally
- Getting Drupal data into Solr
- Changes in Drupal 7
- Field API integration
- Searching Solr from Drupal
- Modifying what's searched and the results
- Theming search results
The code examples in these presentation work in Drupal 7; the Drupal 6 module is very similar with slight modifications.
Introduction to Drupal 7 Entities and Fields
First, some definitions:
Entity
An entity is a container for bundles. Entities can contain multiple bundles. Examples of an eitity are Node, User, File, Taxonomy term, Taxonomy vocabulary.
Bundle
A bundle is a set of fields that are treated as a group by the Field API. Buncles are simillar in concept to a node type in Drupal 6. You can have a bundle that describes an article or a photo or a story, for example.
Fields
Advanced Drush
Advanced Drush
Moshe Weitzman
Drush is the Drupal shell that allows you to affect a Drupal site from command line. You can write scripts to increase:
- Ease of installation and configuration
- Speed of maintenance
- Reproducability of actions
A reaction from the audience (check out the guy to the left)