1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-31 03:29:23 +02:00

[ticket/11050] add access specifiers to native search properties

PHPBB3-11050
This commit is contained in:
Dhruv 2012-08-15 12:04:55 +05:30
parent 3dc42c67d3
commit 5a7ed3c567

View File

@ -22,19 +22,74 @@ if (!defined('IN_PHPBB'))
*/
class phpbb_search_fulltext_native extends phpbb_search_base
{
/**
* Associative array holding index stats
* @var array
*/
protected $stats = array();
protected $word_length = array();
protected $search_query;
protected $common_words = array();
/**
* Associative array stores the min and max length
* @var array
*/
public $word_length = array();
/**
* Contains tidied search query
* @var string
*/
public $search_query;
/**
* Contains common words
* common words are words with length less/more than min/max length
* @var array
*/
public $common_words = array();
/**
* Post ids of posts containing words that are to be included
*/
protected $must_contain_ids = array();
/**
* Post ids of posts containing words that should not be included
*/
protected $must_not_contain_ids = array();
/**
* Post ids of posts containing atleast one word that needs to be excluded
*/
protected $must_exclude_one_ids = array();
/**
* Relative path to board root
* @var string
*/
protected $phpbb_root_path;
/**
* PHP Extension
* @var string
*/
protected $php_ext;
/**
* Config class object
* @var phpbb_config
*/
protected $config;
/**
* DBAL class object
* @var dbal
*/
protected $db;
/**
* User class object
* @var user
*/
protected $user;
/**