Download the PHP package geoffry304/yii2-symbol-picker without Composer
On this page you can find all versions of the php package geoffry304/yii2-symbol-picker. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download geoffry304/yii2-symbol-picker
More information about geoffry304/yii2-symbol-picker
Files in geoffry304/yii2-symbol-picker
Package yii2-symbol-picker
Short Description Widget to select Font Awesome symbol for Yii2.
License MIT
Informations about the package yii2-symbol-picker
YII2 Symbol Picker
Widget to select a symbol from the Font Awesome collection for Yii 2.0 PHP Framework.
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.
A demonstration of SymbolPicker widget is here.
Prerequisite
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:
There are other methods to make Font Awesome available to your site.
Installation
The preferred way to install SymbolPicker is through Composer. Either add the following to the require section of your composer.json
file:
"geoffry304/yii2-symbol-picker": "*"
Or run:
$ php composer.phar require geoffry304/yii2-symbol-picker "*"
You can manually install SymbolPicker by downloading the source in ZIP-format.
Using SymbolPicker
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
).
Symbolpicker is in namespace geoffry304\symbolpicker
.
For instance, to associate SymbolPicker with the attribute 'icon'
in a form view, use code like this:
use geoffry304\symbolpicker\SymbolPicker;
...
<?= $form->field($model, 'icon')->widget(SymbolPicker::className()) ?>
...
options
SymbolPicker runs 'out of the box'. It has the following options to modify it's behaviour:
- labels: list of labels used by the widget. If a label is set to
false
, the corresponding element is not rendered. - icons: list of selectable Font Awesome icons. Each item is the class name of an icon, without the
'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/. - colors: list of selectable colors. Each item is a color name, which will generate a
'col-***'
color class name. For instance'darkblue'
refers to the class name'col-darkblue'
. Default: a selection of CSS3 named colors. - effects: list of selectable Font Awesome effects. Each item is the class name of an effect, without the
'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. - buttonOptions: array of HTML options for the dropdown buttons. Default:
[]
(empty array). You may use this to set the CSS class of the buttons.
Of coarse, SymbolPicker also has the normal InputWidget properties.
Color classes
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.