dev-master
9999999-devWidget to select Font Awesome symbol for Yii2.
MIT
The Requires
extension yii2 yii widget font-awesome
1.0
1.0.0.0Widget to select Font Awesome symbol for Yii2.
MIT
The Requires
extension yii2 yii widget font-awesome
Wallogit.com
2017 © Pedro Peláez
Widget to select Font Awesome symbol for Yii2.
SymbolPicker lets you select the class name for a symbol in Font Awesome. It also lets you select class names for a color and for an additional effect., (*1)
A demonstration of SymbolPicker widget is here., (*2)
SymbolPicker only makes sense if Font Awesome is loaded in your site. The easiest way to achieve this, is to add a line to the css property of the site's AppAsset.php file (look into the assets directory), like so:, (*3)
<?php
class AppAsset extends AssetBundle
{
public $css = [
'//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css',
'css/site.css'
... // other css files
];
...
}
?>
There are other methods to make Font Awesome available to your site., (*4)
The preferred way to install SymbolPicker is through Composer. Either add the following to the require section of your composer.json file:, (*5)
"geoffry304/yii2-symbol-picker": "*", (*6)
Or run:, (*7)
$ php composer.phar require geoffry304/yii2-symbol-picker "*", (*8)
You can manually install SymbolPicker by downloading the source in ZIP-format., (*9)
SymbolPicker is a Yii 2.0 InputWidget. Like any other InputWidget it can be associated with a model and an attribute (or with a name and a value)., (*10)
Symbolpicker is in namespace geoffry304\symbolpicker., (*11)
For instance, to associate SymbolPicker with the attribute 'icon' in a form view, use code like this:, (*12)
use geoffry304\symbolpicker\SymbolPicker; ... <?= $form->field($model, 'icon')->widget(SymbolPicker::className()) ?> ...
SymbolPicker runs 'out of the box'. It has the following options to modify it's behaviour:, (*13)
false, the corresponding element is not rendered.'fa-' part. So, for instance 'calculator' refers to the 'fa-calculator' icon. Default: all of the Font Awesome icons, excluding the aliases. Version 4.3. See: http://fontawesome.io/icons/.'col-***' color class name. For instance 'darkblue' refers to the class name 'col-darkblue'. Default: a selection of CSS3 named colors.'fa-' part. So, for instance 'flip-horizontal' refers to the 'fa-flip-horizontal' effect. Default: most of the Font Awesome effects. Version 4.2.See: http://fontawesome.io/examples/#rotated-flipped.[] (empty array). You may use this to set the CSS class of the buttons.Of coarse, SymbolPicker also has the normal InputWidget properties., (*14)
CSS color classes for all the CSS3 named colors are in the file assets\symbol-colors.css. You may use this in other parts of your project., (*15)
Widget to select Font Awesome symbol for Yii2.
MIT
extension yii2 yii widget font-awesome
Widget to select Font Awesome symbol for Yii2.
MIT
extension yii2 yii widget font-awesome