1. Go to this page and download the library: Download aniftyco/skeletor 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/ */
aniftyco / skeletor example snippets
use NiftyCo\Skeletor\Skeletor;
return function (Skeletor $skeletor) {
// ...
};
$skeletor->workspace
$skeletor->text('Enter your name:', 'John Doe');
$skeletor->textarea('Enter a description:');
$skeletor->password('Enter your password:');
$skeletor->confirm('Do you agree?', true);
$skeletor->select('Choose an option:', ['Option 1', 'Option 2', 'Option 3']);
$skeletor->search('Search for an option:', function ($query) {
return ['Result 1', 'Result 2', 'Result 3'];
});
$skeletor->multisearch('Search for multiple options:', function ($query) {
return ['Result 1', 'Result 2', 'Result 3'];
});
$skeletor->spin('Processing...', function () {
// long running task
return true;
});
$skeletor->progress('Processing items...', 100, function ($progress) {
for ($i = 0; $i < 100; $i++) {
$progress->advance();
}
});
$skeletor->info('This is an info message.');
$skeletor->alert('This is an alert message.');
$skeletor->warning('This is a warning message.');
$skeletor->error('This is an error message.');
$skeletor->intro('Welcome to the setup wizard.');
$skeletor->outro('Setup complete.');