ignatenkovnikita / yii2-yandexsprav
Yii2 Yandex Export Product
Package info
github.com/ignatenkovnikita/Yii2-Yandex-Sprav
Type:yii2-extension
pkg:composer/ignatenkovnikita/yii2-yandexsprav
dev-master
2020-10-15 14:07 UTC
Requires
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2026-02-16 01:17:16 UTC
README
Yii2 Yandex Export Product
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist ignatenkovnikita/yii2-yandexsprav "*"
or add
"ignatenkovnikita/yii2-yandexsprav": "*"
to the require section of your composer.json file.
Usage
Add Action eexample:
public function actions() { return [ 'generate' => [ 'class' => GenerateAction::className(), 'fileName' => 'xls-yandex-sprav.xlsx', # желаемое название файла 'publicPath' => '@frontend/web', # публичная директория (обычно корень веб сервера) 'runtimePath' => '@runtime', # временная директория 'query' => Product::find()->showOnSite(), ], ]; }```