https://github.com/wdmg/yii2-tasks
Task manager for Yii2
https://github.com/wdmg/yii2-tasks
tasks-manager wdmg yii-extension yii2 yii2-tasks
Last synced: about 1 year ago
JSON representation
Task manager for Yii2
- Host: GitHub
- URL: https://github.com/wdmg/yii2-tasks
- Owner: wdmg
- License: mit
- Created: 2019-01-02T18:22:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-06-25T08:01:14.000Z (almost 3 years ago)
- Last Synced: 2024-10-31T23:34:31.875Z (over 1 year ago)
- Topics: tasks-manager, wdmg, yii-extension, yii2, yii2-tasks
- Language: PHP
- Size: 862 KB
- Stars: 3
- Watchers: 5
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://packagist.org/packages/yiisoft/yii2)
[](https://packagist.org/packages/wdmg/yii2-tasks)
[](https://packagist.org/packages/wdmg/yii2-tasks)

[](https://github.com/wdmg/yii2-tasks/blob/master/LICENSE)

# Yii2 Tasks Module
Task manager for Yii2.
This module is an integral part of the [Butterfly.СMS](https://butterflycms.com/) content management system, but can also be used as an standalone extension.
Copyrights (c) 2019-2023 [W.D.M.Group, Ukraine](https://wdmg.com.ua/)
# Requirements
* PHP 5.6 or higher
* Yii2 v.2.0.35 and newest
* [Yii2 Base](https://github.com/wdmg/yii2-base) module (required)
* [Yii2 Tickets](https://github.com/wdmg/yii2-tickets) module (optionaly)
* [Yii2 Users](https://github.com/wdmg/yii2-users) module (optionaly)
* [Yii2 Editor](https://github.com/wdmg/yii2-editor) widget
# Installation
To install the module, run the following command in the console:
`$ composer require "wdmg/yii2-tasks"`
After configure db connection, run the following command in the console:
`$ php yii tasks/init`
And select the operation you want to perform:
1) Apply all module migrations
2) Revert all module migrations
# Migrations
In any case, you can execute the migration and create the initial data, run the following command in the console:
`$ php yii migrate --migrationPath=@vendor/wdmg/yii2-tasks/migrations`
# Configure
To add a module to the project, add the following data in your configuration file:
'modules' => [
...
'tasks' => [
'class' => 'wdmg\tasks\Module',
'routePrefix' => 'admin'
],
...
],
# Routing
Use the `Module::dashboardNavItems()` method of the module to generate a navigation items list for NavBar, like this:
['class' => 'navbar-nav navbar-right'],
'label' => 'Modules',
'items' => [
Yii::$app->getModule('tasks')->dashboardNavItems(),
...
]
]);
?>
# Status and version [ready to use]
* v.1.2.0 - Update copyrights, add counter for dashboard
* v.1.1.9 - Update dependencies, README.md
* v.1.1.8 - Added pagination, up to date dependencies