raoul2000/yii2-bootswatch-asset Use Bootswatch theme in your Yii application with minimum effort

extensionbootstrapassetscssskinbootswatchthemestlye

yii2-bootswatch-asset

Asset bunlde around the Bootswatch theme suite. Visit Bootswatch for more.

Latest Stable Version Total Downloads

This extension is for Bootstrap prior to version 3. If you're using Bootstrap 4, please use the yii2-bootswatch4-asset extension.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist raoul2000/yii2-bootswatch-asset "*"

or add

"raoul2000/yii2-bootswatch-asset": "*"

to the require section of your composer.json file.

Usage

To use a bootswatch theme in your Yii2 application add the BootswatchAsset bundle to your main AppAsset bundle:


// ./assets/AppAsset.php

class AppAsset extends AssetBundle
{
    public $basePath = '@webroot';
    public $baseUrl = '@web';
    public $css = [
        'css/site.css',
    ];
    public $js = [
    ];
    public $depends = [
        'yii\web\YiiAsset',
        'raoul2000\bootswatch\BootswatchAsset',
    ];
}
?>

Then at some point you must select the theme name you want to use. In the example below, the theme 'cosmo' is set in the main layout.


// ./views/layouts/main.php

raoul2000\bootswatch\BootswatchAsset::$theme = 'cosmo';
AppAsset::register($this);

License

yii2-bootswatch-asset is released under the BSD 3-Clause License. See the bundled LICENSE.md for details.

Changelog

version 1.2.7

  • update to bootswatch 3.3.7

version 1.2.6

  • update to bootswatch 3.3.6+1

version 1.2.5

version 1.2.4

  • update dependency : thomaspark/bootswatch version 3.3.5

version 1.2.3

  • update dependency : thomaspark/bootswatch version 3.3.4

version 1.2.2

  • fix : publish woff2 font "glyphicons-halflings-regular.woff2" (thanks to jwerner)

version 1.2.1

  • update dependency : thomaspark/bootswatch version 3.3.2 after bootstrap 3.3.2 has been release

version 1.2.0

  • update dependency : thomaspark/bootswatch version 3.3.1 in order to include latest bootswatch themes (journal, sandstone).
  • code style
  • update README.md : add warning

version 1.1.1

  • fix : minified CSS was not correctly handled. Now, if YII_ENV_DEV is defined bootstrap.css is published, otherwise its bootstrap.min.css

version 1.1.0

  • fix : gylphicons not accessible.
  • enh : optimize publication process. When no theme is set, no publication is performed.
  • enh : no theme is selected by default.

version 1.0.0

  • Initial release

Statistics

Downloads
GitHub Stars
GitHub Forks

Releases

Comments



1.2.7 is the latest of 10 releases



BSD-3-Clause license
Stats
20 github stars & 7 github forks
14 downloads in the last day
194 downloads in the last 30 days
40985 total downloads