filsh / yii2-flags
Flags widget for yii2 framework
Installs: 9 490
Dependents: 0
Suggesters: 0
Security: 0
Stars: 16
Watchers: 3
Forks: 6
Language:CSS
pkg:composer/filsh/yii2-flags
Requires
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2025-09-29 01:33:12 UTC
README
All icons found in https://www.gosquared.com/resources/flag-icons/ Sprite generated by http://ru.spritegen.website-performance.org/
Example usage
<?= Flags::widget([ 'flag' => 'UA', 'type' => Flags::FLAT_24, 'useSprite' => false // use sprite image? default is false ]); ?>
this code generate html
<style> .flag-UA{background-image: url("/assets/bae1ba2a/flat/24/UA.png");display: inline-block;width:24px;height:24px;} </style> .... <span id="w4" class="flags flag-UA"></span> ....