Skip to content
This repository has been archived by the owner on Mar 1, 2020. It is now read-only.

Latest commit

 

History

History
42 lines (33 loc) · 587 Bytes

install.md

File metadata and controls

42 lines (33 loc) · 587 Bytes

Установка

Устанавливаем зависимость:

composer require yii2module/yii2-cleaner

Создаем полномочие:

oCleanerManage

Объявляем console модуль:

return [
	'modules' => [
		// ...
		'cleaner' => 'yii2module\cleaner\console\Module',
		// ...
	],
];

Объявляем backend модуль:

return [
	'modules' => [
		// ...
		'cleaner' => [
			'class' => 'yii2module\cleaner\admin\Module',
			'as access' => Config::genAccess(PermissionEnum::CLEANER_MANAGE),
		],
		// ...
	],
];