Skip to content

Instantly share code, notes, and snippets.

View guaigua's full-sized avatar
🏠
Working from home

Germán Guaigua guaigua

🏠
Working from home
View GitHub Profile
@mattfarina
mattfarina / gist:751854
Created December 22, 2010 18:08
Make Drupal 7 search button an image button.
/**
* Implements hook_form_alter().
*
* Courtesy of JohnAlbin
*/
function THEMENAME_form_search_block_form_alter(&$form, &$form_state) {
$form['actions']['submit']['#type'] = 'image_button';
$form['actions']['submit']['#src'] = drupal_get_path('theme', 'THEMENAME') . '/images/button-search.png';
}
@gongo
gongo / dbd-oracle-install-on-ubuntu1204.org
Created August 15, 2012 13:43
Install document of DBD::Oracle on Ubuntu 12.04