Upload files to 'AdminMail/src/AdminMail'

This commit is contained in:
Josh North 2017-06-28 13:36:05 -04:00
parent 66371f9311
commit 83d0cb0663
2 changed files with 59 additions and 3 deletions

View File

@ -0,0 +1,45 @@
<?php
namespace AdminMail;
use pocketmine\scheduler\PluginTask;
use pocketmine\Player;
use pocketmine\event\player\PlayerJoinEvent;
use pocketmine\plugin\PluginBase;
use pocketmine\event\Listener;
use pocketmine\command\Command;
use pocketmine\command\CommandSender;
use pocketmine\utils\Config;
use AdminMail\Main;
class EmailTask extends PluginTask {
public function __construct(Main $main, string $adminmail, string $playername, string $adminsubject, string $adminmessage) {
parent::__construct($main);
$this->playername = $playername;
$this->adminmail = $adminmail;
$this->adminsubject = $adminsubject;
$this->adminmessage = $adminmessage;
}
public function onRun($tick) { //
$player = $this->getOwner()->getServer()->getPlayer($this->playername);
$name = $player->getName();
$admin = $this->adminmail;
$admin1 = $this->adminsubject;
$admin1 = str_replace("PNAME", $name, $admin1);
$admin2 = $this->adminmessage;
$admin2 = str_replace("PNAME", $name, $admin2);
// $adminmail = $this->getConfig()->get("adminmail");
mail($admin, $admin1, $admin2);
}
}

View File

@ -11,7 +11,8 @@ use pocketmine\command\CommandSender;
use pocketmine\utils\Config;
class AdminMail extends PluginBase implements Listener {
class Main extends PluginBase implements Listener {
public function onLoad() { # Called when the plugin is being loaded by the server
$this->getLogger()->info("Loading plugin..."); # Logs to the console
@ -33,10 +34,20 @@ class AdminMail extends PluginBase implements Listener {
}
}
public function onJoin(PlayerJoinEvent $event) { # Called when a player joins
$player = $event->getPlayer();
$name = $player->getName();
$adminmail = $this->getConfig()->get("adminmail");
#mail($adminmail, "PMMP - $name joined", "Hello, player $name has joined the server.");
$adminsubject = $this->getConfig()->get("adminsubject");
$adminmessage = $this->getConfig()->get("adminmessage");
//mail($adminmail, "PMMP - $name joined", "Hello, player $name has joined the server.");
//sleep(10);
$task = new EmailTask($this, $adminmail, $name, $adminsubject, $adminmessage); // Create the new class Task by calling
$this->getServer()->getScheduler()->scheduleDelayedTask($task, 5*20); // Counted in ticks (1 second = 20 ticks)
}
}