定制 vladkukushkin/yii2-faq 二次开发

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

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

vladkukushkin/yii2-faq

Composer 安装命令:

composer require vladkukushkin/yii2-faq

包简介

Yii2 FAQ module

README 文档

README

FAQ module for Yii2

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist vladkukushkin/yii2-faq "*"

or add

"vladkukushkin/yii2-faq": "*"

to the require section of your composer.json file.

Make migration

php yii migrate --migrationPath=@vendor/vladkukushkin/yii2-faq/migrations/

Usage

You should add module to your config:

'modules' => [
        ...
        'faq' => [
                    'class' => \vladkukushkin\faq\Module::className(),
                    'imagesUrl' => 'http://my_site_name/upload/faq/',
                    'imagesPath' => '@frontend/web/upload/faq/',//realpath(__DIR__.'/../../frontend/web/upload/faq/')
                ],
    ],

You should use 'imagesUrl' and 'imagesPath' to define folder to store your images for FAQ. This variables should define same directory. In above example images will be saved in '@frontend/web/upload/faq' directory. You should define both variables because Imperavi widget used in this module and they needed to this widget.

If you use advanced project template you should configure both config.php with the same values

You can add link to this module in your backend navbar:

$menuItems[] = ['label' => 'FAQ', 'url' => ['/faq/default/index']];

To display FAQ just add:

echo \vladkukushkin\faq\widgets\FaqWidget\FaqWidget::widget();

Widget have two parameters - 'title' and 'breadcrumbs' with default value 'false', which means that no title and no breadcrumbs will be applied on page with widget. It is useful if you will place widget on existing page with other information. If you locate widget on separate page and want to specify title or breadcrumbs (or maybe both of them) you can call widget like this:

echo \vladkukushkin\faq\widgets\FaqWidget\FaqWidget::widget([
    'title' => Yii::t('app', 'FAQ'),
    'breadcrumbs' => Yii::t('app', 'FAQ page'),
]);

It is possible that you have to change minimum stability section of your composer.json file to dev

"minimum-stability": "dev",

Module support Russian and English languages. By default language for Imperavi widget is Russian ('ru'). You can change it to English by adding to module config

'imperaviLanguage' => 'en'

The module is under construction

统计信息

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

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 4
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2016-02-28