1. Go to this page and download the library: Download ucscode/php-bs-modal 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/ */
ucscode / php-bs-modal example snippets
use Ucscode\HtmlComponent\BsModal\BsModal;
use Ucscode\HtmlComponent\BsModal\BsModalButton;
$modal = new BsModal([
'title' => 'Welcome Dev',
'message' => 'This is a bootstrap message',
]);
echo $modal->render();
$modal = new BsModal([
'message' => 'This is an example of a modal',
'closeButton' => false,
'backdropStatic' => true,
'closeOnEscape' => false,
'verticalCenter' => true,
'size' => 'sm',
'buttons' => [
new BsModalButton('Cancel'),
new BsModalButton('Continue'),
]
])
$modal->setTitle('Dynamic Modal')
$modal->setMessage('<p>This is dynamically generated content.</p>');