Drupal Source Control Strategy?

I think a good strategy here is to use the install profile API. With install profile API you can do most things that using the Drupal admin tools do. Most core forms simply set variables in the variables table. To be able to sensibly version your non content database contents i.e. configuration it is wise … Read more

Using JQuery in Drupal 7

From the Drupal 7 upgrade guide: Javascript should be made compatible with other libraries than jQuery by adding a small wrapper around your existing code: (function ($) { // Original JavaScript code. })(jQuery); The $ global will no longer refer to the jquery object. However, with this construction, the local variable $ will refer to … Read more