1. Go to this page and download the library: Download kv4nt/yii2-sweet-alert 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/ */
kv4nt / yii2-sweet-alert example snippets
Yii::$app->session->setFlash('success', 'This is the message');
echo \kv4nt\sweetalert\SweetAlert::widget();
// A replacement for the "prompt" function
echo \kv4nt\sweetalert\SweetAlert::widget([
'useSessionFlash' => false,
'options' => [
'timer' => null,
'type' => \kv4nt\sweetalert\SweetAlert::TYPE_INPUT,
'title' => 'An input!',
'text' => "Write something interesting",
'confirmButtonText' => "Yes, delete it!",
'closeOnConfirm' => false,
'showCancelButton' => true,
'animation' => "slide-from-top",
'inputPlaceholder' => "Write something"
],
'callback' => new \yii\web\JsExpression(' function(inputValue) {
if (inputValue === false) return false;
if (inputValue === "") {
swal.showInputError("You need to write something!");
return false;
}
swal("Good!", "You wrote: " + inputValue, "success");
}')
]);
php composer.phar
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.