darkknight13/php-bootstrap

There is no license information available for the latest version (dev-master) of this package.

This is a PHP Library to generate Bootstrap HTML

dev-master 2016-11-16 05:46 UTC

This package is not auto-updated.

Last update: 2025-01-22 22:06:13 UTC


README

Version 0.1.0 Beta

Build Status Coverage Status

This is a PHP Library to generate Bootstrap HTML

Progress Bar

Bootstrap_ProgressBar::initiate('main_progress_bar') //need to initialize using id of the progressbar
      ->add_bar('60') // adding a progress bar with percentage 60
      ->type('default') // progress bar style types, supports all bootstrap styles
      ->showtext() //showing the text in bar
      ->striped() // striped bar
      ->state('active') // animate the striped bar
      ->generate(); // generate the html

Above code will generate a Progress like - Alt Text