コード例 #1
0
ファイル: BallzAuth.php プロジェクト: Vavaballz/BallzAuth
 /**
  * Disabling the plugin
  * @return type
  */
 public function onDisable()
 {
     // Save all the users
     User::save();
     self::$logger->info("Disabled !");
 }
コード例 #2
0
ファイル: SaveUsers.php プロジェクト: Vavaballz/BallzAuth
 /**
  * Save the users on run
  * @param $currentTick
  */
 public function onRun($currentTick)
 {
     Config::getLogger()->info("Saving of all users ...");
     User::save();
 }