Archiwizacja wpisów czasowych
Wstawia nowe polecenie, za pomocą którego można archiwizować wpisy czasowe starsze niż w określonych ramach czasowych.
District09
A Kimai plugin, which allows you to archive timesheets older than a specified timeframe, using a command.
Note that archiving in this case means removing them from the database permanently. You will not be able to restore them.
Configuration
After installing the plugin, the kimai:archive:timesheets
command will be
available for you to use.
Description:
Archive (remove) timesheets older than the given preserve period.
Usage:
kimai:archive:timesheets [options]
Options:
-p, --preserve-period[=PRESERVE-PERIOD] The period for which to preserve the timesheets, in the PHP DateInterval format
(http://php.net/manual/en/dateinterval.construct.php#refsect1-dateinterval.construct-parameters). Defaults to 1 year. [default: "P1Y"]
-h, --help Display this help message
-q, --quiet Do not output any message
-V, --version Display this application version
--ansi Force ANSI output
--no-ansi Disable ANSI output
-n, --no-interaction Do not ask any interactive question
-e, --env=ENV The Environment name. [default: "prod"]
--no-debug Switches off debug mode.
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
Instalacja
Skopiuj pliki
Extract the ZIP file and upload the included directory and all files to your Kimai installation to the new directory:
Or you can clone it directly to the var/plugins/
directory of your Kimai installation:
The file structure needs to look like this afterwards:
Wyczyść pamięć podręczną
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:
How to reload Kimai cache
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:
Adjust file permission
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/
You might not need these commands in a shared-hosting environment.
And you probably need to prefix them with sudo
and/or the group might be called different from www-data
.
Aktualizacje
Updating the plugin works exactly like the installation:
- Delete the directory
var/plugins/ArchiveTimesheetsCommandBundle/
-
Execute all installation steps again:
- Skopiuj pliki
- Wyczyść pamięć podręczną