2017 © Pedro Peláez
 

yii2-extension yii2-fontawesome

Asset Bundle for Yii2 with Font Awesome

image

devmastersbv/yii2-fontawesome

Asset Bundle for Yii2 with Font Awesome

  • Wednesday, January 11, 2017
  • by DevMastersBV
  • Repository
  • 1 Watchers
  • 0 Stars
  • 83 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 38 Forks
  • 0 Open issues
  • 51 Versions
  • 15 % Grown

The README.md

Yii 2 Font Awesome Asset Bundle

This extension provides a assets bundle with Font Awesome for Yii framework 2.0 applications and helper to use icons., (*1)

For license information check the LICENSE-file., (*2)

License Latest Stable Version Latest Unstable Version Total Downloads, (*3)

Code Status

Scrutinizer Code Quality Code Coverage Travis CI Build Status Dependency Status, (*4)

Support

Update to 2.17

Be careful in version 2.17 deprecated methods were removed. More in the changelog., (*5)

Installation

The preferred way to install this extension is through composer., (*6)

Either run, (*7)

composer require "rmrevin/yii2-fontawesome:~2.17"

or add, (*8)

"rmrevin/yii2-fontawesome": "~2.17",

to the require section of your composer.json file., (*9)

Usage

In view, (*10)

rmrevin\yii\fontawesome\AssetBundle::register($this);

or as dependency in your main application asset bundle, (*11)

class AppAsset extends AssetBundle
{
    // ...

    public $depends = [
        // ...
        'rmrevin\yii\fontawesome\AssetBundle'
    ];
}

Class reference

Namespace: rmrevin\yii\fontawesome;, (*12)

Class FA or FontAwesome

  • static FA::icon($name, $options=[]) - Creates an component\Icon that can be used to FontAwesome html icon
    • $name - name of icon in font awesome set.
    • $options - additional attributes for i.fa html tag.
  • static FA::stack($name, $options=[]) - Creates an component\Stack that can be used to FontAwesome html icon
    • $options - additional attributes for span.fa-stack html tag.

Class component\Icon ($Icon)

  • (string)$Icon - render icon
  • $Icon->render() - DEPRECATED! render icon
  • $Icon->tag($value) - DEPRECATED! set another html tag for icon (default i)
    • $value - name of tag
  • $Icon->addCssClass($value) - add to html tag css class in $value
    • $value - name of css class
  • $Icon->inverse() - add to html tag css class fa-inverse
  • $Icon->spin() - add to html tag css class fa-spin
  • $Icon->fixedWidth() - add to html tag css class fa-fw
  • $Icon->ul() - add to html tag css class fa-ul
  • $Icon->li() - add to html tag css class fa-li
  • $Icon->border() - add to html tag css class fa-border
  • $Icon->pullLeft() - add to html tag css class pull-left
  • $Icon->pullRight() - add to html tag css class pull-right
  • $Icon->size($value) - add to html tag css class with size
    • $value - size value (variants: FA::SIZE_LARGE, FA::SIZE_2X, FA::SIZE_3X, FA::SIZE_4X, FA::SIZE_5X)
  • $Icon->rotate($value) - add to html tag css class with rotate
    • $value - rotate value (variants: FA::ROTATE_90, FA::ROTATE_180, FA::ROTATE_270)
  • $Icon->flip($value) - add to html tag css class with rotate
    • $value - flip value (variants: FA::FLIP_HORIZONTAL, FA::FLIP_VERTICAL)

Class component\Stack ($Stack)

  • (string)$Stack - render icon stack
  • $Stack->render() - DEPRECATED! render icon stack
  • $Stack->tag($value) - DEPRECATED! set another html tag for icon stack (default span)
  • $Stack->icon($icon, $options=[]) - set icon for stack
    • $icon - name of icon or component\Icon object
    • $options - additional attributes for icon html tag.
  • $Stack->icon($icon, $options=[]) - set background icon for stack
    • $icon - name of icon or component\Icon object
    • $options - additional attributes for icon html tag.

