Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 22 days 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-06-25T08:01:14.000Z (over 1 year ago)
- Last Synced: 2024-10-31T23:34:31.875Z (about 2 months 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
[![Yii2](https://img.shields.io/badge/required-Yii2_v2.0.35-blue.svg)](https://packagist.org/packages/yiisoft/yii2)
[![Downloads](https://img.shields.io/packagist/dt/wdmg/yii2-tasks.svg)](https://packagist.org/packages/wdmg/yii2-tasks)
[![Packagist Version](https://img.shields.io/packagist/v/wdmg/yii2-tasks.svg)](https://packagist.org/packages/wdmg/yii2-tasks)
![Progress](https://img.shields.io/badge/progress-ready_to_use-green.svg)
[![GitHub license](https://img.shields.io/github/license/wdmg/yii2-tasks.svg)](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