implemented generic filters
- what which index does needs to be implemented in the implementation - differences to wowhead * strings in criteria are more lenient and will also work with partial matches * the ? and * wildcards are supported
This commit is contained in:
parent
58316679bf
commit
c045fe1081
22 changed files with 3312 additions and 2072 deletions
|
|
@ -20,7 +20,7 @@ require 'includes/class.database.php';
|
|||
|
||||
// autoload any List-Classes
|
||||
spl_autoload_register(function ($class) {
|
||||
if (strpos($class, 'List'))
|
||||
if (strpos($class, 'List') && !strpos($class, 'Filter'))
|
||||
require 'includes/class.'.strtr($class, ['List' => '']).'.php';
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue