usesgraphcrt/yii2-faq

Yii2 FAQ module

Installs: 202

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 3

Forks: 4

Type:yii2-extension

dev-master 2017-03-15 12:34 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:13:48 UTC


README

FAQ module for Yii2

Installation

The preferred way to install this extension is through composer.

Either run

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

or add

"usesgraphcrt/yii2-faq": "*"

to the require section of your composer.json file.

Make migration

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

Usage

You should add module to your config:

'modules' => [
        ...
        'faq' => [
                    'class' => \usesgraphcrt\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/main/view']];

To display FAQ just add:

echo \usesgraphcrt\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 \usesgraphcrt\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