robots-dreams / footstep
PHP classes to render bootstrap elements
v1.0.2
2025-08-27 17:32 UTC
Requires
- php: >=8.1
- twbs/bootstrap: ^5.3
README
PHP classes to render bootstrap elements
The package is still a work in progress and will be extended in the future.
At the moment only buttons are supported.
Example Usage:
<?php echo new Button(TypeEnum::SUCCESS, 'Speichern') ?>
<?php echo new Button(TypeEnum::WARNING, 'Speichern', outline: OutlineType::OUTLINE) ?>
<?php echo new Button(TypeEnum::DARK, 'Speichern', ButtonSizeEnum::SM, OutlineType::OUTLINE) ?>
<?php echo new Button(TypeEnum::DANGER, 'Speichern', ButtonSizeEnum::LG, OutlineType::OUTLINE) ?>
<?php echo new Button(TypeEnum::INFO, 'Speichern', disabled: true) ?>
<?php echo new Button(TypeEnum::INFO, 'Speichern', href: 'https://www.google.de') ?>