Helper examples

use rmrevin\yii\fontawesome\FA;

// normal use
echo FA::icon('home'); // <i class="fa fa-home"></i>

// shortcut
echo FA::i('home'); // <i class="fa fa-home"></i>

// icon with additional attributes
echo FA::icon(
    'arrow-left', 
    ['class' => 'big', 'data-role' => 'arrow']
); // <i class="big fa fa-arrow-left" data-role="arrow"></i>

// icon in button
echo Html::submitButton(
    Yii::t('app', '{icon} Save', ['icon' => FA::icon('check')])
); // <button type="submit"><i class="fa fa-check"></i> Save</button>

// icon with additional methods
echo FA::icon('cog')->inverse();    // <i class="fa fa-cog fa-inverse"></i>
echo FA::icon('cog')->spin();       // <i class="fa fa-cog fa-spin"></i>
echo FA::icon('cog')->fixedWidth(); // <i class="fa fa-cog fa-fw"></i>
echo FA::icon('cog')->li();         // <i class="fa fa-cog fa-li"></i>
echo FA::icon('cog')->border();     // <i class="fa fa-cog fa-border"></i>
echo FA::icon('cog')->pullLeft();   // <i class="fa fa-cog pull-left"></i>
echo FA::icon('cog')->pullRight();  // <i class="fa fa-cog pull-right"></i>

// icon size
echo FA::icon('cog')->size(FA::SIZE_3X);
// values: FA::SIZE_LARGE, FA::SIZE_2X, FA::SIZE_3X, FA::SIZE_4X, FA::SIZE_5X
// <i class="fa fa-cog fa-size-3x"></i>

// icon rotate
echo FA::icon('cog')->rotate(FA::ROTATE_90); 
// values: FA::ROTATE_90, FA::ROTATE_180, FA::ROTATE_180
// <i class="fa fa-cog fa-rotate-90"></i>

// icon flip
echo FA::icon('cog')->flip(FA::FLIP_VERTICAL); 
// values: FA::FLIP_HORIZONTAL, FA::FLIP_VERTICAL
// <i class="fa fa-cog fa-flip-vertical"></i>

// icon with multiple methods
echo FA::icon('cog')
        ->spin()
        ->fixedWidth()
        ->pullLeft()
        ->size(FA::SIZE_LARGE);
// <i class="fa fa-cog fa-spin fa-fw pull-left fa-size-lg"></i>

// icons stack
echo FA::stack()
        ->icon('twitter')
        ->on('square-o');
// <span class="fa-stack">
//   <i class="fa fa-square-o fa-stack-2x"></i>
//   <i class="fa fa-twitter fa-stack-1x"></i>
// </span>

// icons stack with additional attributes
echo FA::stack(['data-role' => 'stacked-icon'])
     ->on(FA::Icon('square')->inverse())
     ->icon(FA::Icon('cog')->spin());
// <span class="fa-stack" data-role="stacked-icon">
//   <i class="fa fa-square-o fa-inverse fa-stack-2x"></i>
//   <i class="fa fa-cog fa-spin fa-stack-1x"></i>
// </span>

// unordered list icons 
echo FA::ul(['data-role' => 'unordered-list'])
     ->item('Bullet item', ['icon' => 'circle'])
     ->item('Checked item', ['icon' => 'check']);
// 

<

ul class="fa-ul" data-role="unordered-list">
//   <li><i class="fa fa-circle fa-li"></i>Bullet item</li>
//   <li><i class="fa fa-check fa-li"></i>Checked Item</li>
// </span>

// autocomplete icons name in IDE
echo FA::icon(FA::_COG);
echo FA::icon(FA::_DESKTOP);
echo FA::stack()
     ->on(FA::_CIRCLE_O)
     ->icon(FA::_TWITTER);

Set another prefix

FA::$cssPrefix = 'awf';

