1. Go to this page and download the library: Download gewinum/asyncforms library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
gewinum / asyncforms example snippets
$form = new SimpleForm(function(Player $player, ?int $answer = null) {
if (!isset($answer)) {
$player->sendMessage("Form is closed!");
return;
}
if ($answer !== 0) {
$player->sendMessage("You've tapped close button!");
return;
}
$form = new SimpleForm(function(Player $player, ?int $answer = null) {
if (!isset($answer)) {
$player->sendMessage("Form is closed");
return;
}
if ($answer !== 0) {
$player->sendMessage("Okay we will not");
return;
}
$player->sendMessage("Yay!");
});
$form->setTitle("Great!");
$form->setContent("We will register you now.");
$form->addButton("Ok!");
$form->addButton("No");
$player->sendForm($form);
});
$form->setTitle("Welcome!");
$form->setContent("Welcome to the server! How can we help you?");
$form->addButton("I want to register!");
$form->addButton("Close");
$player->sendForm($form);
$form = new SimpleForm(
title: "Welcome!",
content: "Welcome to the server! How can we help you?",
buttons: [
"register" => new Button("I want to register!"),
"close" => new Button("Close")
]
);
$player->sendForm($form);
yield from $form->awaitForResponse();
$response = $form->getResponse();
if ($response->isClosed()) {
$player->sendMessage("Form was closed");
return;
}
if ($response->getSelectedButton() === "close") {
$player->sendMessage("Okay we will not");
return;
}
$form = new SimpleForm(
title: "Great!",
content: "We will register you now.",
buttons: [
"ok" => new Button("Ok!"),
"no" => new Button("No")
]
);
$player->sendForm($form);
yield from $form->awaitForResponse();
$response = $form->getResponse();
if ($response->isClosed()) {
$player->sendMessage("Form is closed");
return;
}
if ($response->getSelectedButton() === "no") {
$player->sendMessage("Okay we will not");
return;
}
$player->sendMessage("Yay!");
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.