Profiler/Backend

* added core functions nessecary for profiler
This commit is contained in:
Sarjuuk
2018-03-22 16:48:43 +01:00
parent b0a5f477c1
commit 3fd25ca889
32 changed files with 4386 additions and 619 deletions

View File

@@ -62,6 +62,15 @@ class AjaxFilter extends AjaxHandler
case 'spells':
$this->filter = (new SpellListFilter(true, $opts));
break;
case 'profiles':
$this->filter = (new ProfileListFilter(true, $opts));
break;
case 'guilds':
$this->filter = (new GuildListFilter(true, $opts));
break;
case 'arena-teams':
$this->filter = (new ArenaTeamListFilter(true, $opts));
break;
default:
return;
}