123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611 |
- <?php
- function hook_search_api_service_info() {
- $services['example_some'] = array(
- 'name' => t('Some Service'),
- 'description' => t('Service for some search engine.'),
- 'class' => 'SomeServiceClass',
-
- 'init args' => array('foo' => 'Foo', 'bar' => 42),
- );
- $services['example_other'] = array(
- 'name' => t('Other Service'),
- 'description' => t('Service for another search engine.'),
- 'class' => 'OtherServiceClass',
- );
- return $services;
- }
- function hook_search_api_service_info_alter(array &$service_info) {
- foreach ($service_info as $id => $info) {
- $service_info[$id]['class'] = 'MyProxyServiceClass';
- $service_info[$id]['example_original_class'] = $info['class'];
- }
- }
- function hook_search_api_item_type_info() {
-
- $types = array();
- foreach (entity_get_property_info() as $type => $property_info) {
- if ($info = entity_get_info($type)) {
- $types[$type] = array(
- 'name' => $info['label'],
- 'datasource controller' => 'SearchApiEntityDataSourceController',
- 'entity_type' => $type,
- );
- }
- }
- return $types;
- }
- function hook_search_api_item_type_info_alter(array &$infos) {
-
-
- foreach ($infos as $type => $info) {
- $info['is_entity'] = (bool) entity_get_info($type);
- }
- }
- function hook_search_api_data_type_info() {
- return array(
- 'example_type' => array(
- 'name' => t('Example type'),
-
- 'fallback' => 'string',
- 'conversion callback' => 'example_data_type_conversion',
- ),
- );
- }
- function hook_search_api_data_type_info_alter(array &$infos) {
- $infos['example_type']['name'] .= ' 2';
- }
- function hook_search_api_alter_callback_info() {
- $callbacks['example_random_alter'] = array(
- 'name' => t('Random alteration'),
- 'description' => t('Alters all passed item data completely randomly.'),
- 'class' => 'ExampleRandomAlter',
- 'weight' => 100,
- );
- $callbacks['example_add_comments'] = array(
- 'name' => t('Add comments'),
- 'description' => t('For nodes and similar entities, adds comments.'),
- 'class' => 'ExampleAddComments',
- );
- return $callbacks;
- }
- function hook_search_api_alter_callback_info_alter(array &$callbacks) {
- if (!empty($callbacks['example_random_alter'])) {
- $callbacks['example_random_alter']['name'] = t('Even more random alteration');
- $callbacks['example_random_alter']['class'] = 'ExampleUltraRandomAlter';
- }
- }
- function hook_search_api_processor_info() {
- $callbacks['example_processor'] = array(
- 'name' => t('Example processor'),
- 'description' => t('Pre- and post-processes data in really cool ways.'),
- 'class' => 'ExampleSearchApiProcessor',
- 'weight' => -1,
- );
- $callbacks['example_processor_minimal'] = array(
- 'name' => t('Example processor 2'),
- 'description' => t('Processor with minimal description.'),
- 'class' => 'ExampleSearchApiProcessor2',
- );
- return $callbacks;
- }
- function hook_search_api_processor_info_alter(array &$processors) {
- if (!empty($processors['example_processor'])) {
- $processors['example_processor']['weight'] = -20;
- }
- }
- function hook_search_api_index_items_alter(array &$items, SearchApiIndex $index) {
- foreach ($items as $id => $item) {
- if ($id % 5 == 0) {
- unset($items[$id]);
- }
- }
- example_store_indexed_entity_ids($index->item_type, array_keys($items));
- }
- function hook_search_api_items_indexed(SearchApiIndex $index, array $item_ids) {
- if ($index->getEntityType() == 'node') {
-
- cache_clear_all(url('search'), 'cache_page');
- }
- }
- function hook_search_api_query_alter(SearchApiQueryInterface $query) {
-
- if ($query->getIndex()->getEntityType()) {
- $info = entity_get_info($query->getIndex()->getEntityType());
- $query->condition($info['entity keys']['id'], 0, '<>');
- }
- }
- function hook_search_api_results_alter(array &$results, SearchApiQueryInterface $query) {
- if ($query->getOption('search id') == 'search_api_views:my_search_view:page') {
-
- $vars = array(
- '@keys' => $query->getOriginalKeys(),
- '@num' => $results['result count'],
- );
- watchdog('my_module', 'Search view with query "@keys" had @num results.', $vars, WATCHDOG_DEBUG);
- }
- }
- function hook_search_api_server_load(array $servers) {
- foreach ($servers as $server) {
- db_insert('example_search_server_access')
- ->fields(array(
- 'server' => $server->machine_name,
- 'access_time' => REQUEST_TIME,
- ))
- ->execute();
- }
- }
- function hook_search_api_server_insert(SearchApiServer $server) {
- db_insert('example_search_server')
- ->fields(array(
- 'server' => $server->machine_name,
- 'insert_time' => REQUEST_TIME,
- ))
- ->execute();
- }
- function hook_search_api_server_update(SearchApiServer $server) {
- if ($server->name != $server->original->name) {
- db_insert('example_search_server_name_update')
- ->fields(array(
- 'server' => $server->machine_name,
- 'update_time' => REQUEST_TIME,
- ))
- ->execute();
- }
- }
- function hook_search_api_server_delete(SearchApiServer $server) {
- db_insert('example_search_server_update')
- ->fields(array(
- 'server' => $server->machine_name,
- 'update_time' => REQUEST_TIME,
- ))
- ->execute();
- db_delete('example_search_server')
- ->condition('server', $server->machine_name)
- ->execute();
- }
- function hook_default_search_api_server() {
- $defaults['main'] = entity_create('search_api_server', array(
- 'name' => 'Main server',
- 'machine_name' => 'main',
-
- ));
- return $defaults;
- }
- function hook_default_search_api_server_alter(array &$defaults) {
- $defaults['main']->name = 'Customized main server';
- }
- function hook_search_api_index_load(array $indexes) {
- foreach ($indexes as $index) {
- db_insert('example_search_index_access')
- ->fields(array(
- 'index' => $index->machine_name,
- 'access_time' => REQUEST_TIME,
- ))
- ->execute();
- }
- }
- function hook_search_api_index_insert(SearchApiIndex $index) {
- db_insert('example_search_index')
- ->fields(array(
- 'index' => $index->machine_name,
- 'insert_time' => REQUEST_TIME,
- ))
- ->execute();
- }
- function hook_search_api_index_update(SearchApiIndex $index) {
- if ($index->name != $index->original->name) {
- db_insert('example_search_index_name_update')
- ->fields(array(
- 'index' => $index->machine_name,
- 'update_time' => REQUEST_TIME,
- ))
- ->execute();
- }
- }
- function hook_search_api_index_reindex(SearchApiIndex $index, $clear = FALSE) {
- db_insert('example_search_index_reindexed')
- ->fields(array(
- 'index' => $index->id,
- 'update_time' => REQUEST_TIME,
- ))
- ->execute();
- }
- function hook_search_api_index_delete(SearchApiIndex $index) {
- db_insert('example_search_index_update')
- ->fields(array(
- 'index' => $index->machine_name,
- 'update_time' => REQUEST_TIME,
- ))
- ->execute();
- db_delete('example_search_index')
- ->condition('index', $index->machine_name)
- ->execute();
- }
- function hook_default_search_api_index() {
- $defaults['main'] = entity_create('search_api_index', array(
- 'name' => 'Main index',
- 'machine_name' => 'main',
-
- ));
- return $defaults;
- }
- function hook_default_search_api_index_alter(array &$defaults) {
- $defaults['main']->name = 'Customized main index';
- }
- function example_data_type_conversion($value, $original_type, $type) {
- if ($type === 'example_type') {
-
- return array(
- 'value' => $value,
- 'original' => $original_type,
- );
- }
-
-
- return NULL;
- }
|