fixed crons, wrong classname

This commit is contained in:
Ulf Gebhardt 2017-01-10 02:11:09 +01:00
parent b3eb6eb232
commit d8a30d6628
9 changed files with 9 additions and 9 deletions

View File

@ -1,6 +1,6 @@
<?php
class cron_players_online_classic implements \SYSTEM\CRON\cronjob{
public static function run(){
new \LOG\PLAYER_COUNT_CLASSIC(\SAI\saimod_mojotrollz_server_handling::online_classic());
new \LOG\PLAYER_COUNT_CLASSIC(\SAI\saimod_mojotrollz_servers::online_classic());
}
}

View File

@ -1,6 +1,6 @@
<?php
class cron_players_online_classic_test implements \SYSTEM\CRON\cronjob{
public static function run(){
new \LOG\PLAYER_COUNT_CLASSIC_TEST(\SAI\saimod_mojotrollz_server_handling::online_classic_test());
new \LOG\PLAYER_COUNT_CLASSIC_TEST(\SAI\saimod_mojotrollz_servers::online_classic_test());
}
}

View File

@ -1,6 +1,6 @@
<?php
class cron_players_online_tbc implements \SYSTEM\CRON\cronjob{
public static function run(){
new \LOG\PLAYER_COUNT_TBC(\SAI\saimod_mojotrollz_server_handling::online_tbc());
new \LOG\PLAYER_COUNT_TBC(\SAI\saimod_mojotrollz_servers::online_tbc());
}
}

View File

@ -1,6 +1,6 @@
<?php
class cron_players_online_tbc_test implements \SYSTEM\CRON\cronjob{
public static function run(){
new \LOG\PLAYER_COUNT_TBC_TEST(\SAI\saimod_mojotrollz_server_handling::online_tbc_test());
new \LOG\PLAYER_COUNT_TBC_TEST(\SAI\saimod_mojotrollz_servers::online_tbc_test());
}
}

View File

@ -1,6 +1,6 @@
<?php
class cron_server_online_classic_realm implements \SYSTEM\CRON\cronjob{
public static function run(){
new \LOG\SERVER_ONLINE_CLASSIC_REALM(\SAI\saimod_mojotrollz_server_handling::sai_mod__SAI_saimod_mojotrollz_server_handling_action_run_classic_realm_status());
new \LOG\SERVER_ONLINE_CLASSIC_REALM(\SAI\saimod_mojotrollz_servers::sai_mod__SAI_saimod_mojotrollz_servers_action_run_classic_realm_status());
}
}

View File

@ -1,6 +1,6 @@
<?php
class cron_server_online_classic_world implements \SYSTEM\CRON\cronjob{
public static function run(){
new \LOG\SERVER_ONLINE_CLASSIC_WORLD(\SAI\saimod_mojotrollz_server_handling::sai_mod__SAI_saimod_mojotrollz_server_handling_action_run_classic_world_status());
new \LOG\SERVER_ONLINE_CLASSIC_WORLD(\SAI\saimod_mojotrollz_servers::sai_mod__SAI_saimod_mojotrollz_servers_action_run_classic_world_status());
}
}

View File

@ -1,6 +1,6 @@
<?php
class cron_server_online_classic_world_test implements \SYSTEM\CRON\cronjob{
public static function run(){
new \LOG\SERVER_ONLINE_CLASSIC_WORLD_TEST(\SAI\saimod_mojotrollz_server_handling::sai_mod__SAI_saimod_mojotrollz_server_handling_action_run_classic_world_test_status());
new \LOG\SERVER_ONLINE_CLASSIC_WORLD_TEST(\SAI\saimod_mojotrollz_servers::sai_mod__SAI_saimod_mojotrollz_servers_action_run_classic_world_test_status());
}
}

View File

@ -1,6 +1,6 @@
<?php
class cron_server_online_tbc_realm implements \SYSTEM\CRON\cronjob{
public static function run(){
new \LOG\SERVER_ONLINE_TBC_REALM(\SAI\saimod_mojotrollz_server_handling::sai_mod__SAI_saimod_mojotrollz_server_handling_action_run_tbc_realm_status());
new \LOG\SERVER_ONLINE_TBC_REALM(\SAI\saimod_mojotrollz_servers::sai_mod__SAI_saimod_mojotrollz_servers_action_run_tbc_realm_status());
}
}

View File

@ -1,6 +1,6 @@
<?php
class cron_server_online_tbc_world implements \SYSTEM\CRON\cronjob{
public static function run(){
new \LOG\SERVER_ONLINE_TBC_WORLD(\SAI\saimod_mojotrollz_server_handling::sai_mod__SAI_saimod_mojotrollz_server_handling_action_run_tbc_world_status());
new \LOG\SERVER_ONLINE_TBC_WORLD(\SAI\saimod_mojotrollz_servers::sai_mod__SAI_saimod_mojotrollz_servers_action_run_tbc_world_status());
}
}