You are here

function panelizer_search_api_alter_callback_info in Panelizer 7.3

Implements hook_search_api_alter_callback_info().

File

./panelizer.module, line 1520
The Panelizer module attaches panels to entities, providing default panels and allowing each panel to be configured independently by privileged users.

Code

function panelizer_search_api_alter_callback_info() {
  $info = array();
  $info['panelizer'] = array(
    'name' => t('Panelizer'),
    'description' => t('Add the content from the Panelizer "Full page override" to the search index.'),
    'class' => 'PanelizerSearchApiAlterCallback',
  );
  return $info;
}