', $txt['search_weights'], '
-
-
', $context['relative_weights']['search_weight_frequency'], '%
-
-
', $context['relative_weights']['search_weight_age'], '%
-
-
', $context['relative_weights']['search_weight_length'], '%
-
-
', $context['relative_weights']['search_weight_subject'], '%
-
-
', $context['relative_weights']['search_weight_first_message'], '%
-
-
', $context['relative_weights']['search_weight_sticky'], '%
-
', $txt['search_weights_total'], '
-
', $context['relative_weights']['total'], '
100%
';
}
/**
* Select the search method.
*/
function template_select_search_method()
{
global $context, $scripturl, $txt, $modSettings;
echo '
', $txt['search_method'], '
';
}
/**
* Create a search index.
*/
function template_create_index()
{
global $context, $scripturl, $txt;
echo '
';
}
/**
* Display a progress page while creating a search index.
*/
function template_create_index_progress()
{
global $context, $scripturl, $txt;
echo '
';
}
/**
* Done creating a search index.
*/
function template_create_index_done()
{
global $scripturl, $txt;
echo '
', $txt['search_create_index'], '
';
}
/**
* Add or edit a search engine spider.
*/
function template_spider_edit()
{
global $context, $scripturl, $txt;
echo '
';
}
/**
* Show... spider... logs...
*/
function template_show_spider_logs()
{
global $context, $txt, $scripturl;
// Standard fields.
template_show_list('spider_logs');
echo '
';
}
/**
* Show... spider... stats...
*/
function template_show_spider_stats()
{
global $context, $txt, $scripturl;
// Standard fields.
template_show_list('spider_stat_list');
echo '
';
}
?>