nikitakls/yii2-faq-module

Yii2 FAQ 扩展

安装: 31

依赖: 0

建议者: 0

安全性: 0

星标: 1

关注者: 1

分支: 0

公开问题: 0

类型:yii2-extension

v0.1 2018-02-02 18:28 UTC

This package is not auto-updated.

Last update: 2024-09-29 04:43:12 UTC


README

Yii2 FAQ 扩展

安装

此模块处于开发中,请在生产中使用时自行承担风险

安装此扩展的首选方式是通过 Composer

composer require nikitakls/yii2-faq-module

使用方法

扩展安装完成后,只需在代码中使用即可

  • 应用迁移
yii migrate -p=@nikitakls/faq/migrations
  • 配置模块

在配置文件中添加模块:对于前端

'modules'   => [
    'faq'   => 'nikitakls\faq\Faq',
],

对于后端

'modules'   => [
        'faq' => [
            'class' => \nikitakls\faq\Faq::class,
            'isBackend' => true,
        ],
],
  • 使用 Faq 模块

您可以在页面中添加提示小部件

    <?= \nikitakls\faq\widgets\Aid::widget([
            'code' => 'hint-unique-code',
    ]) ?>