定制 yassinedoghri/codeigniter-iconify 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

yassinedoghri/codeigniter-iconify

最新稳定版本:v1.0.1

Composer 安装命令:

composer require yassinedoghri/codeigniter-iconify

包简介

A CodeIgniter4 library with convenient helper functions to render svg icons using yassinedoghri/php-icons.

README 文档

README

CodeIgniter Icons 🔥 🙂

A CodeIgniter4 library with convenient helper functions to render svg icons using php-icons.

Latest Stable Version Total Downloads License PHP Version Require

🚀 Getting started

0. Prerequisites

Usage of CodeIgniter Icons requires the following:

  • A CodeIgniter 4.3.5+ based project
  • Composer for package management
  • PHP 8.1+

1. Install via composer

composer require yassinedoghri/codeigniter-icons

2. Setup

  1. init and configure PHPIcons, ie. create the PHPIcons config file.

  2. add icons helper to your app/Config/Autoload.php file:

public $helpers = [/*...other helpers...*/, 'icons'];

3. Usage

Use the icon(string $iconKey, array $attributes) helper function in your View files to render svg icons:

<?= icon('material-symbols:bolt') ?>
// <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24">
//      <path fill="currentColor" d="m8 22l1-7H4l9-13h2l-1 8h6L10 22z"/>
// </svg>

<?= icon('material-symbols:bolt', ['class' => 'text-2xl', "style" => "color: yellow;"]) ?>
// <svg class="text-2xl" style="color: yellow;" [...]>...</svg>

<?= icon('material-symbols:bolt')
        ->attr('class', 'text-2xl')
        ->attr('style', 'color: yellow;') ?>
// <svg class="text-2xl" style="color: yellow;" [...]>...</svg>

For more usage info, see php icons docs.

⚙️ Configuration

Checkout PHPIcons config reference to tweak things as you please.

// new file - app/Config/Icons.php
<?php

declare(strict_types=1);

namespace Config;

// ...
use CodeIgniterIcons\Config\Icons as CodeIgniterIcons;

class Icons extends CodeIgniterIcons
{
    public string $phpIconsConfigPath = ROOTPATH . 'php-icons.php';
}

📜 License

Code released under the MIT License.

Copyright (c) 2024-present, Yassine Doghri (@yassinedoghri).

统计信息

  • 总下载量: 9
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-03-27