mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Renaming fulltext_phpbb to fulltext_native for clarity and changing a few variables
git-svn-id: file:///svn/phpbb/trunk@5850 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
9bc05019a6
commit
3148470919
2 changed files with 19 additions and 19 deletions
30
phpBB/includes/search/fulltext_phpbb.php → phpBB/includes/search/fulltext_native.php
Normal file → Executable file
30
phpBB/includes/search/fulltext_phpbb.php → phpBB/includes/search/fulltext_native.php
Normal file → Executable file
|
@ -22,19 +22,19 @@ include_once($phpbb_root_path . 'includes/search/search.' . $phpEx);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @package search
|
* @package search
|
||||||
* fulltext_phpbb
|
* fulltext_native
|
||||||
* phpBB's own db driven fulltext search
|
* phpBB's own db driven fulltext search
|
||||||
*/
|
*/
|
||||||
class fulltext_phpbb extends search_backend
|
class fulltext_native extends search_backend
|
||||||
{
|
{
|
||||||
var $stats;
|
var $stats;
|
||||||
var $word_length;
|
var $word_length;
|
||||||
|
|
||||||
function fulltext_phpbb(&$error)
|
function fulltext_native(&$error)
|
||||||
{
|
{
|
||||||
global $config;
|
global $config;
|
||||||
|
|
||||||
$this->word_length = array('min' => $config['fulltext_min_search_chars'], 'max' => $config['fulltext_max_search_chars']);
|
$this->word_length = array('min' => $config['fulltext_native_min_chars'], 'max' => $config['fulltext_native_max_chars']);
|
||||||
|
|
||||||
$error = false;
|
$error = false;
|
||||||
}
|
}
|
||||||
|
@ -101,7 +101,7 @@ class fulltext_phpbb extends search_backend
|
||||||
|
|
||||||
// check word length
|
// check word length
|
||||||
$clean_len = strlen(str_replace('*', '', $word));
|
$clean_len = strlen(str_replace('*', '', $word));
|
||||||
if (($clean_len < $config['fulltext_min_search_chars']) || ($clean_len > $config['fulltext_max_search_chars']))
|
if (($clean_len < $config['fulltext_native_min_chars']) || ($clean_len > $config['fulltext_native_max_chars']))
|
||||||
{
|
{
|
||||||
if ($prefixed)
|
if ($prefixed)
|
||||||
{
|
{
|
||||||
|
@ -206,7 +206,7 @@ class fulltext_phpbb extends search_backend
|
||||||
for ($i = 0, $n = sizeof($text); $i < $n; $i++)
|
for ($i = 0, $n = sizeof($text); $i < $n; $i++)
|
||||||
{
|
{
|
||||||
$text[$i] = trim($text[$i]);
|
$text[$i] = trim($text[$i]);
|
||||||
if (strlen($text[$i]) < $config['fulltext_min_search_chars'] || strlen($text[$i]) > $config['fulltext_max_search_chars'])
|
if (strlen($text[$i]) < $config['fulltext_native_min_chars'] || strlen($text[$i]) > $config['fulltext_native_max_chars'])
|
||||||
{
|
{
|
||||||
unset($text[$i]);
|
unset($text[$i]);
|
||||||
}
|
}
|
||||||
|
@ -724,7 +724,7 @@ class fulltext_phpbb extends search_backend
|
||||||
|
|
||||||
// Is the fulltext indexer disabled? If yes then we need not
|
// Is the fulltext indexer disabled? If yes then we need not
|
||||||
// carry on ... it's okay ... I know when I'm not wanted boo hoo
|
// carry on ... it's okay ... I know when I'm not wanted boo hoo
|
||||||
if (!$config['fulltext_load_search_upd'])
|
if (!$config['fulltext_native_load_upd'])
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -894,7 +894,7 @@ class fulltext_phpbb extends search_backend
|
||||||
|
|
||||||
// Is the fulltext indexer disabled? If yes then we need not
|
// Is the fulltext indexer disabled? If yes then we need not
|
||||||
// carry on ... it's okay ... I know when I'm not wanted boo hoo
|
// carry on ... it's okay ... I know when I'm not wanted boo hoo
|
||||||
if (!$config['fulltext_load_search_upd'])
|
if (!$config['fulltext_native_load_upd'])
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1034,23 +1034,23 @@ class fulltext_phpbb extends search_backend
|
||||||
|
|
||||||
$tpl = '
|
$tpl = '
|
||||||
<dl>
|
<dl>
|
||||||
<dt><label for="fulltext_load_search_upd">' . $user->lang['YES_SEARCH_UPDATE'] . ':</label><br /><span>' . $user->lang['YES_SEARCH_UPDATE_EXPLAIN'] . '</span></dt>
|
<dt><label for="fulltext_native_load_upd">' . $user->lang['YES_SEARCH_UPDATE'] . ':</label><br /><span>' . $user->lang['YES_SEARCH_UPDATE_EXPLAIN'] . '</span></dt>
|
||||||
<dd><input type="radio" id="fulltext_load_search_upd" name="config[fulltext_load_search_upd]" value="1"' . (($config['fulltext_load_search_upd']) ? ' checked="checked"' : '') . ' class="radio" /> ' . $user->lang['YES'] . ' <input type="radio" name="config[fulltext_load_search_upd]" value="0"' . ((!$config['fulltext_load_search_upd']) ? ' checked="checked"' : '') . ' class="radio" /> ' . $user->lang['NO'] . '</dd>
|
<dd><input type="radio" id="fulltext_native_load_upd" name="config[fulltext_native_load_upd]" value="1"' . (($config['fulltext_native_load_upd']) ? ' checked="checked"' : '') . ' class="radio" /> ' . $user->lang['YES'] . ' <input type="radio" name="config[fulltext_native_load_upd]" value="0"' . ((!$config['fulltext_native_load_upd']) ? ' checked="checked"' : '') . ' class="radio" /> ' . $user->lang['NO'] . '</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><label for="fulltext_min_search_chars">' . $user->lang['MIN_SEARCH_CHARS'] . ':</label><br /><span>' . $user->lang['MIN_SEARCH_CHARS_EXPLAIN'] . '</span></dt>
|
<dt><label for="fulltext_native_min_chars">' . $user->lang['MIN_SEARCH_CHARS'] . ':</label><br /><span>' . $user->lang['MIN_SEARCH_CHARS_EXPLAIN'] . '</span></dt>
|
||||||
<dd><input id="fulltext_min_search_chars" type="text" size="3" maxlength="3" name="config[fulltext_min_search_chars]" value="' . (int) $config['fulltext_min_search_chars'] . '" /></dd>
|
<dd><input id="fulltext_native_min_chars" type="text" size="3" maxlength="3" name="config[fulltext_native_min_chars]" value="' . (int) $config['fulltext_native_min_chars'] . '" /></dd>
|
||||||
</dl>
|
</dl>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><label for="fulltext_max_search_chars">' . $user->lang['MAX_SEARCH_CHARS'] . ':</label><br /><span>' . $user->lang['MAX_SEARCH_CHARS_EXPLAIN'] . '</span></dt>
|
<dt><label for="fulltext_native_max_chars">' . $user->lang['MAX_SEARCH_CHARS'] . ':</label><br /><span>' . $user->lang['MAX_SEARCH_CHARS_EXPLAIN'] . '</span></dt>
|
||||||
<dd><input id="fulltext_max_search_chars" type="text" size="3" maxlength="3" name="config[fulltext_max_search_chars]" value="' . (int) $config['fulltext_max_search_chars'] . '" /></dd>
|
<dd><input id="fulltext_native_max_chars" type="text" size="3" maxlength="3" name="config[fulltext_native_max_chars]" value="' . (int) $config['fulltext_native_max_chars'] . '" /></dd>
|
||||||
</dl>
|
</dl>
|
||||||
';
|
';
|
||||||
|
|
||||||
// These are fields required in the config table
|
// These are fields required in the config table
|
||||||
return array(
|
return array(
|
||||||
'tpl' => $tpl,
|
'tpl' => $tpl,
|
||||||
'config' => array('fulltext_load_search_upd' => 'bool', 'fulltext_min_search_chars' => 'integer', 'fulltext_max_search_chars' => 'integer')
|
'config' => array('fulltext_native_load_upd' => 'bool', 'fulltext_native_min_chars' => 'integer', 'fulltext_native_max_chars' => 'integer')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -87,9 +87,9 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('forward_pm', '1');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('full_folder_action', '2');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('full_folder_action', '2');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_mysql_max_word_len', '254');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_mysql_max_word_len', '254');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_mysql_min_word_len', '4');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_mysql_min_word_len', '4');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_load_search_upd', '1');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_load_upd', '1');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_max_search_chars', '14');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_max_chars', '14');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_min_search_chars', '3');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_min_chars', '3');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('gzip_compress', '0');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('gzip_compress', '0');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('hot_threshold', '25');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('hot_threshold', '25');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('icons_path', 'images/icons');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('icons_path', 'images/icons');
|
||||||
|
@ -170,7 +170,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_block_size'
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_gc', '7200');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_gc', '7200');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_indexing_state', '');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_indexing_state', '');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_interval', '0');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_interval', '0');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_type', 'fulltext_phpbb');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_type', 'fulltext_native');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_store_results', '1800');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_store_results', '1800');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_allow_deny', '1');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_allow_deny', '1');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_allow_empty_referer', '1');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_allow_empty_referer', '1');
|
||||||
|
|
Loading…
Add table
Reference in a new issue