Download the PHP package rasteiner/k3-awesome-picker without Composer
On this page you can find all versions of the php package rasteiner/k3-awesome-picker. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download rasteiner/k3-awesome-picker
More information about rasteiner/k3-awesome-picker
Files in rasteiner/k3-awesome-picker
Package k3-awesome-picker
Short Description Kirby 3 panel field that lets you choose a (free) icon from Font Awesome
License MIT
Informations about the package k3-awesome-picker
Show and pick a free Font Awesome icon.
Install
Download Zip file
Copy plugin folder into site/plugins
Composer
Run composer require rasteiner/k3-awesome-picker
.
Usage
Add an icon
field to your blueprint. You can also choose to filter the available icons by declaring the wanted styles: brands
(Logos), solid
(filled icons), regular
(outlined icons)
In your template you will get the class names for the chosen icon.
Example
Blueprint:
Template:
Config options
Under the rasteiner.awesome-picker
namespace, you'll have access to the following options:
option | default | description |
---|---|---|
'css-url' |
'https://kit-free.fontawesome.com/releases/latest/css/free.min.css' |
Used in the panel, the URL to the font awesome CSS |
'meta-source' |
'github' |
File path, or function returning the file path, to the "icons.yml" file containing all metadata of the icons. The default setting of 'github' downloads the metadata from github on first usage, then it stores the file on the server |
'sprites-folder' |
false |
Useful when using the SVG setup (see below). Path, or function returning the path, to the sprites folder |
'default-styles' |
["solid", "regular", "brands", "light", "duotone"] |
Array or string for which styles should be available when the styles setting in your blueprint isn't used |
'loaded-styles' |
["solid", "regular", "brands", "light", "duotone"] |
Array or string for which styles should ever be available for use |
SVG setup
If you prefer having your icons embedded in your page and use them via SVG links, this plugin offers you a way to manage this, but you need to prepare it for the use case.
- Download your icons
Font Awesome gives you the option to download their icons. Download the "web" version from here: https://fontawesome.com/download. Unzip the file and upload it to your server. -
Configure the plugin
The plugin needs to know 3 things:- The URL to the CSS file with all classes you intend to use (this is used only for the panel, you'll find them in the css folder you downloaded)
- The file path to the metadata of your icons (you'll find this in the "metadata" folder, look for an "icons.yml" file)
- The file path to the folder containing the sprite sheets (this is the "sprites" folder)
Here's an example config:
You can assign all those config options either a string, or a function that returns a string.
-
Adapt the templates
Linked svg icons need 2 steps to work:- Use the icons, via the
<use xlink:href="#icon-id">
tag - Embed all used icons in the page, via many
<symbol id="icon-id">
tags
This plugin offers you some functions to help you do this, it tracks which icons have been used, and then injects all used items as symbols. To do this, you'll use the following methods:
- the
$field->toIcon()
field method. This gives you an "Icon" object - the
$icon->use($attrs)
method of the Icon object, this gives you an svg element containing a corresponding<use>
tag. This method optionally lets you specify the attributes given to the<svg>
tag. - the
$site->iconSymbols()
method which generates an svg element containing all previously used icons as<symbol>
elements.
Here's a short example template:
This will output something like this:
Notice: you need to call
$site->iconSymbols()
after all$icon->use()
calls. So either put the symbols at the end of the page, or output buffer your page. - Use the icons, via the