User login

Drupal

Usability improvements for Drupal 7 (or 8 by the time i get to it)

UI improvements for d7 installation
- take out language page. it's pointless.
- JQuery duplicate the time zones for the selected country (if any) at the top of the time zone selection list

Converting Webforms to Display Checkboxes and Radios in Multiple Columns

<?php
/**
 * Implement hook_form_alter().
 *
 * Integrates Multi-column checkboxes radios module with Webform module. Code
 * taken from module by haplo326 http://drupal.org/user/639916 posted to this
 * thread:  http://drupal.org/node/603900#comment-2228686
function agaricgenarts_form_alter(&$form) {

Use array_map() to apply a function to every element of an array

Say you have an array that's just a little messy and you need to apply a function to every value in that array... you probably want http://us2.php.net/array_map and not http://us.php.net/array_walk

To do this:

Passing an argument to a Drupal form through hook_menu and use of drupal_get_form

It works. Count how many parts to the menu path there are (text between slashes) and put that number in as a page argument in the array provided for this. (This actually means to grab the /next/ piece of the menu path to use , because the system's counting starts at zero.

Passing Arguments to Form Functions through hook_menu()
http://drupal.org/node/457782

Theme not registering modifications to the basic node template

zen subtheme not recognizing changes to node.tpl.php
but it IS taking modifications made to node-TYPE.tpl.php

The culprit?
og

Organic Group's node-og-group-post.tpl.php overrides node.tpl.php

Syndicate content