yii2-module/yii2-coursgratuit-com

A generic library that searches cours-gratuit.com for content


Keywords
php, module, yii2, cours, gratuit
License
MIT

Documentation

yii2-module/yii2-coursgratuit-com

A generic library that searches cours-gratuit.com for content

Installation

The installation of this library is made via composer. Download composer.phar from their website. Then add to your composer.json :

	"require": {
		...
		"yii2-module/yii2-coursgratuit-com": "^2",
		...
	}

Then run php composer.phar update to install this library. The autoloading of all classes of this library is made through composer's autoloader.

Configuration

This module needs the following components to be set at the configuration level:

  • 'db_coursgratuit_com' should be a \yii\db\Connection

If you already have a database connection, you may use the following trick :

'db_coursgratuit_com' => function() { return \Yii::$app->get('db'); },

where 'db' is the id of your database connection.

This module needs the following parameters to be set at the configuration level:

  • 'coursgratuit-com-assets-path' should be a valid directory path

Then the module should be configured as follows :

$config = [
	...
	'modules' => [
		...
		'coursgratuit' => [
			'class' => 'Yii2Module\Yii2CoursgratuitCom\CoursgratuitComModule',
		],
		...
	],
	...
];

License

MIT (See license file)