Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iqual-ch/tasks-bundle
https://github.com/iqual-ch/tasks-bundle
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/iqual-ch/tasks-bundle
- Owner: iqual-ch
- Created: 2017-12-08T13:13:09.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-01T11:45:10.000Z (6 months ago)
- Last Synced: 2024-08-01T14:58:24.745Z (5 months ago)
- Language: PHP
- Size: 41 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TasksBundle
Provides generic layer for task management# Installation
```bash
composer require mpom/tasks-bundle
```Add to your AppKernel.php:
```php
public function registerBundles()
{
$bundles = array(
// ...
new TasksBundle\TasksBundle,
// ...
)
}
```# Configuration
In your config.yml file add new options:
```yml
tasks:
layout: AppBundle:Admin:Layout/custom.html.twig # optional, layout file
entity_class: # your entity class
template_list: # custom template for task list
template_edit: # custom template for task edit
```Add to app/config/routing.yml:
```yml
tasks:
resource: "@TasksBundle/Resources/config/routing.yml"
prefix: /
```Import database structure:
```bash
console doctrine:schema:update --force
```Dump assets:
```bash
console assets:install --symlink
```# Usage
Navigate to //tasks page.```