PHP code example of silverware / font-icons
1. Go to this page and download the library: Download silverware/font-icons library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
silverware / font-icons example snippets
use SilverStripe\ORM\DataObject;
class MyObject extends DataObject
{
private static $db = [
'Icon' => 'FontIcon'
];
}
use SilverStripe\ORM\DataObject;
use SilverWare\FontIcons\ORM\FieldType\DBFontIcon;
class MyObject extends DataObject
{
private static $db = [
'Icon' => DBFontIcon::class
];
}
FontIconField::create('Icon', $this->fieldLabel('Icon'));
use SilverWare\FontIcons\Forms\FontIconField;