echo FA::icon('home');
// <i class="awf awf-home"></i>
echo FA::icon('cog')->inverse();
// <i class="awf awf-cog awf-inverse"></i>

The Versions

11/01 2017

dev-master

9999999-dev

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

11/01 2017

2.17.1

2.17.1.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

25/10 2016

2.17.0

2.17.0.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

31/08 2016

2.16.1

2.16.1.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

31/08 2016

2.16.0

2.16.0.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

19/08 2016

2.15.2

2.15.2.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

28/05 2016

2.15.1

2.15.1.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

22/05 2016

2.15.0

2.15.0.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

21/04 2016

2.14.0

2.14.0.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

26/11 2015

2.13.0

2.13.0.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

20/11 2015

2.12.2

2.12.2.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

20/11 2015

dev-preview

dev-preview

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

09/11 2015

2.12.1

2.12.1.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

15/08 2015

2.12.0

2.12.0.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

29/06 2015

2.11.0

2.11.0.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

23/06 2015

2.10.3

2.10.3.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

19/06 2015

2.10.2

2.10.2.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

09/05 2015

2.10.1

2.10.1.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

09/05 2015

2.10.0

2.10.0.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

28/04 2015

2.9.2

2.9.2.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

08/04 2015

2.9.1

2.9.1.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

31/03 2015

2.9.0

2.9.0.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

17/03 2015

2.8.2

2.8.2.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

16/03 2015

2.8.1

2.8.1.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

16/03 2015

2.8.0

2.8.0.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

08/02 2015

2.7.1

2.7.1.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

26/01 2015

2.7.0

2.7.0.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

10/12 2014

2.6.2

2.6.2.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

10/12 2014

2.6.1

2.6.1.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

04/12 2014

2.6.0

2.6.0.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

19/10 2014

2.5.0

2.5.0.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

12/09 2014

2.4.2

2.4.2.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

12/09 2014

2.4.1

2.4.1.0

Asset Bundle for Yii2 with Font Awesome

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

12/09 2014

2.4.0

2.4.0.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

MIT

The Requires

 

bundle yii asset font awesome

01/09 2014

2.3.0

2.3.0.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL-3.0

The Requires

 

bundle yii asset font awesome

05/08 2014

2.2.1

2.2.1.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL-3.0

The Requires

 

bundle yii asset font awesome

05/08 2014

2.2.0

2.2.0.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL-3.0

The Requires

 

bundle yii asset font awesome

05/08 2014

2.1.1

2.1.1.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL-3.0

The Requires

 

bundle yii asset font awesome

05/08 2014

2.1.0

2.1.0.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL-3.0

The Requires

 

bundle yii asset font awesome

05/06 2014

2.0.2

2.0.2.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL-3.0

The Requires

 

bundle yii asset font awesome

05/06 2014

2.0.1

2.0.1.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL v3

The Requires

 

bundle yii asset font awesome

05/06 2014

2.0.0

2.0.0.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL v3

The Requires

 

bundle yii asset font awesome

05/06 2014

1.2.1

1.2.1.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL v3

The Requires

 

bundle yii asset font awesome

05/06 2014

1.2.0

1.2.0.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL v3

The Requires

 

bundle yii asset font awesome

16/05 2014

1.1.2

1.1.2.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL v3

The Requires

 

bundle yii asset font awesome

11/05 2014

1.1.1

1.1.1.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL v3

The Requires

 

bundle yii asset font awesome

24/03 2014

1.1.0

1.1.0.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL v3

The Requires

 

bundle yii asset font awesome

27/02 2014

1.0.3

1.0.3.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL v3

The Requires

 

bundle yii asset font awesome

27/02 2014

1.0.2

1.0.2.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL v3

The Requires

 

bundle yii asset font awesome

27/02 2014

1.0.1

1.0.1.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL v3

The Requires

 

bundle yii asset font awesome

27/02 2014

1.0.0

1.0.0.0

Font Awesome Asset Bundle for Yii2

  Sources   Download

GPL v3

The Requires

 

bundle yii asset font awesome