Just a small component I've made as an exercise and for fun which make available Iconic icons to Yii and don't collide with Bootstrap's Glyphicons.
Created and Tested with Yii 1.1.12.
Extract the zip contents to a folder. Example: ext.EIconic
Add the following code to config/main.php
~~~ [php] ... 'preload' => array( ... 'eiconic', ... ), ...
// application components
'components' => array(
'eiconic' => array(
'class' => 'ext.EIconic.components.EIconic',
),
),
...~~~
The classes defined by Iconic are like: "iconic-xxx". To use it, you must reference the icons as "icon-iconic-xxx"
Iconic web site CSS code grabbed from here: Jasny Project
Be the first person to leave a comment
Please login to leave your comment.