Agaric Design Collective

Theme Views FastSearch Search Bar

Average: 4 (2 votes)
By Benjamin Melançon
on 12 Nov
1 comment

Key words and phrases

themed the findaction viewsfastsearch field theme fast search view searchbox glue module snippet find names of forms

Tags

Description

This implementation of hook form_alter (use your own module name instead of wsf_action) will cut down on the giant textfield used by Views FastSearch by default.

The commented out code is what you can use to identify what the heck is going on in any form.

<?php
function wsf_action_form_alter($form_id, &$form) {
// global $user; if ($user->uid==1) drupal_set_message("Form ID: " . $form_id);
// global $user; if ($user->uid==1) drupal_set_message('<pre>' . print_r($form, TRUE) . '</pre>');
 
switch ($form_id) {  // not $form['#id']
   
case 'views_filters':
      if (isset(
$form['filter0']) && $form['filter0']['#type'] == 'textfield') {
       
$form['filter0']['#size'] = 20;
      }
  }
}
?>

That's a quick hack to make your Views_FastSearch form look better... the Agaric way.

 

form_alter is an awesome

form_alter is an awesome Drupal hook, and that's all you need to use it really-- the commented out statements can be used to print everything about a form, which you can then use to mess with the elements.

One thing to do is for all strings put in single quotation marks which aren't part of the printout but are necessary when you collapse the form variables into linear array paths.

Posted by Benjamin Melançon on Mon, 2007-11-12 21:59
Post new comment
The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <blockquote> <h1> <h2> <h3> <h4> <h5> <h6> <small> <pre> <strike> <sub> <sup> <kbd> <s>
  • Lines and paragraphs break automatically.
  • Web page addresses and e-mail addresses turn into links automatically.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Copy the characters (respecting upper/lower case) from the image.