yii2-extended/yii2-export-policy-onefile

An implementation of the yii2 export policy interface that creates only one file for each model

7.0.2 2024-04-08 18:36 UTC

README

An implementation of the yii2 export policy interface that creates only one file for each model.

coverage build status

Installation

The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.

  • Download composer.phar from their website.
  • Then run the following command to install this library as dependency :
  • php composer.phar yii2-extended/yii2-export-policy-onefile ^7

Basic Usage

This library may be used the following way :


use Yii2Extended\Yii2Export;

$policy = new Yii2ExportPolicyOnefile($folderPath, Record::find());

foreach($policy as $activeQuery)
{
	/* @var $activeQuery \yii\db\ActiveQuery[Record] */
	file_put_contents($policy->getCurrentFilePath().'.txt', var_export($activeQuery->all(), true));
}

License

MIT (See license file).