| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/modip/modules/views/modules/ |
Upload File : |
<?php
// $Id: search.views_convert.inc,v 1.2 2009/06/30 19:14:27 merlinofchaos Exp $
/**
* @file
* Field conversion for fields handled by this module.
*/
function search_views_convert($display, $type, &$view, $field, $id = NULL) {
switch ($type) {
case 'filter':
switch ($field['tablename']) {
case 'temp_search_results':
switch ($field['field']) {
case 'word':
$view->set_item_option($display, 'filter', $id, 'table', 'search_index');
$view->set_item_option($display, 'filter', $id, 'field', 'keys');
break;
}
break;
}
break;
}
}