New module 'Autocomplete Widgets'
This commit is contained in:
parent
17a2a7a42d
commit
5af0c1f42e
10 changed files with 1125 additions and 0 deletions
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Autocomplete widgets integration with Views 3.x.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implementation of hook_views_plugins().
|
||||
*/
|
||||
function autocomplete_widgets_views_plugins() {
|
||||
return array(
|
||||
'exposed_form' => array(
|
||||
'autocomplete_widgets_basic' => array(
|
||||
'title' => t('Autocomplete widgets'),
|
||||
'help' => t('Allow to use autocomplete widgets for CCK Text and Number exposed filters.'),
|
||||
'handler' => 'autocomplete_widgets_basic_exposed_form_plugin',
|
||||
'uses row plugin' => FALSE,
|
||||
'uses fields' => TRUE,
|
||||
'uses options' => TRUE,
|
||||
'type' => 'normal',
|
||||
'parent' => 'basic',
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
Reference in a new issue