1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| function plugin_search_init () {
// Allow search via GET method 'index.php?plugin=search&word=keyword'
// NOTE: Also allows DoS to your site more easily by SPAMbot or worm or ...
$this->cont['PLUGIN_SEARCH_DISABLE_GET_ACCESS'] = 0; // 1, 0
$this->cont['PLUGIN_SEARCH_MAX_LENGTH'] = 80;
$this->cont['PLUGIN_SEARCH_MAX_BASE'] = 16; // #search(1,2,3,...,15,16)
$this->config['context'] = 'conv'; // ( '': none or 'db': Use database (light) or 'conv': Convert (heavy) )
$this->config['resultMax'] = 500;
// Load Language
$this->load_language();
}
|