custom_search_i18n.admin.inc in Custom Search 7
Admin settings for custom search taxonomy
File
modules/custom_search_i18n/custom_search_i18n.admin.incView source
<?php
/**
* @file
* Admin settings for custom search taxonomy
*/
/**
* Implements hook_help().
*/
function custom_search_i18n_help($path, $arg) {
switch ($path) {
case 'admin/config/search/custom_search/taxonomy':
$output = t('Select the vocabularies to present as search options in the search block. If none is selected, no selector will be displayed.');
break;
}
return $output;
}
function custom_search_i18n_admin() {
$form = _custom_search_i18n_admin_form();
return system_settings_form($form);
}
/**
* Content admin form.
*/
function _custom_search_i18n_admin_form() {
$form['custom_search_i18n_search_language'] = array(
'#type' => 'select',
'#title' => t('Search content from'),
'#options' => array(
'all' => t('any language'),
'current' => t('current language'),
'current_neutral' => t('current language and language neutral'),
),
'#description' => t('Choose which language will be used to search content.'),
'#default_value' => variable_get('custom_search_i18n_search_language', 'all'),
);
return $form;
}
Functions
Name | Description |
---|---|
custom_search_i18n_admin | |
custom_search_i18n_help | Implements hook_help(). |
_custom_search_i18n_admin_form | Content admin form. |