first import 7.x-1.4

This commit is contained in:
bachy
2013-03-15 17:32:30 +01:00
commit 9cc5ba4cfa
68 changed files with 17899 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?php
/**
* Processor for making searches case-insensitive.
*/
class SearchApiIgnoreCase extends SearchApiAbstractProcessor {
protected function process(&$value) {
$value = drupal_strtolower($value);
}
}