Software developer, PHP Freelancer - Kimai lead since 2007
A Kimai plugin, which allows you to plan your work and distribute tasks among your users and teams. It features two new dashboard widgets and a new “Task management” administration view.
Add “tasks” which are used to start and group timesheet records.
Each task has the following fields:
Ships a new report, which lists all users with the number of assigned tasks and the progress (via estimation or duration).
This bundle ships two new dashboard widgets (see screenshots).
You can configure the permissions in multiple ways:
A task can reach the “overdue” status, which means:
Task can also be managed via the API. Documentation can be found in the plugins demo - credentials here.
This bundle ships two new dashboard widgets (see screenshots).
Displays all tasks which:
This widget has the following UI elements (if permissions are set for the user):
overdue
, otherwise green)Displays all tasks which:
This widget has the following UI elements (if permissions are set for the user):
overdue
, otherwise green)This bundle introduces new permissions, which limit access to certain functions:
Permission | Description |
---|---|
task_edit_own |
Create and edit tasks that are assigned to the currently logged-in user. |
task_edit_other |
Allows to edit all tasks that are visible to the user. Create new unassigned tasks, assign team and user. Remove assignment and close tasks which are assigned to another user (stops running records). |
task_assign |
Self-assign a pending task by the currently logged-in user. Required to see the “Pending tasks” widget on the dashboard. |
task_start |
Start a task. Only possible if task is assigned to the current user. Required to see the “My tasks” widget on the dashboard. |
task_close |
Close a task. Possible if task is assigned to the current user or the user owns the task_edit_other permission. The task will be removed from the “My tasks” widget after it is reloaded (until then it can be reopened). |
task_delete |
Delete any existing task. |
task_view |
Gives access to the task administration and task reports |
A pre-configured permission set for all default user roles is applied by the plugin, please adjust them to your needs.
The following restrictions are in place for accessing other user’s data:
view_other_timesheet
task_view
permission but NOT view_other_timesheet
will only see own/assigned tasksview_all_data
) is limited by team assignmentsA pre-configured permission set for all default user roles is applied by the plugin. Please adjust them to your needs in “User > Role & permissions” administration.
You can buy this item from the developer with a regular EU-invoice or via Gumroad (platform for selling digital goods). Please create a Gumroad account during your purchase to receive software updates. Read more about the license and purchase options.
There is a Github repository, where you get support and can post bug reports, feature requests or start a discussion.
下表包含插件与所需的最低 Kimai 版本之间的比较。
Bundle 版本 | 最低 Kimai 版本 |
---|---|
1.10 - 1.13.1 | 1.15 |
1.9 | 1.14 |
1.7 - 1.8 | 1.11 |
1.4 - 1.6 | 1.10 |
1.3 | 1.9 |
1.0 - 1.2 | 1.7 |
Extract the ZIP file and upload the included directory and all files to your Kimai installation to the new directory:
var/plugins/TaskManagementBundle/
The file structure needs to look like this afterwards:
var/plugins/
├── TaskManagementBundle
│ ├── TaskManagementBundle.php
| └ ... more files and directories follow here ...
After uploading the files, Kimai needs to know about the new plugin. It will be found once the cache was re-built. Call these commands from the Kimai directory:
bin/console kimai:reload --env=prod
It is not advised, but in case the above command fails you could try:
rm -r var/cache/prod/*
You might have to set file permissions afterwards:
You have to allow PHP (your webserver process) to write to
var/
and it subdirectories.
Here is an example for Debian/Ubuntu (to be executed inside the Kimai directory):
chown -R :www-data .
chmod -R g+r .
chmod -R g+rw var/
Test Kimai before executing these commands (they are likely not required in a shared-hosting environment).
You probably need to prefix them with sudo
and
the group might be called different than www-data
.
Run the following command:
bin/console kimai:bundle:tasks:install
This will create the required database tables and update them to the latest version.
There are no commands defined in the "kimai:bundle:XYZ" namespace.
,
then either the directory has a wrong name (must be var/plugins/TaskManagementBundle/) or you forgot to clear the cache (look above).
Updating the plugin works exactly like the installation:
var/plugins/TaskManagementBundle/
bin/console kimai:bundle:tasks:install