94 lines
3.4 KiB
PHP
94 lines
3.4 KiB
PHP
<?php
|
|
/**
|
|
* @file
|
|
* materio_search.strongarm.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_strongarm().
|
|
*/
|
|
function materio_search_strongarm() {
|
|
$export = array();
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'advancedsearchindex_en';
|
|
$strongarm->value = 'ontologie_en';
|
|
$export['advancedsearchindex_en'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'advancedsearchindex_fr';
|
|
$strongarm->value = 'onthologie_fr';
|
|
$export['advancedsearchindex_fr'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'advancedsearchvocs';
|
|
$strongarm->value = array(
|
|
15 => '15',
|
|
);
|
|
$export['advancedsearchvocs'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'autocompletesearchindex';
|
|
$strongarm->value = 'referencement';
|
|
$export['autocompletesearchindex'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'autocompletesearchindex_en';
|
|
$strongarm->value = 'referencement_en';
|
|
$export['autocompletesearchindex_en'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'autocompletesearchindex_fr';
|
|
$strongarm->value = 'referencement_fr';
|
|
$export['autocompletesearchindex_fr'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'brevessearchindex_en';
|
|
$strongarm->value = 'breves_en';
|
|
$export['brevessearchindex_en'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'brevessearchindex_fr';
|
|
$strongarm->value = 'breves_fr';
|
|
$export['brevessearchindex_fr'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'googleanalytics_site_search';
|
|
$strongarm->value = FALSE;
|
|
$export['googleanalytics_site_search'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'mainsearchindex';
|
|
$strongarm->value = 'materiaux_breves';
|
|
$export['mainsearchindex'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'mainsearchindex_en';
|
|
$strongarm->value = 'materiaux_breves_en';
|
|
$export['mainsearchindex_en'] = $strongarm;
|
|
|
|
return $export;
|
|
}
|